Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/adolc: adolc-2.4.1.ebuild ChangeLog adolc-2.3.0-r1.ebuild
Date: Sun, 26 May 2013 15:55:05
Message-Id: 20130526155501.439BD2171D@flycatcher.gentoo.org
1 bicatali 13/05/26 15:55:01
2
3 Modified: ChangeLog
4 Added: adolc-2.4.1.ebuild
5 Removed: adolc-2.3.0-r1.ebuild
6 Log:
7 Version bump
8
9 (Portage version: 2.2.01.21938-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
10
11 Revision Changes Path
12 1.4 sci-libs/adolc/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-libs/adolc/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 3 Mar 2013 19:10:38 -0000 1.3
25 +++ ChangeLog 26 May 2013 15:55:01 -0000 1.4
26 @@ -1,6 +1,13 @@
27 # ChangeLog for sci-libs/adolc
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/adolc/ChangeLog,v 1.3 2013/03/03 19:10:38 bicatali Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/adolc/ChangeLog,v 1.4 2013/05/26 15:55:01 bicatali Exp $
31 +
32 +*adolc-2.4.1 (26 May 2013)
33 +
34 + 26 May 2013; Sébastien Fabbro <bicatali@g.o> +adolc-2.4.1.ebuild,
35 + -adolc-2.3.0-r1.ebuild, -files/adolc-2.3.0-libdir.patch,
36 + -files/adolc-2.3.0-no-colpack.patch:
37 + Version bump
38
39 *adolc-2.4.0 (03 Mar 2013)
40
41
42
43
44 1.1 sci-libs/adolc/adolc-2.4.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/adolc-2.4.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/adolc-2.4.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: adolc-2.4.1.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-libs/adolc/adolc-2.4.1.ebuild,v 1.1 2013/05/26 15:55:01 bicatali Exp $
54
55 EAPI=5
56
57 AUTOTOOLS_AUTORECONF=yes
58 AUTOTOOLS_IN_SOURCE_BUILD=yes
59 inherit autotools-utils toolchain-funcs
60
61 MYPN=ADOL-C
62
63 DESCRIPTION="Automatic differentiation system for C/C++"
64 HOMEPAGE="https://projects.coin-or.org/ADOL-C/"
65 SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
66
67 LICENSE="|| ( EPL-1.0 GPL-2 )"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
70 IUSE="sparse static-libs"
71
72 RDEPEND="sparse? ( sci-libs/colpack )"
73 DEPEND="${RDEPEND}"
74
75 S="${WORKDIR}/${MYPN}-${PV}"
76
77 PATCHES=( "${FILESDIR}"/${PN}-2.4.0-no-colpack.patch )
78
79 src_configure() {
80 local myeconfargs=(
81 $(use_enable sparse)
82 $(use_with sparse colpack "${EPREFIX}"/usr)
83 )
84 autotools-utils_src_configure
85 }
86
87 src_test() {
88 emake test
89 }