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: Fri, 24 Jun 2022 16:26:34
Message-Id: 1656087956.a87e843a6c09d18f6d8e373ecaf4430b677b9921.mattst88@gentoo
1 commit: a87e843a6c09d18f6d8e373ecaf4430b677b9921
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 16:17:56 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 16:25:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a87e843a
7
8 x11-base/xcb-proto: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-base/xcb-proto/Manifest | 2 --
13 x11-base/xcb-proto/xcb-proto-1.14.1.ebuild | 51 ------------------------------
14 x11-base/xcb-proto/xcb-proto-1.15.1.ebuild | 51 ------------------------------
15 3 files changed, 104 deletions(-)
16
17 diff --git a/x11-base/xcb-proto/Manifest b/x11-base/xcb-proto/Manifest
18 index 664fd7b8ff63..63f328ece64a 100644
19 --- a/x11-base/xcb-proto/Manifest
20 +++ b/x11-base/xcb-proto/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST xcb-proto-1.14.1.tar.xz 143588 BLAKE2B 24983ec26632e93ef2d0c854cd41272925b6f3aab2642701232b73bc37d200d794c46f438e4a4102484e6ac9723e78c923b99cc78ada3541f43eaf0ad7ebc863 SHA512 140fbf48483bacc7f6b70fdcf76f9e4ff0e87df9cb3a071cea47d8fe4574407cdefcfbd674099014d297e5fc010748e71d8609fca4cc32e8b25c634f928b727d
23 -DIST xcb-proto-1.15.1.tar.xz 147908 BLAKE2B a85a40f725b4704f23a407862626b34cdaeaecb66877126dbbeadc6993da12a0687d9965d1e72144683e15be53b7fda151480cbe7e2caa572f3b029d9c45a416 SHA512 56fd505e567e1d39b4d46d0e5f79aeb90144c9b1a4429b2f51cd326ec0dea2a5fda5e2ebfe48af0da2781a4b1e29d9a91a4e0da662db5e35a701eac2e5ec1684
24 DIST xcb-proto-1.15.2.tar.xz 148108 BLAKE2B 0d6cc87ea0d2de594ba11b11255779e90d3c7507f0002453b3d1b2ac73fb604e5ee52e516bbcf76bce2a89027f8c8de6289d21aa2bb23d7d3e2ee77211b54946 SHA512 9d0b2f0a4dbbf2d64e32ff4658d1663e13d7e5f1bffc1e8d45be7b9dd5bab46e29fc1c2f6e66a7a569e374ba6756faf3c39b0b5e5560df6d7f8b68beec97659d
25 DIST xcb-proto-1.15.tar.xz 146628 BLAKE2B d7f38f1a415a7c70af372c64726e089ee454ffb981c031e4b8e93f345a1ada9dc40fb4e8b59adf553af8b4d9b7ef52730c9df56a0c24e53f98b3403346c7e810 SHA512 a333ac7c39f17ff2567419d09a9a77210c943a4e88d79eb152d416ae26bf6fb14e2446f9817abc806edd7aa3733bd4de5852b5ae90a25cbcc9d40e59c211aa36
26
27 diff --git a/x11-base/xcb-proto/xcb-proto-1.14.1.ebuild b/x11-base/xcb-proto/xcb-proto-1.14.1.ebuild
28 deleted file mode 100644
29 index 26b96ef6fdbb..000000000000
30 --- a/x11-base/xcb-proto/xcb-proto-1.14.1.ebuild
31 +++ /dev/null
32 @@ -1,51 +0,0 @@
33 -# Copyright 1999-2022 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python3_{8..10} )
39 -XORG_TARBALL_SUFFIX="xz"
40 -XORG_MODULE=proto/
41 -XORG_MULTILIB=yes
42 -
43 -inherit python-r1 xorg-3
44 -
45 -DESCRIPTION="X C-language Bindings protocol headers"
46 -HOMEPAGE="https://xcb.freedesktop.org/ https://gitlab.freedesktop.org/xorg/proto/xcbproto"
47 -EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git"
48 -
49 -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"
50 -IUSE=""
51 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 -
53 -DEPEND=""
54 -RDEPEND="
55 - ${PYTHON_DEPS}
56 -"
57 -BDEPEND="
58 - ${PYTHON_DEPS}
59 - dev-libs/libxml2
60 -"
61 -
62 -ECONF_SOURCE="${S}"
63 -
64 -multilib_src_configure() {
65 - # Don't use Python to find sitedir here.
66 - PYTHON=true default
67 -}
68 -
69 -src_compile() {
70 - :
71 -}
72 -
73 -xcbgen_install() {
74 - # Use eclass to find sitedir instead.
75 - emake -C xcbgen install DESTDIR="${D}" pythondir="$(python_get_sitedir)"
76 - python_optimize
77 -}
78 -
79 -multilib_src_install() {
80 - # Restrict SUBDIRS to prevent xcbgen with empty sitedir.
81 - emake install DESTDIR="${D}" SUBDIRS=src
82 - multilib_is_native_abi && python_foreach_impl xcbgen_install
83 -}
84
85 diff --git a/x11-base/xcb-proto/xcb-proto-1.15.1.ebuild b/x11-base/xcb-proto/xcb-proto-1.15.1.ebuild
86 deleted file mode 100644
87 index 6340da91f79c..000000000000
88 --- a/x11-base/xcb-proto/xcb-proto-1.15.1.ebuild
89 +++ /dev/null
90 @@ -1,51 +0,0 @@
91 -# Copyright 1999-2022 Gentoo Authors
92 -# Distributed under the terms of the GNU General Public License v2
93 -
94 -EAPI=7
95 -
96 -PYTHON_COMPAT=( python3_{8..11} )
97 -XORG_TARBALL_SUFFIX="xz"
98 -XORG_MODULE=proto/
99 -XORG_MULTILIB=yes
100 -
101 -inherit python-r1 xorg-3
102 -
103 -DESCRIPTION="X C-language Bindings protocol headers"
104 -HOMEPAGE="https://xcb.freedesktop.org/ https://gitlab.freedesktop.org/xorg/proto/xcbproto"
105 -EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git"
106 -
107 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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"
108 -IUSE=""
109 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
110 -
111 -DEPEND=""
112 -RDEPEND="
113 - ${PYTHON_DEPS}
114 -"
115 -BDEPEND="
116 - ${PYTHON_DEPS}
117 - dev-libs/libxml2
118 -"
119 -
120 -ECONF_SOURCE="${S}"
121 -
122 -multilib_src_configure() {
123 - # Don't use Python to find sitedir here.
124 - PYTHON=true default
125 -}
126 -
127 -src_compile() {
128 - :
129 -}
130 -
131 -xcbgen_install() {
132 - # Use eclass to find sitedir instead.
133 - emake -C xcbgen install DESTDIR="${D}" pythondir="$(python_get_sitedir)"
134 - python_optimize
135 -}
136 -
137 -multilib_src_install() {
138 - # Restrict SUBDIRS to prevent xcbgen with empty sitedir.
139 - emake install DESTDIR="${D}" SUBDIRS=src
140 - multilib_is_native_abi && python_foreach_impl xcbgen_install
141 -}