Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in xfce-base/exo: ChangeLog exo-0.5.5.ebuild
Date: Wed, 24 Nov 2010 14:17:51
Message-Id: 20101124141743.5BE9320051@flycatcher.gentoo.org
1 ssuominen 10/11/24 14:17:43
2
3 Modified: ChangeLog exo-0.5.5.ebuild
4 Log:
5 Missing USE python for byte compiling wrt #346597 by Peter Volkov.
6
7 (Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.46 xfce-base/exo/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 21 Nov 2010 14:14:44 -0000 1.45
23 +++ ChangeLog 24 Nov 2010 14:17:43 -0000 1.46
24 @@ -1,6 +1,9 @@
25 # ChangeLog for xfce-base/exo
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.45 2010/11/21 14:14:44 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.46 2010/11/24 14:17:43 ssuominen Exp $
29 +
30 + 24 Nov 2010; Samuli Suominen <ssuominen@g.o> exo-0.5.5.ebuild:
31 + Missing USE python for byte compiling wrt #346597 by Peter Volkov.
32
33 *exo-0.5.5 (21 Nov 2010)
34
35
36
37
38 1.2 xfce-base/exo/exo-0.5.5.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/exo-0.5.5.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/exo-0.5.5.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-base/exo/exo-0.5.5.ebuild?r1=1.1&r2=1.2
43
44 Index: exo-0.5.5.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.5.5.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- exo-0.5.5.ebuild 21 Nov 2010 14:14:44 -0000 1.1
51 +++ exo-0.5.5.ebuild 24 Nov 2010 14:17:43 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.5.5.ebuild,v 1.1 2010/11/21 14:14:44 ssuominen Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.5.5.ebuild,v 1.2 2010/11/24 14:17:43 ssuominen Exp $
57
58 EAPI=3
59
60 @@ -55,10 +55,10 @@
61
62 pkg_postinst() {
63 xfconf_pkg_postinst
64 - python_mod_optimize exo-0.5 pyexo.py
65 + use python && python_mod_optimize exo-0.5 pyexo.py
66 }
67
68 pkg_postrm() {
69 xfconf_pkg_postrm
70 - python_mod_cleanup exo-0.5 pyexo.py
71 + use python && python_mod_cleanup exo-0.5 pyexo.py
72 }