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-libs/libxkbcommon/
Date: Thu, 31 Dec 2020 16:59:22
Message-Id: 1609433937.4b93c52cad6e9491f59b94fd6724283daca82e7d.mattst88@gentoo
1 commit: 4b93c52cad6e9491f59b94fd6724283daca82e7d
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 31 16:57:13 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 31 16:58:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b93c52c
7
8 x11-libs/libxkbcommon: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/libxkbcommon/Manifest | 2 -
13 .../libxkbcommon/libxkbcommon-0.10.0-r1.ebuild | 56 --------------------
14 x11-libs/libxkbcommon/libxkbcommon-1.0.1-r1.ebuild | 59 ----------------------
15 3 files changed, 117 deletions(-)
16
17 diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest
18 index ccafd71079b..68e582e9393 100644
19 --- a/x11-libs/libxkbcommon/Manifest
20 +++ b/x11-libs/libxkbcommon/Manifest
21 @@ -1,3 +1 @@
22 -DIST libxkbcommon-0.10.0.tar.xz 383788 BLAKE2B 0e2cc110c35a4d07cfd55a46a4cc30038bc296f74522beb97b72d0318799adb76fa514427640f286254de7aa59fb8b8c26de5d8fd52f7e09c5ba3521febb97bd SHA512 58c523b42a8ea0cae7322d453fbc5d4624374221246cb067074e2ff9820eef3ceea8686283136432cdf0842acfc0858c7b2d3954de234b6501092ae1d27c9e79
23 -DIST libxkbcommon-1.0.1.tar.xz 432692 BLAKE2B 151e9c2260b517e7e646defea8dfa1891af87aaeeebbf52d41d8e6b52c2c1d5079ca55da9e998300145c83718ce981be13c3fa35d8825bcde7846dcd330e9dfd SHA512 929be7b52fae360a696f01e0a8f3aa9b585ad99db975a88680ababf623e46f4d98e6f7590a2859c24060856f45b27e7249072702fbbf5a7bd0d4a10791e6d489
24 DIST libxkbcommon-1.0.3.tar.xz 432944 BLAKE2B 49dcefcc17cbbfe5623728e9852e700a623e07ad7e6df78c8d7c39784948eb230f9e141d8aaa1de94305cb552244fe54d384abbc8e57f5ec5846915b5ae484e3 SHA512 b05a2db0acd6628427baad1967979a161019dec90a078a926d41f4dfeffb84eab63e627803df1a401e42c8e48953d6c434ce08d7206eae21e890890f29b03d3c
25
26 diff --git a/x11-libs/libxkbcommon/libxkbcommon-0.10.0-r1.ebuild b/x11-libs/libxkbcommon/libxkbcommon-0.10.0-r1.ebuild
27 deleted file mode 100644
28 index 8378ce88a27..00000000000
29 --- a/x11-libs/libxkbcommon/libxkbcommon-0.10.0-r1.ebuild
30 +++ /dev/null
31 @@ -1,56 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -if [[ ${PV} = *9999* ]]; then
38 - GIT_ECLASS="git-r3"
39 - EGIT_REPO_URI="https://github.com/xkbcommon/${PN}"
40 -else
41 - SRC_URI="https://xkbcommon.org/download/${P}.tar.xz"
42 - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
43 -fi
44 -
45 -inherit meson multilib-minimal ${GIT_ECLASS}
46 -
47 -DESCRIPTION="keymap handling library for toolkits and window systems"
48 -HOMEPAGE="https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/"
49 -LICENSE="MIT"
50 -IUSE="X doc static-libs test"
51 -RESTRICT="!test? ( test )"
52 -SLOT="0"
53 -
54 -BDEPEND="
55 - sys-devel/bison
56 - doc? ( app-doc/doxygen )"
57 -RDEPEND="X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP},xkb] )"
58 -DEPEND="${RDEPEND}
59 - X? ( x11-base/xorg-proto )"
60 -
61 -src_unpack() {
62 - default
63 - [[ $PV = 9999* ]] && git-r3_src_unpack
64 -}
65 -
66 -multilib_src_configure() {
67 - local emesonargs=(
68 - -Ddefault_library="$(usex static-libs both shared)"
69 - -Dxkb-config-root="${EPREFIX}/usr/share/X11/xkb"
70 - -Denable-wayland=false # Demo applications
71 - $(meson_use X enable-x11)
72 - $(meson_use doc enable-docs)
73 - )
74 - meson_src_configure
75 -}
76 -
77 -multilib_src_compile() {
78 - meson_src_compile
79 -}
80 -
81 -multilib_src_test() {
82 - meson_src_test
83 -}
84 -
85 -multilib_src_install() {
86 - meson_src_install
87 -}
88
89 diff --git a/x11-libs/libxkbcommon/libxkbcommon-1.0.1-r1.ebuild b/x11-libs/libxkbcommon/libxkbcommon-1.0.1-r1.ebuild
90 deleted file mode 100644
91 index 4c225689f6c..00000000000
92 --- a/x11-libs/libxkbcommon/libxkbcommon-1.0.1-r1.ebuild
93 +++ /dev/null
94 @@ -1,59 +0,0 @@
95 -# Copyright 1999-2020 Gentoo Authors
96 -# Distributed under the terms of the GNU General Public License v2
97 -
98 -EAPI=7
99 -
100 -if [[ ${PV} = *9999* ]]; then
101 - GIT_ECLASS="git-r3"
102 - EGIT_REPO_URI="https://github.com/xkbcommon/${PN}"
103 -else
104 - SRC_URI="https://xkbcommon.org/download/${P}.tar.xz"
105 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
106 -fi
107 -
108 -inherit meson multilib-minimal ${GIT_ECLASS}
109 -
110 -DESCRIPTION="keymap handling library for toolkits and window systems"
111 -HOMEPAGE="https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/"
112 -LICENSE="MIT"
113 -IUSE="X doc static-libs test"
114 -RESTRICT="!test? ( test )"
115 -SLOT="0"
116 -
117 -BDEPEND="
118 - sys-devel/bison
119 - doc? ( app-doc/doxygen )"
120 -RDEPEND="
121 - X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP},xkb] )
122 - dev-libs/libxml2[${MULTILIB_USEDEP}]
123 -"
124 -DEPEND="${RDEPEND}
125 - X? ( x11-base/xorg-proto )"
126 -
127 -src_unpack() {
128 - default
129 - [[ $PV = 9999* ]] && git-r3_src_unpack
130 -}
131 -
132 -multilib_src_configure() {
133 - local emesonargs=(
134 - -Ddefault_library="$(usex static-libs both shared)"
135 - -Dxkb-config-root="${EPREFIX}/usr/share/X11/xkb"
136 - -Denable-wayland=false # Demo applications
137 - $(meson_use X enable-x11)
138 - $(meson_use doc enable-docs)
139 - )
140 - meson_src_configure
141 -}
142 -
143 -multilib_src_compile() {
144 - meson_src_compile
145 -}
146 -
147 -multilib_src_test() {
148 - meson_src_test
149 -}
150 -
151 -multilib_src_install() {
152 - meson_src_install
153 -}