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
Date: Thu, 27 Nov 2014 18:47:31
Message-Id: 20141127184727.79A1BB08F@oystercatcher.gentoo.org
1 xarthisius 14/11/27 18:47:27
2
3 Modified: aplpy-0.9.14.ebuild ChangeLog
4 Log:
5 Pass --offline to setup.py instead of removing ah_bootstrap
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
8
9 Revision Changes Path
10 1.2 dev-python/aplpy/aplpy-0.9.14.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild?r1=1.1&r2=1.2
15
16 Index: aplpy-0.9.14.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- aplpy-0.9.14.ebuild 27 Nov 2014 18:24:31 -0000 1.1
23 +++ aplpy-0.9.14.ebuild 27 Nov 2014 18:47:27 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild,v 1.1 2014/11/27 18:24:31 xarthisius Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/aplpy/aplpy-0.9.14.ebuild,v 1.2 2014/11/27 18:47:27 xarthisius Exp $
29
30 EAPI=5
31
32 @@ -30,15 +30,17 @@
33
34 S=${WORKDIR}/${MYP}
35
36 -python_prepare_all() {
37 - sed -e '/import ah_bootstrap/d' \
38 - -i setup.py || die "Removing ah_bootstrap failed"
39 - distutils-r1_python_prepare_all
40 +python_compile() {
41 + distutils-r1_python_compile --use-system-libraries --offline
42 }
43
44 python_test() {
45 - distutils_install_for_testing
46 + distutils_install_for_testing --offline
47 cd "${TEST_DIR}" || die
48 "${EPYTHON}" -c "import aplpy, sys;r = aplpy.test();sys.exit(r)" \
49 || die "tests fail with ${EPYTHON}"
50 }
51 +
52 +python_install() {
53 + distutils-r1_python_install --offline
54 +}
55
56
57
58 1.17 dev-python/aplpy/ChangeLog
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/ChangeLog?rev=1.17&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/ChangeLog?rev=1.17&content-type=text/plain
62 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/aplpy/ChangeLog?r1=1.16&r2=1.17
63
64 Index: ChangeLog
65 ===================================================================
66 RCS file: /var/cvsroot/gentoo-x86/dev-python/aplpy/ChangeLog,v
67 retrieving revision 1.16
68 retrieving revision 1.17
69 diff -u -r1.16 -r1.17
70 --- ChangeLog 27 Nov 2014 18:24:31 -0000 1.16
71 +++ ChangeLog 27 Nov 2014 18:47:27 -0000 1.17
72 @@ -1,6 +1,9 @@
73 # ChangeLog for dev-python/aplpy
74 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
75 -# $Header: /var/cvsroot/gentoo-x86/dev-python/aplpy/ChangeLog,v 1.16 2014/11/27 18:24:31 xarthisius Exp $
76 +# $Header: /var/cvsroot/gentoo-x86/dev-python/aplpy/ChangeLog,v 1.17 2014/11/27 18:47:27 xarthisius Exp $
77 +
78 + 27 Nov 2014; Kacper Kowalik <xarthisius@g.o> aplpy-0.9.14.ebuild:
79 + Pass --offline to setup.py instead of removing ah_bootstrap
80
81 *aplpy-0.9.14 (27 Nov 2014)