Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/xpyb: xpyb-1.3.1-r2.ebuild ChangeLog
Date: Wed, 22 May 2013 09:17:26
Message-Id: 20130522091723.2046C2171D@flycatcher.gentoo.org
1 maksbotan 13/05/22 09:17:23
2
3 Modified: ChangeLog
4 Added: xpyb-1.3.1-r2.ebuild
5 Log:
6 Enable installation of python module for multiple python ABIs, bug #470902. Use '--enable-selinux' instead of wrong '--enable-xselinux'.
7
8 (Portage version: 2.1.12/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
9
10 Revision Changes Path
11 1.39 x11-libs/xpyb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpyb/ChangeLog?rev=1.39&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpyb/ChangeLog?rev=1.39&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpyb/ChangeLog?r1=1.38&r2=1.39
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/xpyb/ChangeLog,v
20 retrieving revision 1.38
21 retrieving revision 1.39
22 diff -u -r1.38 -r1.39
23 --- ChangeLog 11 May 2013 07:26:11 -0000 1.38
24 +++ ChangeLog 22 May 2013 09:17:22 -0000 1.39
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-libs/xpyb
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/xpyb/ChangeLog,v 1.38 2013/05/11 07:26:11 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xpyb/ChangeLog,v 1.39 2013/05/22 09:17:22 maksbotan Exp $
30 +
31 +*xpyb-1.3.1-r2 (22 May 2013)
32 +
33 + 22 May 2013; Maxim Koltsov <maksbotan@g.o> +files/xpyb-python.patch,
34 + +xpyb-1.3.1-r2.ebuild:
35 + Enable installation of python module for multiple python ABIs, bug #470902.
36 + Use '--enable-selinux' instead of wrong '--enable-xselinux'.
37
38 11 May 2013; Patrick Lauer <patrick@g.o> xpyb-1.2-r1.ebuild:
39 Fix inherit
40
41
42
43 1.1 x11-libs/xpyb/xpyb-1.3.1-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpyb/xpyb-1.3.1-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpyb/xpyb-1.3.1-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xpyb-1.3.1-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/xpyb/xpyb-1.3.1-r2.ebuild,v 1.1 2013/05/22 09:17:22 maksbotan Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_6,2_7} )
57 AUTOTOOLS_AUTORECONF=1
58
59 inherit xorg-2 python-r1
60
61 #EGIT_REPO_URI="git://anongit.freedesktop.org/git/xcb/xpyb"
62 SRC_URI="http://xcb.freedesktop.org/dist/${P}.tar.bz2"
63 DESCRIPTION="XCB-based Python bindings for the X Window System"
64 HOMEPAGE="http://xcb.freedesktop.org/"
65
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
67 IUSE="selinux"
68
69 RDEPEND=">=x11-libs/libxcb-1.7
70 >=x11-proto/xcb-proto-1.7.1[${PYTHON_USEDEP}]
71 ${PYTHON_DEPS}"
72 DEPEND="${RDEPEND}"
73
74 PATCHES=( "${FILESDIR}"/${PN}-python.patch )
75 DOCS=( NEWS README )
76
77 pkg_setup() {
78 xorg-2_pkg_setup
79 XORG_CONFIGURE_OPTIONS=(
80 $(use_enable selinux)
81 )
82 }
83
84 src_configure() {
85 python_foreach_impl xorg-2_src_configure
86 }
87
88 src_compile() {
89 python_foreach_impl xorg-2_src_compile
90 }
91
92 src_install() {
93 python_foreach_impl xorg-2_src_install
94 }