Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-base/xcb-proto/
Date: Tue, 03 May 2022 22:32:31
Message-Id: 1651617102.44810676e9db3573030a89ca3d0dc9b09b87130c.mattst88@gentoo
1 commit: 44810676e9db3573030a89ca3d0dc9b09b87130c
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 3 22:12:23 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue May 3 22:31:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44810676
7
8 x11-base/xcb-proto: Version bump to 1.15
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-base/xcb-proto/Manifest | 1 +
13 x11-base/xcb-proto/xcb-proto-1.15.ebuild | 51 ++++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/x11-base/xcb-proto/Manifest b/x11-base/xcb-proto/Manifest
17 index 8a02025c775e..00dd8fdf1c5e 100644
18 --- a/x11-base/xcb-proto/Manifest
19 +++ b/x11-base/xcb-proto/Manifest
20 @@ -1 +1,2 @@
21 DIST xcb-proto-1.14.1.tar.xz 143588 BLAKE2B 24983ec26632e93ef2d0c854cd41272925b6f3aab2642701232b73bc37d200d794c46f438e4a4102484e6ac9723e78c923b99cc78ada3541f43eaf0ad7ebc863 SHA512 140fbf48483bacc7f6b70fdcf76f9e4ff0e87df9cb3a071cea47d8fe4574407cdefcfbd674099014d297e5fc010748e71d8609fca4cc32e8b25c634f928b727d
22 +DIST xcb-proto-1.15.tar.xz 146628 BLAKE2B d7f38f1a415a7c70af372c64726e089ee454ffb981c031e4b8e93f345a1ada9dc40fb4e8b59adf553af8b4d9b7ef52730c9df56a0c24e53f98b3403346c7e810 SHA512 a333ac7c39f17ff2567419d09a9a77210c943a4e88d79eb152d416ae26bf6fb14e2446f9817abc806edd7aa3733bd4de5852b5ae90a25cbcc9d40e59c211aa36
23
24 diff --git a/x11-base/xcb-proto/xcb-proto-1.15.ebuild b/x11-base/xcb-proto/xcb-proto-1.15.ebuild
25 new file mode 100644
26 index 000000000000..a5d32e8abc35
27 --- /dev/null
28 +++ b/x11-base/xcb-proto/xcb-proto-1.15.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +XORG_TARBALL_SUFFIX="xz"
37 +XORG_MODULE=proto/
38 +XORG_MULTILIB=yes
39 +
40 +inherit python-r1 xorg-3
41 +
42 +DESCRIPTION="X C-language Bindings protocol headers"
43 +HOMEPAGE="https://xcb.freedesktop.org/ https://gitlab.freedesktop.org/xorg/proto/xcbproto"
44 +EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git"
45 +
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 +IUSE=""
48 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 +
50 +DEPEND=""
51 +RDEPEND="
52 + ${PYTHON_DEPS}
53 +"
54 +BDEPEND="
55 + ${PYTHON_DEPS}
56 + dev-libs/libxml2
57 +"
58 +
59 +ECONF_SOURCE="${S}"
60 +
61 +multilib_src_configure() {
62 + # Don't use Python to find sitedir here.
63 + PYTHON=true default
64 +}
65 +
66 +src_compile() {
67 + :
68 +}
69 +
70 +xcbgen_install() {
71 + # Use eclass to find sitedir instead.
72 + emake -C xcbgen install DESTDIR="${D}" pythondir="$(python_get_sitedir)"
73 + python_optimize
74 +}
75 +
76 +multilib_src_install() {
77 + # Restrict SUBDIRS to prevent xcbgen with empty sitedir.
78 + emake install DESTDIR="${D}" SUBDIRS=src
79 + multilib_is_native_abi && python_foreach_impl xcbgen_install
80 +}