Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/sphinx: sphinx-1.2.2.ebuild sphinx-1.2.3.ebuild ChangeLog
Date: Wed, 03 Dec 2014 16:09:36
Message-Id: 20141203160932.39193B776@oystercatcher.gentoo.org
1 floppym 14/12/03 16:09:32
2
3 Modified: sphinx-1.2.2.ebuild sphinx-1.2.3.ebuild ChangeLog
4 Log:
5 Fix build failure when DISTUTILS_NO_PARALLEL_BUILD=1, bug 531534.
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
8
9 Revision Changes Path
10 1.18 dev-python/sphinx/sphinx-1.2.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.2.2.ebuild?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.2.2.ebuild?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.2.2.ebuild?r1=1.17&r2=1.18
15
16 Index: sphinx-1.2.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.2.ebuild,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- sphinx-1.2.2.ebuild 1 Dec 2014 09:45:23 -0000 1.17
23 +++ sphinx-1.2.2.ebuild 3 Dec 2014 16:09:32 -0000 1.18
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/sphinx/sphinx-1.2.2.ebuild,v 1.17 2014/12/01 09:45:23 ago Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.2.ebuild,v 1.18 2014/12/03 16:09:32 floppym Exp $
29
30 EAPI=5
31
32 @@ -42,9 +42,9 @@
33 # Note that the tests usually do it for us. However, I don't want
34 # to trust USE=test really running all the tests, especially
35 # with FEATURES=test-fail-continue.
36 - cd "${BUILD_DIR}"/lib || die
37 - "${PYTHON}" -m sphinx.pycode.__init__ \
38 - || die "Grammar generation failed."
39 + pushd "${BUILD_DIR}"/lib > /dev/null || die
40 + "${PYTHON}" -m sphinx.pycode.__init__ || die "Grammar generation failed."
41 + popd > /dev/null || die
42 }
43
44 python_compile_all() {
45
46
47
48 1.5 dev-python/sphinx/sphinx-1.2.3.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.2.3.ebuild?rev=1.5&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.2.3.ebuild?rev=1.5&content-type=text/plain
52 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/sphinx-1.2.3.ebuild?r1=1.4&r2=1.5
53
54 Index: sphinx-1.2.3.ebuild
55 ===================================================================
56 RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.3.ebuild,v
57 retrieving revision 1.4
58 retrieving revision 1.5
59 diff -u -r1.4 -r1.5
60 --- sphinx-1.2.3.ebuild 23 Nov 2014 16:36:00 -0000 1.4
61 +++ sphinx-1.2.3.ebuild 3 Dec 2014 16:09:32 -0000 1.5
62 @@ -1,6 +1,6 @@
63 # Copyright 1999-2014 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.3.ebuild,v 1.4 2014/11/23 16:36:00 floppym Exp $
66 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/sphinx-1.2.3.ebuild,v 1.5 2014/12/03 16:09:32 floppym Exp $
67
68 EAPI=5
69
70 @@ -43,9 +43,10 @@
71 # Note that the tests usually do it for us. However, I don't want
72 # to trust USE=test really running all the tests, especially
73 # with FEATURES=test-fail-continue.
74 - cd "${BUILD_DIR}"/lib || die
75 + pushd "${BUILD_DIR}"/lib > /dev/null || die
76 "${PYTHON}" -m sphinx.pycode.__init__ \
77 || die "Grammar generation failed."
78 + popd > /dev/null || die
79 }
80
81 python_compile_all() {
82
83
84
85 1.182 dev-python/sphinx/ChangeLog
86
87 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.182&view=markup
88 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?rev=1.182&content-type=text/plain
89 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sphinx/ChangeLog?r1=1.181&r2=1.182
90
91 Index: ChangeLog
92 ===================================================================
93 RCS file: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v
94 retrieving revision 1.181
95 retrieving revision 1.182
96 diff -u -r1.181 -r1.182
97 --- ChangeLog 1 Dec 2014 09:45:23 -0000 1.181
98 +++ ChangeLog 3 Dec 2014 16:09:32 -0000 1.182
99 @@ -1,6 +1,10 @@
100 # ChangeLog for dev-python/sphinx
101 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
102 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.181 2014/12/01 09:45:23 ago Exp $
103 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sphinx/ChangeLog,v 1.182 2014/12/03 16:09:32 floppym Exp $
104 +
105 + 03 Dec 2014; Mike Gilbert <floppym@g.o> sphinx-1.2.2.ebuild,
106 + sphinx-1.2.3.ebuild:
107 + Fix build failure when DISTUTILS_NO_PARALLEL_BUILD=1, bug 531534.
108
109 01 Dec 2014; Agostino Sarubbo <ago@g.o> sphinx-1.2.2.ebuild:
110 Stable for sparc, wrt bug #524416