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: Thu, 14 May 2020 21:33:06
Message-Id: 1589491965.77d172cb5dc95ab4748cb7d071b193322a566f15.mattst88@gentoo
1 commit: 77d172cb5dc95ab4748cb7d071b193322a566f15
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 14 21:30:39 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu May 14 21:32:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d172cb
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 | 1 -
13 x11-base/xcb-proto/xcb-proto-1.13.ebuild | 64 --------------------------------
14 2 files changed, 65 deletions(-)
15
16 diff --git a/x11-base/xcb-proto/Manifest b/x11-base/xcb-proto/Manifest
17 index 8b326f7f04e..47e7fa482af 100644
18 --- a/x11-base/xcb-proto/Manifest
19 +++ b/x11-base/xcb-proto/Manifest
20 @@ -1,2 +1 @@
21 -DIST xcb-proto-1.13.tar.bz2 151981 BLAKE2B 04d90838f8a892103e6d7aa807f1b0b6794f1538c6c986ad3cba67cff3a963ff680e45c2137c5d6330736a3aa1a387d61fc247f23487de9dada2f4013590b4a1 SHA512 002aa2aa0ad503977e03419c6f136f1e3aa8c787916830ce6d6be8f81ca99edc1d8fc5f71ce8c592b490cc767bf6567695f0bafe55fe3f743076bcddbaac07f7
22 DIST xcb-proto-1.14.tar.xz 143384 BLAKE2B 60212b0f0ce039a64a2e6cbbc78564eeffc57cff20987b37dc780d8d97ae888a7dbfbbaadc6e0e4bedfc5d1e360f16318e3825ad8406de668d9c7c66cf7f4b5d SHA512 de66d568163b6da2be9d6c59984f3afa3acd119a781378638045fd68018665ef5c9af98f024e9962ba3eb7c7a4d85c27ba70ffafceb2324ccc6940f34de16690
23
24 diff --git a/x11-base/xcb-proto/xcb-proto-1.13.ebuild b/x11-base/xcb-proto/xcb-proto-1.13.ebuild
25 deleted file mode 100644
26 index 6313d75278e..00000000000
27 --- a/x11-base/xcb-proto/xcb-proto-1.13.ebuild
28 +++ /dev/null
29 @@ -1,64 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python{3_6,3_7,3_8} )
36 -XORG_MULTILIB=yes
37 -XORG_STATIC=no
38 -
39 -inherit python-r1 xorg-2
40 -
41 -DESCRIPTION="X C-language Bindings protocol headers"
42 -HOMEPAGE="https://xcb.freedesktop.org/ https://gitlab.freedesktop.org/xorg/proto/xcbproto"
43 -EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git"
44 -[[ ${PV} != 9999* ]] && \
45 - SRC_URI="https://xcb.freedesktop.org/dist/${P}.tar.bz2"
46 -
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 -IUSE=""
49 -
50 -RDEPEND="${PYTHON_DEPS}"
51 -DEPEND="${RDEPEND}
52 - dev-libs/libxml2"
53 -
54 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
55 -
56 -src_configure() {
57 - python_setup
58 - xorg-2_src_configure
59 -}
60 -
61 -multilib_src_configure() {
62 - autotools-utils_src_configure
63 -
64 - if multilib_is_native_abi; then
65 - python_foreach_impl autotools-utils_src_configure
66 - fi
67 -}
68 -
69 -multilib_src_compile() {
70 - default
71 -
72 - if multilib_is_native_abi; then
73 - python_foreach_impl autotools-utils_src_compile -C xcbgen \
74 - top_builddir="${BUILD_DIR}"
75 - fi
76 -}
77 -
78 -src_install() {
79 - xorg-2_src_install
80 -
81 - # pkg-config file hardcodes python sitedir, bug 486512
82 - sed -i -e '/pythondir/s:=.*$:=/dev/null:' \
83 - "${ED}"/usr/lib*/pkgconfig/xcb-proto.pc || die
84 -}
85 -
86 -multilib_src_install() {
87 - default
88 -
89 - if multilib_is_native_abi; then
90 - python_foreach_impl autotools-utils_src_install -C xcbgen \
91 - top_builddir="${BUILD_DIR}"
92 - fi
93 -}