Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-proto/xcb-proto: ChangeLog xcb-proto-1.6.ebuild
Date: Sun, 25 Apr 2010 14:57:05
Message-Id: 20100425145701.EE5762C04C@corvid.gentoo.org
1 chithanh 10/04/25 14:57:01
2
3 Modified: ChangeLog xcb-proto-1.6.ebuild
4 Log:
5 Improve Python-related code, patch by arfrever, bug 317035
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.45 x11-proto/xcb-proto/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/xcb-proto/ChangeLog?rev=1.45&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/xcb-proto/ChangeLog?rev=1.45&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/xcb-proto/ChangeLog?r1=1.44&r2=1.45
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v
18 retrieving revision 1.44
19 retrieving revision 1.45
20 diff -u -r1.44 -r1.45
21 --- ChangeLog 18 Apr 2010 19:51:27 -0000 1.44
22 +++ ChangeLog 25 Apr 2010 14:57:01 -0000 1.45
23 @@ -1,6 +1,10 @@
24 # ChangeLog for x11-proto/xcb-proto
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.44 2010/04/18 19:51:27 maekke Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.45 2010/04/25 14:57:01 chithanh Exp $
28 +
29 + 25 Apr 2010; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
30 + xcb-proto-1.6.ebuild:
31 + Improve Python-related code, patch by arfrever, bug 317035
32
33 18 Apr 2010; Markus Meier <maekke@g.o> xcb-proto-1.6.ebuild:
34 arm stable, bug #308521
35
36
37
38 1.7 x11-proto/xcb-proto/xcb-proto-1.6.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.6.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.6.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.6.ebuild?r1=1.6&r2=1.7
43
44 Index: xcb-proto-1.6.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.6.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- xcb-proto-1.6.ebuild 18 Apr 2010 19:51:27 -0000 1.6
51 +++ xcb-proto-1.6.ebuild 25 Apr 2010 14:57:01 -0000 1.7
52 @@ -1,8 +1,10 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.6.ebuild,v 1.6 2010/04/18 19:51:27 maekke Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.6.ebuild,v 1.7 2010/04/25 14:57:01 chithanh Exp $
57
58 -inherit x-modular
59 +PYTHON_DEPEND="2:2.5"
60 +
61 +inherit python x-modular
62
63 DESCRIPTION="X C-language Bindings protocol headers"
64 HOMEPAGE="http://xcb.freedesktop.org/"
65 @@ -15,5 +17,8 @@
66
67 RDEPEND=""
68 DEPEND="${RDEPEND}
69 - dev-libs/libxml2
70 - >=dev-lang/python-2.5"
71 + dev-libs/libxml2"
72 +
73 +pkg_setup() {
74 + python_set_active_version 2
75 +}