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/aplpy: aplpy-0.9.14.ebuild ChangeLog aplpy-0.9.11.ebuild aplpy-0.9.9.ebuild
Date: Thu, 27 Nov 2014 18:24:36
Message-Id: 20141127182431.17D98B08B@oystercatcher.gentoo.org
1 xarthisius 14/11/27 18:24:31
2
3 Modified: ChangeLog
4 Added: aplpy-0.9.14.ebuild
5 Removed: aplpy-0.9.11.ebuild aplpy-0.9.9.ebuild
6 Log:
7 Version bump wrt #525790 by Joseph Booker <joe@××××××××××.net>, drop old
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
10
11 Revision Changes Path
12 1.16 dev-python/aplpy/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/aplpy/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 28 Jan 2014 17:53:13 -0000 1.15
25 +++ ChangeLog 27 Nov 2014 18:24:31 -0000 1.16
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/aplpy
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/aplpy/ChangeLog,v 1.15 2014/01/28 17:53:13 bicatali Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/aplpy/ChangeLog,v 1.16 2014/11/27 18:24:31 xarthisius Exp $
31 +
32 +*aplpy-0.9.14 (27 Nov 2014)
33 +
34 + 27 Nov 2014; Kacper Kowalik <xarthisius@g.o> +aplpy-0.9.14.ebuild,
35 + -aplpy-0.9.11.ebuild, -aplpy-0.9.9.ebuild:
36 + Version bump wrt #525790 by Joseph Booker <joe@××××××××××.net>, drop old
37
38 *aplpy-0.9.11 (28 Jan 2014)
39
40
41
42
43 1.1 dev-python/aplpy/aplpy-0.9.14.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild?rev=1.1&content-type=text/plain
47
48 Index: aplpy-0.9.14.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild,v 1.1 2014/11/27 18:24:31 xarthisius Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
57
58 inherit distutils-r1
59
60 MYPN=APLpy
61 MYP=${MYPN}-${PV}
62
63 DESCRIPTION="Astronomical Plotting Library in Python"
64 HOMEPAGE="http://aplpy.github.com/"
65 SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
70 IUSE=""
71
72 RDEPEND="
73 dev-python/astropy[${PYTHON_USEDEP}]
74 dev-python/numpy[${PYTHON_USEDEP}]
75 dev-python/matplotlib[${PYTHON_USEDEP}]
76 dev-python/pyavm[${PYTHON_USEDEP}]
77 virtual/python-imaging[${PYTHON_USEDEP}]"
78 DEPEND="${RDEPEND}"
79
80 S=${WORKDIR}/${MYP}
81
82 python_prepare_all() {
83 sed -e '/import ah_bootstrap/d' \
84 -i setup.py || die "Removing ah_bootstrap failed"
85 distutils-r1_python_prepare_all
86 }
87
88 python_test() {
89 distutils_install_for_testing
90 cd "${TEST_DIR}" || die
91 "${EPYTHON}" -c "import aplpy, sys;r = aplpy.test();sys.exit(r)" \
92 || die "tests fail with ${EPYTHON}"
93 }