Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/sympy: sympy-0.7.3.ebuild ChangeLog
Date: Sat, 28 Dec 2013 20:31:23
Message-Id: 20131228203119.50DB42004C@flycatcher.gentoo.org
1 jlec 13/12/28 20:31:19
2
3 Modified: sympy-0.7.3.ebuild ChangeLog
4 Log:
5 dev-python/sympy: Add workaround for XDG_CONFIG_HOME problems, #488378
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
8
9 Revision Changes Path
10 1.3 dev-python/sympy/sympy-0.7.3.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sympy/sympy-0.7.3.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sympy/sympy-0.7.3.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sympy/sympy-0.7.3.ebuild?r1=1.2&r2=1.3
15
16 Index: sympy-0.7.3.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/sympy/sympy-0.7.3.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- sympy-0.7.3.ebuild 16 Oct 2013 16:28:25 -0000 1.2
23 +++ sympy-0.7.3.ebuild 28 Dec 2013 20:31:19 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sympy/sympy-0.7.3.ebuild,v 1.2 2013/10/16 16:28:25 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sympy/sympy-0.7.3.ebuild,v 1.3 2013/12/28 20:31:19 jlec Exp $
29
30 EAPI=5
31
32 @@ -173,6 +173,9 @@
33 python_compile_all() {
34 local _py
35 if use doc; then
36 + export XDG_CONFIG_HOME="${T}/config-dir"
37 + mkdir "${XDG_CONFIG_HOME}" || die
38 + chmod 0700 "${XDG_CONFIG_HOME}" || die
39 if python_is_python3; then
40 _py=3
41 else
42
43
44
45 1.27 dev-python/sympy/ChangeLog
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sympy/ChangeLog?rev=1.27&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sympy/ChangeLog?rev=1.27&content-type=text/plain
49 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/sympy/ChangeLog?r1=1.26&r2=1.27
50
51 Index: ChangeLog
52 ===================================================================
53 RCS file: /var/cvsroot/gentoo-x86/dev-python/sympy/ChangeLog,v
54 retrieving revision 1.26
55 retrieving revision 1.27
56 diff -u -r1.26 -r1.27
57 --- ChangeLog 16 Oct 2013 16:28:25 -0000 1.26
58 +++ ChangeLog 28 Dec 2013 20:31:19 -0000 1.27
59 @@ -1,6 +1,9 @@
60 # ChangeLog for dev-python/sympy
61 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
62 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sympy/ChangeLog,v 1.26 2013/10/16 16:28:25 jlec Exp $
63 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sympy/ChangeLog,v 1.27 2013/12/28 20:31:19 jlec Exp $
64 +
65 + 28 Dec 2013; Justin Lecher <jlec@g.o> sympy-0.7.3.ebuild:
66 + Add workaround for XDG_CONFIG_HOME problems, #488378
67
68 16 Oct 2013; Justin Lecher <jlec@g.o> sympy-0.7.3.ebuild:
69 Fix problems with doc building, #488172; simplify py 2/3 selection code