Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ml/dose3: dose3-4.0_rc3.ebuild ChangeLog
Date: Wed, 01 Jul 2015 09:34:16
Message-Id: 20150701093412.D0FC974B@oystercatcher.gentoo.org
1 aballier 15/07/01 09:34:12
2
3 Modified: ChangeLog
4 Added: dose3-4.0_rc3.ebuild
5 Log:
6 version bump, without keywords
7
8 Signed-off-by: Alexis Ballier <aballier@g.o>
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.7 dev-ml/dose3/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ml/dose3/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 26 Jan 2015 13:51:24 -0000 1.6
25 +++ ChangeLog 1 Jul 2015 09:34:12 -0000 1.7
26 @@ -1,6 +1,11 @@
27 # ChangeLog for dev-ml/dose3
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/dose3/ChangeLog,v 1.6 2015/01/26 13:51:24 aballier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/dose3/ChangeLog,v 1.7 2015/07/01 09:34:12 aballier Exp $
31 +
32 +*dose3-4.0_rc3 (01 Jul 2015)
33 +
34 + 01 Jul 2015; Alexis Ballier <aballier@g.o> +dose3-4.0_rc3.ebuild:
35 + version bump, without keywords
36
37 *dose3-3.3 (26 Jan 2015)
38
39
40
41
42 1.1 dev-ml/dose3/dose3-4.0_rc3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/dose3-4.0_rc3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/dose3-4.0_rc3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: dose3-4.0_rc3.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ml/dose3/dose3-4.0_rc3.ebuild,v 1.1 2015/07/01 09:34:12 aballier Exp $
52
53 EAPI=5
54
55 MY_P="${P/_beta/-beta}"
56 MY_P="${MY_P/_rc/-rc}"
57 DESCRIPTION="Library and a collection of tools to perform la large spectrum of analysis on package repositories"
58 HOMEPAGE="http://dose.gforge.inria.fr/public_html/"
59 SRC_URI="https://gforge.inria.fr/frs/download.php/file/34909/${MY_P}.tar.gz"
60
61 LICENSE="LGPL-3"
62 SLOT="0/${PV}"
63 #Breaks dev-ml/opam, its sole revdep
64 #KEYWORDS="~amd64"
65 IUSE="+ocamlopt +parmap zip bzip2 xml curl rpm4 test"
66
67 RDEPEND="
68 >=dev-lang/ocaml-3.12:=[ocamlopt?]
69 dev-ml/cudf:=
70 dev-ml/extlib:=
71 dev-ml/ocaml-re:=
72 dev-ml/cppo:=
73 parmap? ( dev-ml/parmap:= )
74 zip? ( dev-ml/camlzip:= )
75 bzip2? ( dev-ml/camlbz2:= )
76 >=dev-ml/ocamlgraph-1.8.5:=
77 xml? ( dev-ml/ocaml-expat:= dev-ml/xml-light:= )
78 curl? ( dev-ml/ocurl:= )
79 rpm4? ( app-arch/rpm )
80 "
81 DEPEND="${RDEPEND}
82 dev-ml/findlib
83 test? ( dev-python/pyyaml[libyaml] )
84 "
85 # missing test data
86 RESTRICT="test"
87
88 S="${WORKDIR}/${MY_P}"
89
90 src_prepare() {
91 sed -e 's/INSTALLOPTS=-s/INSTALLOPTS=/' -i Makefile.config.in || die
92 }
93
94 src_configure() {
95 econf \
96 $(use ocamlopt || echo "--with-bytecodeonly") \
97 $(use parmap && echo "--with-parmap") \
98 $(use zip && echo "--with-zip") \
99 $(use bzip2 && echo "--with-bz2") \
100 --with-ocamlgraph \
101 $(use xml && echo "--with-xml") \
102 $(use curl && echo "--with-curl") \
103 $(use rpm4 && echo "--with-rpm4")
104 }
105
106 src_compile() {
107 emake -j1
108 }