summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2010-04-25 14:57:01 +0000
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2010-04-25 14:57:01 +0000
commita8e8ecce58ddb8788d4c04c745c35dfefe616f89 (patch)
tree40bbedffe399a7e7dc0a4f633d5d684e631542a5 /x11-proto/xcb-proto
parentImprove Python-related code, patch by arfrever, bug 316995 (diff)
downloadgentoo-2-a8e8ecce58ddb8788d4c04c745c35dfefe616f89.tar.gz
gentoo-2-a8e8ecce58ddb8788d4c04c745c35dfefe616f89.tar.bz2
gentoo-2-a8e8ecce58ddb8788d4c04c745c35dfefe616f89.zip
Improve Python-related code, patch by arfrever, bug 317035
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-proto/xcb-proto')
-rw-r--r--x11-proto/xcb-proto/ChangeLog6
-rw-r--r--x11-proto/xcb-proto/xcb-proto-1.6.ebuild13
2 files changed, 14 insertions, 5 deletions
diff --git a/x11-proto/xcb-proto/ChangeLog b/x11-proto/xcb-proto/ChangeLog
index 50efa0e40140..c0a5947bcf32 100644
--- a/x11-proto/xcb-proto/ChangeLog
+++ b/x11-proto/xcb-proto/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-proto/xcb-proto
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.44 2010/04/18 19:51:27 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.45 2010/04/25 14:57:01 chithanh Exp $
+
+ 25 Apr 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+ xcb-proto-1.6.ebuild:
+ Improve Python-related code, patch by arfrever, bug 317035
18 Apr 2010; Markus Meier <maekke@gentoo.org> xcb-proto-1.6.ebuild:
arm stable, bug #308521
diff --git a/x11-proto/xcb-proto/xcb-proto-1.6.ebuild b/x11-proto/xcb-proto/xcb-proto-1.6.ebuild
index 4ba7bff4bf1a..e26b157ff407 100644
--- a/x11-proto/xcb-proto/xcb-proto-1.6.ebuild
+++ b/x11-proto/xcb-proto/xcb-proto-1.6.ebuild
@@ -1,8 +1,10 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $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 $
+# $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 $
-inherit x-modular
+PYTHON_DEPEND="2:2.5"
+
+inherit python x-modular
DESCRIPTION="X C-language Bindings protocol headers"
HOMEPAGE="http://xcb.freedesktop.org/"
@@ -15,5 +17,8 @@ IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
- dev-libs/libxml2
- >=dev-lang/python-2.5"
+ dev-libs/libxml2"
+
+pkg_setup() {
+ python_set_active_version 2
+}