From 88ac56ef28f8adde9a97e41d4b7fdaf1d6a9537d Mon Sep 17 00:00:00 2001 From: Alexis Ballier Date: Tue, 19 Jan 2016 12:32:36 +0100 Subject: [PATCH] dev-ml/dose3: remove old Package-Manager: portage-2.2.27 Signed-off-by: Alexis Ballier --- dev-ml/dose3/Manifest | 3 -- dev-ml/dose3/dose3-3.3.ebuild | 61 -------------------------- dev-ml/dose3/dose3-3.3_beta2-r2.ebuild | 55 ----------------------- dev-ml/dose3/dose3-4.0_rc3.ebuild | 60 ------------------------- dev-ml/dose3/files/extlib.patch | 12 ----- 5 files changed, 191 deletions(-) delete mode 100644 dev-ml/dose3/dose3-3.3.ebuild delete mode 100644 dev-ml/dose3/dose3-3.3_beta2-r2.ebuild delete mode 100644 dev-ml/dose3/dose3-4.0_rc3.ebuild delete mode 100644 dev-ml/dose3/files/extlib.patch diff --git a/dev-ml/dose3/Manifest b/dev-ml/dose3/Manifest index 1bc9277075e63..e4f7a9032a2dc 100644 --- a/dev-ml/dose3/Manifest +++ b/dev-ml/dose3/Manifest @@ -1,4 +1 @@ -DIST dose3-3.3-beta2.tar.gz 257564 SHA256 ec73f6ad8da999a90b4c20633c55dac78755018c0128592501f3931396d85abf SHA512 7540b2390f8ef49acdf4ac5c7598e25137b380f4d0b862d75a144a2e12d3f7e24633e8f0e3597f74cd48491f9fa7559dc1664692eb3a840eca26e0f077550db8 WHIRLPOOL 6ad1e502ac85c9e873703f5f11f8291fe24a2bd79f6c659ff7f22d001f37114e8568db915ef6e2b2dd245eaceb3eaa00797d47626577cf33df057762eb727af2 -DIST dose3-3.3.tar.gz 257658 SHA256 8dc4dae9b1a81bb3a42abb283df785ba3eb00ade29b13875821c69f03e00680e SHA512 0decf753f6f4a9fc73ac2cf8eb4b6b464f16cba2fa7f97d8e7c6f37cb63749ee171c3273019a9a9a42141fdb7843a730e5a5dfc0ebba68d4a8d50261165d71be WHIRLPOOL bd2f863a7ffa9fc34c1f4595950441d05984b9d26c3b54067ed24ca4e1e05795f7b1f1c213e8c20a089360c8a50c324f9472f22cb9cbfe4f59fe8e919f370de9 -DIST dose3-4.0-rc3.tar.gz 326340 SHA256 c464b3f17f376cc672e9fef4024ca874fadbe42e4e86e7e7e167f8fd1d8a1946 SHA512 c3dfb7d97d9ab4321af991beefc42cafda5d07ac94e2dc941470aa05442cbbb422aec2b07e9df2c60de721e1cc0725a73d44a069ad154897de94fe4312e91853 WHIRLPOOL 4ab2633162a72d079e66dddba081fcbfa5f817575451960ad6d64bfa5531249d55b014affe92323497d1c28a3c86666a4d7c8a5ca75a582f075f3f351ecf94c4 DIST dose3-4.2.tar.gz 281555 SHA256 ed37414baded4a175b47d4e2856c1e827fc7fb9939cc9e176a1d46e5048d8526 SHA512 d64443899f874254834165c44d0400eff5fa80e1d1d41f76b94fbb11ae0b34aa75dcbb8cc9a5e510e2f91d147e11391f36c45ef0fb24536fffcfc68d686c5fa1 WHIRLPOOL cce3baa6dfe922a3b04e8683aea785bbfd3050a70a0c0b533457fe41f274eca1e62343bca34e08307e9818252d09c2d6b24b4b2fb0efb1321fd38fd478b7428e diff --git a/dev-ml/dose3/dose3-3.3.ebuild b/dev-ml/dose3/dose3-3.3.ebuild deleted file mode 100644 index f9ac6f6024458..0000000000000 --- a/dev-ml/dose3/dose3-3.3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils - -MY_P="${P/_beta/-beta}" -DESCRIPTION="Library and a collection of tools to perform la large spectrum of analysis on package repositories" -HOMEPAGE="http://dose.gforge.inria.fr/public_html/" -SRC_URI="https://gforge.inria.fr/frs/download.php/file/34277/${MY_P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="+ocamlopt +parmap zip bzip2 xml curl rpm4 test" - -RDEPEND=" - >=dev-lang/ocaml-3.12:=[ocamlopt?] - dev-ml/cudf:= - dev-ml/extlib:= - dev-ml/ocaml-re:= - || ( dev-ml/camlp4:= =dev-ml/ocamlgraph-1.8.5:= - xml? ( dev-ml/ocaml-expat:= dev-ml/xml-light:= ) - curl? ( dev-ml/ocurl:= ) - rpm4? ( app-arch/rpm ) -" -DEPEND="${RDEPEND} - dev-ml/findlib - test? ( dev-python/pyyaml[libyaml] ) -" -# missing test data -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - sed -e 's/INSTALLOPTS=-s/INSTALLOPTS=/' -i Makefile.config.in || die - has_version '>=dev-ml/extlib-1.7' && epatch "${FILESDIR}/extlib.patch" -} - -src_configure() { - econf \ - $(use ocamlopt || echo "--with-bytecodeonly") \ - $(use parmap && echo "--with-parmap") \ - $(use zip && echo "--with-zip") \ - $(use bzip2 && echo "--with-bz2") \ - --with-ocamlgraph \ - $(use xml && echo "--with-xml") \ - $(use curl && echo "--with-curl") \ - $(use rpm4 && echo "--with-rpm4") -} - -src_compile() { - emake -j1 -} diff --git a/dev-ml/dose3/dose3-3.3_beta2-r2.ebuild b/dev-ml/dose3/dose3-3.3_beta2-r2.ebuild deleted file mode 100644 index ea4d61e18f44e..0000000000000 --- a/dev-ml/dose3/dose3-3.3_beta2-r2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MY_P="${P/_beta/-beta}" -DESCRIPTION="Library and a collection of tools to perform la large spectrum of analysis on package repositories" -HOMEPAGE="http://dose.gforge.inria.fr/public_html/" -SRC_URI="https://gforge.inria.fr/frs/download.php/file/34180/${MY_P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="+ocamlopt +parmap zip bzip2 xml curl rpm4" - -RDEPEND=" - >=dev-lang/ocaml-3.12:=[ocamlopt?] - dev-ml/cudf:= - dev-ml/extlib:= - dev-ml/ocaml-re:= - || ( dev-ml/camlp4:= =dev-ml/ocamlgraph-1.8.5:= - xml? ( dev-ml/ocaml-expat:= dev-ml/xml-light:= ) - curl? ( dev-ml/ocurl:= ) - rpm4? ( app-arch/rpm ) -" -DEPEND="${RDEPEND} - dev-ml/findlib -" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - sed -e 's/INSTALLOPTS=-s/INSTALLOPTS=/' -i Makefile.config.in || die -} - -src_configure() { - econf \ - $(use ocamlopt || echo "--with-bytecodeonly") \ - $(use parmap && echo "--with-parmap") \ - $(use zip && echo "--with-zip") \ - $(use bzip2 && echo "--with-bz2") \ - --with-ocamlgraph \ - $(use xml && echo "--with-xml") \ - $(use curl && echo "--with-curl") \ - $(use rpm4 && echo "--with-rpm4") -} - -src_compile() { - emake -j1 -} diff --git a/dev-ml/dose3/dose3-4.0_rc3.ebuild b/dev-ml/dose3/dose3-4.0_rc3.ebuild deleted file mode 100644 index 414b97fe29ee3..0000000000000 --- a/dev-ml/dose3/dose3-4.0_rc3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -MY_P="${P/_beta/-beta}" -MY_P="${MY_P/_rc/-rc}" -DESCRIPTION="Library and a collection of tools to perform la large spectrum of analysis on package repositories" -HOMEPAGE="http://dose.gforge.inria.fr/public_html/" -SRC_URI="https://gforge.inria.fr/frs/download.php/file/34909/${MY_P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0/${PV}" -#Breaks dev-ml/opam, its sole revdep -#KEYWORDS="~amd64" -IUSE="+ocamlopt +parmap zip bzip2 xml curl rpm4 test" - -RDEPEND=" - >=dev-lang/ocaml-3.12:=[ocamlopt?] - dev-ml/cudf:= - dev-ml/extlib:= - dev-ml/ocaml-re:= - dev-ml/cppo:= - parmap? ( dev-ml/parmap:= ) - zip? ( dev-ml/camlzip:= ) - bzip2? ( dev-ml/camlbz2:= ) - >=dev-ml/ocamlgraph-1.8.5:= - xml? ( dev-ml/ocaml-expat:= dev-ml/xml-light:= ) - curl? ( dev-ml/ocurl:= ) - rpm4? ( app-arch/rpm ) -" -DEPEND="${RDEPEND} - dev-ml/findlib - test? ( dev-python/pyyaml[libyaml] ) -" -# missing test data -RESTRICT="test" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - sed -e 's/INSTALLOPTS=-s/INSTALLOPTS=/' -i Makefile.config.in || die -} - -src_configure() { - econf \ - $(use ocamlopt || echo "--with-bytecodeonly") \ - $(use parmap && echo "--with-parmap") \ - $(use zip && echo "--with-zip") \ - $(use bzip2 && echo "--with-bz2") \ - --with-ocamlgraph \ - $(use xml && echo "--with-xml") \ - $(use curl && echo "--with-curl") \ - $(use rpm4 && echo "--with-rpm4") -} - -src_compile() { - emake -j1 -} diff --git a/dev-ml/dose3/files/extlib.patch b/dev-ml/dose3/files/extlib.patch deleted file mode 100644 index f4a16ded682a2..0000000000000 --- a/dev-ml/dose3/files/extlib.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: dose3-3.3/doseparse/stdOptions.ml -=================================================================== ---- dose3-3.3.orig/doseparse/stdOptions.ml -+++ dose3-3.3/doseparse/stdOptions.ml -@@ -20,6 +20,7 @@ include Util.Logging(struct let label = - module type Ot = sig - val options : - ?usage:string -> -+ ?status:int -> - ?version:string -> - ?suppress_usage:bool -> - ?suppress_help:bool ->