Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/matplotlib: ChangeLog matplotlib-1.1.0.ebuild
Date: Mon, 27 Feb 2012 03:10:25
Message-Id: 20120227031014.8F4D82004C@flycatcher.gentoo.org
1 bicatali 12/02/27 03:10:14
2
3 Modified: ChangeLog matplotlib-1.1.0.ebuild
4 Log:
5 Removed extra quotes, bug #405755
6
7 (Portage version: 2.1.10.44/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.119 dev-python/matplotlib/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.119&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/matplotlib/ChangeLog?rev=1.119&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/matplotlib/ChangeLog?r1=1.118&r2=1.119
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v
19 retrieving revision 1.118
20 retrieving revision 1.119
21 diff -u -r1.118 -r1.119
22 --- ChangeLog 25 Feb 2012 01:54:18 -0000 1.118
23 +++ ChangeLog 27 Feb 2012 03:10:14 -0000 1.119
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-python/matplotlib
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.118 2012/02/25 01:54:18 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.119 2012/02/27 03:10:14 bicatali Exp $
29 +
30 + 27 Feb 2012; Sébastien Fabbro <bicatali@g.o> matplotlib-1.1.0.ebuild:
31 + Removed extra quotes, bug #405755
32
33 25 Feb 2012; Patrick Lauer <patrick@g.o> matplotlib-1.1.0.ebuild:
34 Fixing accidental double asterisk
35
36
37
38 1.10 dev-python/matplotlib/matplotlib-1.1.0.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/matplotlib/matplotlib-1.1.0.ebuild?rev=1.10&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/matplotlib/matplotlib-1.1.0.ebuild?rev=1.10&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/matplotlib/matplotlib-1.1.0.ebuild?r1=1.9&r2=1.10
43
44 Index: matplotlib-1.1.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-1.1.0.ebuild,v
47 retrieving revision 1.9
48 retrieving revision 1.10
49 diff -u -r1.9 -r1.10
50 --- matplotlib-1.1.0.ebuild 25 Feb 2012 01:54:18 -0000 1.9
51 +++ matplotlib-1.1.0.ebuild 27 Feb 2012 03:10:14 -0000 1.10
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-1.1.0.ebuild,v 1.9 2012/02/25 01:54:18 patrick Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-1.1.0.ebuild,v 1.10 2012/02/27 03:10:14 bicatali Exp $
57
58 EAPI="3"
59
60 @@ -134,11 +134,11 @@
61 if use doc || use examples; then
62 cat <<-EOF >> doc/matplotlibrc
63 examples.download : False
64 - examples.directory : "${WORKDIR}"/mpl_sampledata-${PV}
65 + examples.directory : ${WORKDIR}/mpl_sampledata-${PV}
66 EOF
67 cat <<-EOF >> matplotlibrc.template
68 examples.download : False
69 - examples.directory : "${EPREFIX}"/usr/share/${PF}/examples
70 + examples.directory : ${EPREFIX}/usr/share/${PF}/examples
71 EOF
72 fi
73 }