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/ipython: ipython-3.2.0.ebuild ChangeLog
Date: Mon, 29 Jun 2015 12:37:57
Message-Id: 20150629123735.07C61738@oystercatcher.gentoo.org
1 jlec 15/06/29 12:37:35
2
3 Modified: ipython-3.2.0.ebuild ChangeLog
4 Log:
5 Fix sandbox violation
6
7 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
8
9 Revision Changes Path
10 1.3 dev-python/ipython/ipython-3.2.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-3.2.0.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-3.2.0.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-3.2.0.ebuild?r1=1.2&r2=1.3
15
16 Index: ipython-3.2.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-3.2.0.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ipython-3.2.0.ebuild 28 Jun 2015 18:27:27 -0000 1.2
23 +++ ipython-3.2.0.ebuild 29 Jun 2015 12:37:34 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-3.2.0.ebuild,v 1.2 2015/06/28 18:27:27 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-3.2.0.ebuild,v 1.3 2015/06/29 12:37:34 jlec Exp $
29
30 EAPI=5
31
32 @@ -125,7 +125,7 @@
33 python_install() {
34 distutils-r1_python_install
35 use notebook && \
36 - ln -sf "${EPREFIX}/usr/share/mathjax" $(python_get_sitedir)/IPython/html/static/mathjax
37 + ln -sf "${EPREFIX}/usr/share/mathjax" "${D}$(python_get_sitedir)/IPython/html/static/mathjax"
38
39 # Create ipythonX.Y symlinks.
40 # TODO:
41
42
43
44 1.182 dev-python/ipython/ChangeLog
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.182&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.182&content-type=text/plain
48 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.181&r2=1.182
49
50 Index: ChangeLog
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
53 retrieving revision 1.181
54 retrieving revision 1.182
55 diff -u -r1.181 -r1.182
56 --- ChangeLog 28 Jun 2015 18:27:27 -0000 1.181
57 +++ ChangeLog 29 Jun 2015 12:37:34 -0000 1.182
58 @@ -1,6 +1,9 @@
59 # ChangeLog for dev-python/ipython
60 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
61 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.181 2015/06/28 18:27:27 jlec Exp $
62 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.182 2015/06/29 12:37:34 jlec Exp $
63 +
64 + 29 Jun 2015; Justin Lecher <jlec@g.o> ipython-3.2.0.ebuild:
65 + Fix sandbox violation
66
67 28 Jun 2015; Justin Lecher <jlec@g.o> ipython-3.2.0.ebuild:
68 Prevent double PREFIX on PREFIX, bug #553344