From 1551fe56fd6ba43a94509cffc61b6bf854b7ac9f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 1 Jun 2024 00:07:06 +0100 Subject: gentoo auto-resync : 01:06:2024 - 00:07:06 --- dev-ml/camlp5/Manifest | 2 +- dev-ml/camlp5/camlp5-8.02.00-r1.ebuild | 66 ++++++++++++++++++++++++++++++++++ dev-ml/camlp5/camlp5-8.02.00.ebuild | 60 ------------------------------- 3 files changed, 67 insertions(+), 61 deletions(-) create mode 100644 dev-ml/camlp5/camlp5-8.02.00-r1.ebuild delete mode 100644 dev-ml/camlp5/camlp5-8.02.00.ebuild (limited to 'dev-ml/camlp5') diff --git a/dev-ml/camlp5/Manifest b/dev-ml/camlp5/Manifest index f5239af00f14..de6fe6db8296 100644 --- a/dev-ml/camlp5/Manifest +++ b/dev-ml/camlp5/Manifest @@ -20,5 +20,5 @@ EBUILD camlp5-8.00.03.ebuild 1032 BLAKE2B 1bd1b75aaef3c011d8e849207957fa79f9b908 EBUILD camlp5-8.00.04.ebuild 1027 BLAKE2B 2f87e4c473412a2a29db37eef23185e37fc9bc6cb3938c2362efd3fda5bfdca8e5b6daa77842cffe62136537c1fc854f18aa3b11af026bbf9b7905200b1b61aa SHA512 d848ddcfdde33335f8b089152d4d2ce23f24e6900dc608c08bcb1556682691fe708db2d864687375f3786c6c805566e1f007b2db555e43686fd168d6eb7eadd2 EBUILD camlp5-8.00.05-r1.ebuild 1063 BLAKE2B b1f522d4899b5611d2ae4fba201ffb7287c9d5cb43b9c30fe433ccde7eea9ba264382509cb5b0ccf88b6e63ac226f3b7a6c4b346a05664e8151e93e156758e6e SHA512 20ce339fc13a53a0f99a6b25a252abc8cee6a2b79a94bdf42aecb0186a269875aab7fc083434578cd8209f393ca54a09481be2b1a1e2a96f2f336b21b6ca0141 EBUILD camlp5-8.00.ebuild 1065 BLAKE2B b89352f90f3a868c7cbd615815c160c1b01fe6b2c3a0b224ee10d72f777006376f5ab1010d72244df84b7f5633c1bbf86af8a918497b3d3e103388d0f0e34932 SHA512 8404c5d01f7f0d291de0a49952999cbef1043496da88777ad6efb9dcf6e2a39fe10f863e0d5f60a9ed704f7b7206b11982427ee8a8e177db2ab6b97ccf79e098 -EBUILD camlp5-8.02.00.ebuild 1064 BLAKE2B 753dad9f16f36cf0f928539142a47035c0986ebafbd4ac11e194b94fa5c6fb4069915d82b904f21cda5ef78bc3131507f18e147fa3b1ef664907952f660145a1 SHA512 d0262fe58d38b45ac4f6a89d0f374a40d35af80eda90fdd0be185a5f9b66c5ee409871295a24d44eb92ee85c0d221dc6804b0d2d61a44e03f67937316f883c6c +EBUILD camlp5-8.02.00-r1.ebuild 1160 BLAKE2B 1fe12bc08f6a43123e46b977f8ac3b5c2812f91904261cac4ca0af27838f69cff3fb032a5269e6cdd53ddf0dafa745ab9a536b28aa4be177cbf3e30176854df2 SHA512 4a365c6c7bc30dbe9faa981c96cc81cfd603020cc1f04fe860bbc3608446aef6bb5ca4374e0ef1e32bcdc3d65f1f60f394fcce08590ea466264842f9e74598a9 MISC metadata.xml 311 BLAKE2B ef93d263a9d778f941d96dca1ece274461848e686ff734be2bfd263d40e4c4601bfdedd43ede207c877e7e53f83d33bc9731548208d967cf53b273060e07c23c SHA512 c0696f3af354837edfa9716842763347f3c30340e6e517f806d6f2ad9d1160b748e26864d520bea467977a8285847fd52999aabf1aa741fdb2e122b18635d38d diff --git a/dev-ml/camlp5/camlp5-8.02.00-r1.ebuild b/dev-ml/camlp5/camlp5-8.02.00-r1.ebuild new file mode 100644 index 000000000000..e984b76b319f --- /dev/null +++ b/dev-ml/camlp5/camlp5-8.02.00-r1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit findlib vcs-clean + +DESCRIPTION="A preprocessor-pretty-printer of ocaml" +HOMEPAGE="https://camlp5.github.io/" +SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="doc +ocamlopt" + +RDEPEND=" + dev-ml/astring:= + dev-ml/bos:= + dev-ml/camlp-streams:= + dev-ml/fmt:= + dev-ml/fpath:= + dev-ml/logs:= + dev-ml/pcre-ocaml:= + dev-ml/re:= + dev-ml/rresult:= +" +DEPEND="${RDEPEND}" + +src_prepare() { + egit_clean + default +} + +src_configure() { + ./configure \ + --strict \ + -prefix /usr \ + -bindir /usr/bin \ + -libdir /usr/$(get_libdir)/ocaml \ + -mandir /usr/share/man || die "configure failed" +} + +src_compile() { + ulimit -s 11530000 + emake out + if use ocamlopt; then + emake opt + emake opt.opt + fi +} + +src_test() { + emake bootstrap +} + +src_install() { + emake DESTDIR="${ED}" install + # findlib support + insinto "$(ocamlfind printconf destdir)/${PN}" + doins etc/META + + dodoc -r doc/* + dodoc CHANGES DEVEL ICHANGES README.md UPGRADING MODE +} diff --git a/dev-ml/camlp5/camlp5-8.02.00.ebuild b/dev-ml/camlp5/camlp5-8.02.00.ebuild deleted file mode 100644 index 3338ff08f328..000000000000 --- a/dev-ml/camlp5/camlp5-8.02.00.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit findlib vcs-clean - -DESCRIPTION="A preprocessor-pretty-printer of ocaml" -HOMEPAGE="https://camlp5.github.io/" -SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/${PV}.tar.gz - -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -IUSE="doc +ocamlopt" - -RDEPEND=" - dev-ml/camlp-streams:= - dev-ml/rresult:= - dev-ml/bos:= - dev-ml/pcre-ocaml:= -" - -src_prepare() { - egit_clean - default -} - -src_configure() { - ./configure \ - --strict \ - -prefix /usr \ - -bindir /usr/bin \ - -libdir /usr/$(get_libdir)/ocaml \ - -mandir /usr/share/man || die "configure failed" -} - -src_compile() { - ulimit -s 11530000 - emake out - if use ocamlopt; then - emake opt - emake opt.opt - fi -} - -src_test() { - emake bootstrap -} - -src_install() { - emake DESTDIR="${ED}" install - # findlib support - insinto "$(ocamlfind printconf destdir)/${PN}" - doins etc/META - - dodoc -r doc/* - dodoc CHANGES DEVEL ICHANGES README.md UPGRADING MODE -} -- cgit v1.2.3