diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-01-14 17:25:05 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-01-14 17:26:07 +0100 |
commit | e73cdb8ec3060b24e3ae4a568659547e8050dc71 (patch) | |
tree | 027bca129ccaca71fc75a2945302675c20f8c871 /dev-ml/sedlex | |
parent | sci-electronics/oregano: Remove last-rited pkg (diff) | |
download | gentoo-e73cdb8ec3060b24e3ae4a568659547e8050dc71.tar.gz gentoo-e73cdb8ec3060b24e3ae4a568659547e8050dc71.tar.bz2 gentoo-e73cdb8ec3060b24e3ae4a568659547e8050dc71.zip |
dev-ml/*: Remove first set of unneeded leaf packages
Bug: https://bugs.gentoo.org/695782
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-ml/sedlex')
-rw-r--r-- | dev-ml/sedlex/Manifest | 2 | ||||
-rw-r--r-- | dev-ml/sedlex/metadata.xml | 8 | ||||
-rw-r--r-- | dev-ml/sedlex/sedlex-1.99.3.ebuild | 37 | ||||
-rw-r--r-- | dev-ml/sedlex/sedlex-1.99.4.ebuild | 42 |
4 files changed, 0 insertions, 89 deletions
diff --git a/dev-ml/sedlex/Manifest b/dev-ml/sedlex/Manifest deleted file mode 100644 index 44e56fd98c62..000000000000 --- a/dev-ml/sedlex/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST sedlex-1.99.3.tar.gz 58236 BLAKE2B 48ebc0f7bc090fa5d80404cc9135f4f52ac7b5c651b6df1e8f02506b235dba78d4bab9736cdb1c3865acf940c9af8eb00eebc3f6d399d3d7c4a897fd9e2eeaa4 SHA512 d0359a4c3f4d9efe51fa79405ae79f20ab64949838acbac475a9bcb7f42e0b972e66429eca2063fda6ae6af04475dbf29a331cf005f3338e7fc130afab477392 -DIST sedlex-1.99.4.tar.gz 59359 BLAKE2B d1b76304289111fe020a50dddf6fcf29d958f69d7d4841d62633a291e0ffb08a2ddc1bc5754ccb0dbc4ac0852cd0fe2bb3a0b53b579755e0d210bf18c520f796 SHA512 83bddb03e25b015bc71fb59e3b0e0e097e899c681c8033663c17936f28fde8599a82eaab9c26eafd645c401c106e65fcf173d9fb889eb8999eb1b064ff8b6149 diff --git a/dev-ml/sedlex/metadata.xml b/dev-ml/sedlex/metadata.xml deleted file mode 100644 index dbfb47947b0e..000000000000 --- a/dev-ml/sedlex/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="github">alainfrisch/sedlex</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-ml/sedlex/sedlex-1.99.3.ebuild b/dev-ml/sedlex/sedlex-1.99.3.ebuild deleted file mode 100644 index 467b1c870d45..000000000000 --- a/dev-ml/sedlex/sedlex-1.99.3.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit findlib - -DESCRIPTION="An OCaml lexer generator for Unicode" -HOMEPAGE="https://github.com/alainfrisch/sedlex" -SRC_URI="https://github.com/alainfrisch/sedlex/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="+ocamlopt" - -DEPEND=" - dev-lang/ocaml:=[ocamlopt?] - dev-ml/gen:=[ocamlopt(+)?] - dev-ml/ppx_tools:=[ocamlopt(+)?] -" -RDEPEND="${DEPEND}" - -src_compile() { - emake all - use ocamlopt && emake opt -} - -src_install() { - findlib_src_preinst - if use ocamlopt; then - emake install - else - emake install_byteonly - fi - dodoc CHANGES README.md -} diff --git a/dev-ml/sedlex/sedlex-1.99.4.ebuild b/dev-ml/sedlex/sedlex-1.99.4.ebuild deleted file mode 100644 index b2a4d281ef05..000000000000 --- a/dev-ml/sedlex/sedlex-1.99.4.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit findlib - -DESCRIPTION="An OCaml lexer generator for Unicode" -HOMEPAGE="https://github.com/alainfrisch/sedlex" -SRC_URI="https://github.com/alainfrisch/sedlex/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="+ocamlopt" - -DEPEND=" - dev-lang/ocaml:=[ocamlopt?] - dev-ml/gen:=[ocamlopt(+)?] - dev-ml/ppx_tools_versioned:=[ocamlopt(+)?] - dev-ml/ocaml-migrate-parsetree:=[ocamlopt(+)?] -" -RDEPEND="${DEPEND}" - -src_compile() { - emake all - use ocamlopt && emake opt -} - -src_test() { - emake -j1 test -} - -src_install() { - findlib_src_preinst - if use ocamlopt; then - emake install - else - emake install_byteonly - fi - dodoc CHANGES README.md -} |