Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/dose3/
Date: Sat, 28 Nov 2020 18:37:29
Message-Id: 1606588636.2b5d982e0f5fe005153f563f59ac89c0752842fc.bman@gentoo
1 commit: 2b5d982e0f5fe005153f563f59ac89c0752842fc
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 28 18:12:26 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 28 18:37:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5d982e
7
8 dev-ml/dose3: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 dev-ml/dose3/dose3-5.0.1.ebuild | 64 -----------------------------------------
13 1 file changed, 64 deletions(-)
14
15 diff --git a/dev-ml/dose3/dose3-5.0.1.ebuild b/dev-ml/dose3/dose3-5.0.1.ebuild
16 deleted file mode 100644
17 index 161fafebbd3..00000000000
18 --- a/dev-ml/dose3/dose3-5.0.1.ebuild
19 +++ /dev/null
20 @@ -1,64 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit eutils
27 -
28 -MY_P="${P/_beta/-beta}"
29 -DESCRIPTION="Library to perform analysis on package repositories"
30 -HOMEPAGE="http://www.mancoosi.org/software/ https://gforge.inria.fr/projects/dose"
31 -SRC_URI="https://gforge.inria.fr/frs/download.php/file/36063/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-3"
34 -SLOT="0/${PV}"
35 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
36 -IUSE="+ocamlopt parmap zip bzip2 xml curl rpm4 test"
37 -
38 -RDEPEND="
39 - >=dev-lang/ocaml-3.12:=[ocamlopt?]
40 - dev-ml/cudf:=
41 - >=dev-ml/extlib-1.7.0:=
42 - dev-ml/ocaml-re:=
43 - dev-ml/cppo:=
44 - parmap? ( dev-ml/parmap:= )
45 - zip? ( dev-ml/camlzip:= )
46 - bzip2? ( dev-ml/camlbz2:= )
47 - >=dev-ml/ocamlgraph-1.8.6:=
48 - xml? ( dev-ml/ocaml-expat:= dev-ml/xml-light:= )
49 - curl? ( dev-ml/ocurl:= )
50 - rpm4? ( app-arch/rpm )
51 -"
52 -DEPEND="${RDEPEND}
53 - dev-ml/findlib
54 - dev-ml/ocamlbuild
55 - test? ( dev-python/pyyaml[libyaml] )
56 -"
57 -# missing test data
58 -RESTRICT="test"
59 -
60 -S="${WORKDIR}/${MY_P}"
61 -
62 -src_prepare() {
63 - sed -e 's/INSTALLOPTS=-s/INSTALLOPTS=/' -i Makefile.config.in || die
64 -}
65 -
66 -src_configure() {
67 - econf \
68 - $(use ocamlopt || echo "--with-bytecodeonly") \
69 - $(use parmap && echo "--with-parmap") \
70 - $(use zip && echo "--with-zip") \
71 - $(use bzip2 && echo "--with-bz2") \
72 - $(use xml && echo "--with-xml") \
73 - $(use curl && echo "--with-curl") \
74 - $(use rpm4 && echo "--with-rpm4")
75 -}
76 -
77 -src_compile() {
78 - emake -j1
79 -}
80 -
81 -src_install() {
82 - emake DESTDIR="${D}" BINDIR="${ED}/usr/bin" install
83 - dodoc CHANGES CREDITS README.architecture TODO
84 -}