Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pygsl: ChangeLog pygsl-0.9.5.ebuild
Date: Wed, 28 Apr 2010 04:12:37
Message-Id: 20100428041232.685C82C05A@corvid.gentoo.org
1 bicatali 10/04/28 04:12:32
2
3 Modified: ChangeLog
4 Added: pygsl-0.9.5.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 dev-python/pygsl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygsl/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygsl/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygsl/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pygsl/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 26 Apr 2010 20:19:43 -0000 1.14
23 +++ ChangeLog 28 Apr 2010 04:12:32 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/pygsl
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygsl/ChangeLog,v 1.14 2010/04/26 20:19:43 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygsl/ChangeLog,v 1.15 2010/04/28 04:12:32 bicatali Exp $
29 +
30 +*pygsl-0.9.5 (28 Apr 2010)
31 +
32 + 28 Apr 2010; Sébastien Fabbro <bicatali@g.o> +pygsl-0.9.5.ebuild:
33 + Version bump
34
35 26 Apr 2010; Markus Meier <maekke@g.o> pygsl-0.9.4.ebuild:
36 amd64 stable, bug #300267
37
38
39
40 1.1 dev-python/pygsl/pygsl-0.9.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygsl/pygsl-0.9.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pygsl/pygsl-0.9.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: pygsl-0.9.5.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-python/pygsl/pygsl-0.9.5.ebuild,v 1.1 2010/04/28 04:12:32 bicatali Exp $
50
51 EAPI=2
52 SUPPORT_PYTHON_ABIS="1"
53 inherit distutils
54
55 DESCRIPTION="A Python interface for the GNU scientific library (gsl)."
56 HOMEPAGE="http://pygsl.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 SLOT="0"
60 LICENSE="GPL-2"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
62 IUSE="examples"
63
64 DEPEND="sci-libs/gsl
65 dev-python/numpy"
66 RDEPEND="${DEPEND}"
67 RESTRICT_PYTHON_ABIS="3.*"
68
69 src_test() {
70 testing() {
71 cd "${S}/tests"
72 PYTHONPATH=$(ls -d ../build-${PYTHON_ABI}/lib*) "$(PYTHON)" run_test.py
73 }
74 python_execute_function testing
75 }
76
77 src_install() {
78 distutils_src_install
79 if use examples; then
80 insinto /usr/share/doc/${PF}
81 doins -r examples || die "install examples failed"
82 fi
83 }