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