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-proto/xcb-proto: xcb-proto-1.8-r3.ebuild ChangeLog
Date: Wed, 22 May 2013 08:57:21
Message-Id: 20130522085714.068FD2171D@flycatcher.gentoo.org
1 maksbotan 13/05/22 08:57:13
2
3 Modified: ChangeLog
4 Added: xcb-proto-1.8-r3.ebuild
5 Log:
6 Enable installation of python module for multiple python ABIs, bug #470900
7
8 (Portage version: 2.1.12/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
9
10 Revision Changes Path
11 1.109 x11-proto/xcb-proto/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/ChangeLog?rev=1.109&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/ChangeLog?rev=1.109&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/ChangeLog?r1=1.108&r2=1.109
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v
20 retrieving revision 1.108
21 retrieving revision 1.109
22 diff -u -r1.108 -r1.109
23 --- ChangeLog 10 Apr 2013 19:52:50 -0000 1.108
24 +++ ChangeLog 22 May 2013 08:57:13 -0000 1.109
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-proto/xcb-proto
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.108 2013/04/10 19:52:50 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.109 2013/05/22 08:57:13 maksbotan Exp $
30 +
31 +*xcb-proto-1.8-r3 (22 May 2013)
32 +
33 + 22 May 2013; Maxim Koltsov <maksbotan@g.o> +xcb-proto-1.8-r3.ebuild:
34 + Enable installation of python module for multiple python ABIs, bug #470900
35
36 10 Apr 2013; Agostino Sarubbo <ago@g.o> xcb-proto-1.8-r1.ebuild:
37 Stable for s390, wrt bug #458992
38
39
40
41 1.1 x11-proto/xcb-proto/xcb-proto-1.8-r3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.8-r3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.8-r3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xcb-proto-1.8-r3.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.8-r3.ebuild,v 1.1 2013/05/22 08:57:13 maksbotan Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} )
55 XORG_MULTILIB=yes
56
57 inherit python-r1 xorg-2
58
59 DESCRIPTION="X C-language Bindings protocol headers"
60 HOMEPAGE="http://xcb.freedesktop.org/"
61 EGIT_REPO_URI="git://anongit.freedesktop.org/git/xcb/proto"
62 [[ ${PV} != 9999* ]] && \
63 SRC_URI="http://xcb.freedesktop.org/dist/${P}.tar.bz2"
64
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
66 IUSE=""
67
68 RDEPEND="${PYTHON_DEPS}"
69 DEPEND="${RDEPEND}
70 dev-libs/libxml2"
71
72 src_configure() {
73 xorg-2_src_configure
74 #Note: multilib is not supported with python, therefore use only one ABI
75 python_foreach_impl autotools-utils_src_configure
76 }
77
78 src_compile() {
79 xorg-2_src_compile
80
81 python_foreach_impl autotools-utils_src_compile -C xcbgen \
82 top_builddir="${WORKDIR}/${P}-${ARCH}"
83 }
84
85 src_install() {
86 xorg-2_src_install
87
88 python_foreach_impl autotools-utils_src_install -C xcbgen \
89 top_builddir="${WORKDIR}/${P}-${ARCH}"
90 }
91
92 pkg_postinst() {
93 ewarn "Please rebuild both libxcb and xcb-util if you are upgrading from version 1.6"
94 }