Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/cosmolopy: cosmolopy-0.1.104-r1.ebuild ChangeLog cosmolopy-0.1.104.ebuild
Date: Tue, 30 Dec 2014 02:11:14
Message-Id: 20141230021110.A84CEE767@oystercatcher.gentoo.org
1 idella4 14/12/30 02:11:10
2
3 Modified: ChangeLog
4 Added: cosmolopy-0.1.104-r1.ebuild
5 Removed: cosmolopy-0.1.104.ebuild
6 Log:
7 revbump; conversion -> distutils-r1, rm old
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.8 dev-python/cosmolopy/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 18 Oct 2012 01:48:04 -0000 1.7
25 +++ ChangeLog 30 Dec 2014 02:11:10 -0000 1.8
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/cosmolopy
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/ChangeLog,v 1.7 2012/10/18 01:48:04 patrick Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/ChangeLog,v 1.8 2014/12/30 02:11:10 idella4 Exp $
32 +
33 +*cosmolopy-0.1.104-r1 (30 Dec 2014)
34 +
35 + 30 Dec 2014; Ian Delaney <idella4@g.o> +cosmolopy-0.1.104-r1.ebuild,
36 + -cosmolopy-0.1.104.ebuild:
37 + revbump; conversion -> distutils-r1, rm old
38
39 18 Oct 2012; Patrick Lauer <patrick@g.o> cosmolopy-0.1.104.ebuild:
40 Restricting CPython-2.5
41
42
43
44 1.1 dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: cosmolopy-0.1.104-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild,v 1.1 2014/12/30 02:11:10 idella4 Exp $
54
55 EAPI=5
56
57 PYTHON_COMPAT=( python2_7)
58
59 inherit distutils-r1
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 ~amd64-linux ~x86-linux"
71 IUSE="doc"
72
73 DEPEND="dev-python/nose[${PYTHON_USEDEP}]
74 dev-lang/swig
75 doc? ( dev-python/epydoc[${PYTHON_USEDEP}] )"
76 RDEPEND="sci-libs/scipy[${PYTHON_USEDEP}]"
77
78 S=${WORKDIR}/${MY_P}
79
80 python_compile_all() {
81 if use doc; then
82 epydoc -n "CosmoloPy - Cosmology routines built on NumPy/SciPy" \
83 --exclude='cosmolopy.EH._power' --exclude='cosmolopy.EH.power' \
84 --no-private --no-frames --html --docformat restructuredtext \
85 cosmolopy/ -o docAPI/ || die
86 fi
87 }
88
89 python_install_all() {
90 use doc && local HTML_DOCS=( docAPI/. )
91 distutils-r1_python_install_all
92 }