diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-12-17 09:47:53 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-12-17 09:50:20 -0500 |
commit | 59629358ce4bee5cfb5292428631c7e913316bf9 (patch) | |
tree | 59e73a0775b59a635af9fb52d91bd15fd90d1c12 /dev-ml | |
parent | dev-ml/findlib: drop old (diff) | |
download | gentoo-59629358ce4bee5cfb5292428631c7e913316bf9.tar.gz gentoo-59629358ce4bee5cfb5292428631c7e913316bf9.tar.bz2 gentoo-59629358ce4bee5cfb5292428631c7e913316bf9.zip |
dev-ml/extlib: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/extlib/Manifest | 2 | ||||
-rw-r--r-- | dev-ml/extlib/extlib-1.7.1.ebuild | 51 | ||||
-rw-r--r-- | dev-ml/extlib/extlib-1.7.6.ebuild | 50 |
3 files changed, 0 insertions, 103 deletions
diff --git a/dev-ml/extlib/Manifest b/dev-ml/extlib/Manifest index e1f5cb8efee6..cb2f6155c622 100644 --- a/dev-ml/extlib/Manifest +++ b/dev-ml/extlib/Manifest @@ -1,3 +1 @@ -DIST extlib-1.7.1.tar.gz 85397 BLAKE2B f2e924f651cc43ca29914c95400a26bfd062ecb4e7379d169533d394497215906b56e8f57ba29358965f0b8c125c33dcb9a0a95c09488404fd348261d075457f SHA512 42ea1be22a57ab31e5857df0c4c0f98a07e1b5958b34181cd5ab7c83ded112c208315d22cd3dd178d53e75ca109a70cb47ae479e95be8c47ea2087b1a158dc4d -DIST extlib-1.7.6.tar.gz 88068 BLAKE2B 32376c09728ec7e7d762888ad706641b94bcc976f2e1f42f246ba79fe862b60df7ff924e1e22e89333d8f2e1d999deb71eee481c3c5919aa5d1e02731f64f323 SHA512 3065e2474fb0e480ed076aa1156584a4a6c839cd5d9e59f341e41113abb1736241354aa7ee7cb492967698bc392969522fd5bf30d1ad7f94754c4e10f376afa8 DIST extlib-1.7.7.tar.gz 88870 BLAKE2B fff84524ef227718d3908c5b65f4b781360cebc0dca3a8862aa11ea671499b45192c5106769e104d396118e3cdcd904ddce06df784f8fd0eadb7a2372ca3df94 SHA512 088a6c5bbe6530cd60e2276dc02592b69ad7ad685b752f0544c54b6246b8131238c6423ce7bfc81fe3ad1766f605ecf52fd3888d55cca63e22c947afedf610c5 diff --git a/dev-ml/extlib/extlib-1.7.1.ebuild b/dev-ml/extlib/extlib-1.7.1.ebuild deleted file mode 100644 index 6cdb6da3e65f..000000000000 --- a/dev-ml/extlib/extlib-1.7.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit findlib eutils - -DESCRIPTION="Standard library extensions for O'Caml" -HOMEPAGE="https://github.com/ygrek/ocaml-extlib" -SRC_URI="https://github.com/ygrek/ocaml-extlib/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="LGPL-2.1" -DEPEND=" - >=dev-lang/ocaml-3.10.2:=[ocamlopt?] - dev-ml/cppo:= -" -RDEPEND="${DEPEND}" -SLOT="0/${PV}" -KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="doc +ocamlopt" -S="${WORKDIR}/ocaml-${P}" - -src_prepare() { - epatch "${FILESDIR}/ocaml405.patch" -} - -src_compile() { - cd src - emake -j1 all - if use ocamlopt; then - emake opt cmxs - fi - - if use doc; then - emake doc - fi -} - -src_test() { - emake -j1 test -} - -src_install() { - findlib_src_install - - # install documentation - dodoc README.md - - if use doc; then - dohtml src/doc/* - fi -} diff --git a/dev-ml/extlib/extlib-1.7.6.ebuild b/dev-ml/extlib/extlib-1.7.6.ebuild deleted file mode 100644 index f3159e67c8f3..000000000000 --- a/dev-ml/extlib/extlib-1.7.6.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit findlib - -DESCRIPTION="Standard library extensions for O'Caml" -HOMEPAGE="https://github.com/ygrek/ocaml-extlib" -SRC_URI="https://github.com/ygrek/ocaml-extlib/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="doc +ocamlopt" - -RDEPEND=" - >=dev-lang/ocaml-3.10.2:=[ocamlopt?] -" -DEPEND="${RDEPEND} - dev-ml/cppo" - -S="${WORKDIR}/ocaml-${P}" - -src_compile() { - cd src || die - emake -j1 all - if use ocamlopt; then - emake opt cmxs - fi - - if use doc; then - emake doc - fi -} - -src_test() { - emake -j1 test -} - -src_install() { - findlib_src_install - - # install documentation - dodoc README.md - - if use doc; then - dodoc -r src/doc/ - fi -} |