Gentoo Archives: gentoo-commits

From: "Matt Turner (mattst88)" <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-proto/xcb-proto: xcb-proto-1.10.ebuild ChangeLog
Date: Sun, 26 Jan 2014 19:08:16
Message-Id: 20140126190813.22FE82004C@flycatcher.gentoo.org
1 mattst88 14/01/26 19:08:13
2
3 Modified: ChangeLog
4 Added: xcb-proto-1.10.ebuild
5 Log:
6 Version bump to 1.10, bug 496802.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
9
10 Revision Changes Path
11 1.127 x11-proto/xcb-proto/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/ChangeLog?rev=1.127&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/ChangeLog?rev=1.127&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/ChangeLog?r1=1.126&r2=1.127
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v
20 retrieving revision 1.126
21 retrieving revision 1.127
22 diff -u -r1.126 -r1.127
23 --- ChangeLog 12 Nov 2013 02:38:27 -0000 1.126
24 +++ ChangeLog 26 Jan 2014 19:08:12 -0000 1.127
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.126 2013/11/12 02:38:27 mattst88 Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/ChangeLog,v 1.127 2014/01/26 19:08:12 mattst88 Exp $
31 +
32 +*xcb-proto-1.10 (26 Jan 2014)
33 +
34 + 26 Jan 2014; Matt Turner <mattst88@g.o> +xcb-proto-1.10.ebuild:
35 + Version bump to 1.10, bug 496802.
36
37 *xcb-proto-1.9-r1 (12 Nov 2013)
38
39
40
41
42 1.1 x11-proto/xcb-proto/xcb-proto-1.10.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.10.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.10.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xcb-proto-1.10.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-proto/xcb-proto/xcb-proto-1.10.ebuild,v 1.1 2014/01/26 19:08:12 mattst88 Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
56 XORG_MULTILIB=yes
57
58 inherit python-r1 xorg-2
59
60 DESCRIPTION="X C-language Bindings protocol headers"
61 HOMEPAGE="http://xcb.freedesktop.org/"
62 EGIT_REPO_URI="git://anongit.freedesktop.org/git/xcb/proto"
63 [[ ${PV} != 9999* ]] && \
64 SRC_URI="http://xcb.freedesktop.org/dist/${P}.tar.bz2"
65
66 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"
67 IUSE=""
68
69 RDEPEND="${PYTHON_DEPS}"
70 DEPEND="${RDEPEND}
71 dev-libs/libxml2"
72
73 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
74
75 src_configure() {
76 python_export_best
77 xorg-2_src_configure
78 #Note: multilib is not supported with python, therefore use only one ABI
79 python_parallel_foreach_impl autotools-utils_src_configure
80 }
81
82 src_compile() {
83 xorg-2_src_compile
84
85 python_foreach_impl autotools-utils_src_compile -C xcbgen \
86 top_builddir="${WORKDIR}/${P}-${ABI:-${DEFAULT_ABI}}"
87 }
88
89 src_install() {
90 xorg-2_src_install
91
92 python_foreach_impl autotools-utils_src_install -C xcbgen \
93 top_builddir="${WORKDIR}/${P}-${ABI:-${DEFAULT_ABI}}"
94
95 sed -i -e '/pythondir/s:=.*$:=/dev/null:' \
96 "${ED}"/usr/lib*/pkgconfig/xcb-proto.pc || die
97 }