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/ipython: ipython-2.4.0.ebuild ChangeLog
Date: Sun, 08 Feb 2015 23:24:13
Message-Id: 20150208232405.D18DB115A2@oystercatcher.gentoo.org
1 xarthisius 15/02/08 23:24:05
2
3 Modified: ipython-2.4.0.ebuild ChangeLog
4 Log:
5 Simplify check if pandoc is installed. Thanks to Arfrever for a suggestion
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9)
8
9 Revision Changes Path
10 1.2 dev-python/ipython/ipython-2.4.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-2.4.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-2.4.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-2.4.0.ebuild?r1=1.1&r2=1.2
15
16 Index: ipython-2.4.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-2.4.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ipython-2.4.0.ebuild 8 Feb 2015 19:05:16 -0000 1.1
23 +++ ipython-2.4.0.ebuild 8 Feb 2015 23:24:05 -0000 1.2
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-2.4.0.ebuild,v 1.1 2015/02/08 19:05:16 xarthisius Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-2.4.0.ebuild,v 1.2 2015/02/08 23:24:05 xarthisius Exp $
29
30 EAPI=5
31
32 @@ -131,7 +131,7 @@
33 elog "To enable sympyprinting, it's required to emerge sympy"
34 elog "To enable cythonmagic, it's required to emerge cython"
35 if use nbconvert; then
36 - if [[ -z $(best_version app-text/pandoc) ]] ; then
37 + if ! has_version app-text/pandoc ; then
38 einfo "Node.js will be used to convert notebooks to other formats"
39 einfo "like HTML. Support for that is still experimental. If you"
40 einfo "encounter any problems, please use app-text/pandoc instead."
41
42
43
44 1.159 dev-python/ipython/ChangeLog
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.159&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.159&content-type=text/plain
48 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.158&r2=1.159
49
50 Index: ChangeLog
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v
53 retrieving revision 1.158
54 retrieving revision 1.159
55 diff -u -r1.158 -r1.159
56 --- ChangeLog 8 Feb 2015 19:05:16 -0000 1.158
57 +++ ChangeLog 8 Feb 2015 23:24:05 -0000 1.159
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.158 2015/02/08 19:05:16 xarthisius Exp $
62 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.159 2015/02/08 23:24:05 xarthisius Exp $
63 +
64 + 08 Feb 2015; Kacper Kowalik <xarthisius@g.o> ipython-2.4.0.ebuild:
65 + Simplify check if pandoc is installed. Thanks to Arfrever for a suggestion
66
67 *ipython-2.4.0 (08 Feb 2015)