Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cosmolopy: cosmolopy-0.1.104.ebuild ChangeLog
Date: Tue, 07 Feb 2012 12:05:53
Message-Id: 20120207120539.195622004B@flycatcher.gentoo.org
1 xarthisius 12/02/07 12:05:39
2
3 Modified: ChangeLog
4 Added: cosmolopy-0.1.104.ebuild
5 Log:
6 Version bump wrt bug 402495 by Ian Delaney <johneed@×××××××.com>
7
8 (Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 dev-python/cosmolopy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 4 Aug 2011 18:41:26 -0000 1.3
24 +++ ChangeLog 7 Feb 2012 12:05:39 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/cosmolopy
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/ChangeLog,v 1.3 2011/08/04 18:41:26 bicatali Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/ChangeLog,v 1.4 2012/02/07 12:05:39 xarthisius Exp $
31 +
32 +*cosmolopy-0.1.104 (07 Feb 2012)
33 +
34 + 07 Feb 2012; Kacper Kowalik <xarthisius@g.o> +cosmolopy-0.1.104.ebuild:
35 + Version bump wrt bug 402495 by Ian Delaney <johneed@×××××××.com>
36
37 04 Aug 2011; Sébastien Fabbro <bicatali@g.o> metadata.xml:
38 Switched herd to sci-astronomy
39
40
41
42 1.1 dev-python/cosmolopy/cosmolopy-0.1.104.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/cosmolopy-0.1.104.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/cosmolopy-0.1.104.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cosmolopy-0.1.104.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/cosmolopy-0.1.104.ebuild,v 1.1 2012/02/07 12:05:39 xarthisius Exp $
52
53 EAPI=4
54
55 PYTHON_DEPEND="2"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="3.* *-jython"
58
59 inherit distutils
60
61 MY_PN=CosmoloPy
62 MY_P=${MY_PN}-${PV}
63
64 DESCRIPTION="Cosmology routines built on NumPy/SciPy"
65 HOMEPAGE="http://roban.github.com/CosmoloPy/ http://pypi.python.org/pypi/CosmoloPy"
66 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="doc"
72
73 DEPEND="dev-python/nose
74 dev-lang/swig
75 doc? ( dev-python/epydoc )"
76 RDEPEND="sci-libs/scipy"
77
78 S=${WORKDIR}/${MY_P}
79
80 src_install() {
81 distutils_src_install
82 if use doc; then
83 einfo "Generation of documentation"
84 epydoc -n "CosmoloPy - Cosmology routines built on NumPy/SciPy" \
85 --exclude='cosmolopy.EH._power' --exclude='cosmolopy.EH.power' \
86 --no-private --no-frames --html --docformat restructuredtext \
87 cosmolopy/ -o docAPI/ || die
88 dohtml -r docAPI/*
89 fi
90 }