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-misc/xkeyboard-config/
Date: Sat, 29 May 2021 18:16:54
Message-Id: 1622312184.d82c0dc3baa894088a6cf5493fe9e471602bf5a2.mattst88@gentoo
1 commit: d82c0dc3baa894088a6cf5493fe9e471602bf5a2
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 29 18:15:27 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat May 29 18:16:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d82c0dc3
7
8 x11-misc/xkeyboard-config: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-misc/xkeyboard-config/Manifest | 1 -
13 .../xkeyboard-config/xkeyboard-config-2.31.ebuild | 58 ----------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/x11-misc/xkeyboard-config/Manifest b/x11-misc/xkeyboard-config/Manifest
17 index 32d90d595ae..00f850e111c 100644
18 --- a/x11-misc/xkeyboard-config/Manifest
19 +++ b/x11-misc/xkeyboard-config/Manifest
20 @@ -1,2 +1 @@
21 -DIST xkeyboard-config-2.31.tar.bz2 1705328 BLAKE2B a6fe680a8f32f1ca58363faeb0955ae621712f045570f66ce1c211093f0021f60e7fa29076b9dac80ee6c07ef1e4abb738ad64fd01a75ad776e582e2dbcc286e SHA512 f6f260253e1757640cc0591f9efb55ad5d08023a53ec2f0b468465b36bae0aae4f78dc4d6e603c95aa21c9993d9a42bd641edf2017be3183921a0b1c125f4669
22 DIST xkeyboard-config-2.32.tar.bz2 1742570 BLAKE2B 98374e1bbbeaf24268754df8f050c663f8d07cec770c8bb86cb11bc434f6463acc9221b75b8f5dec79c8e47ac9e77deeb919a8bd3377ba712aac1fe1ce64ccc8 SHA512 c082a86efcf69ab50454875686b9b4c388cf48002de3728331de3c09c1349a38c9b9ad8ecace2215061c0c775e59c3dd230fffe3f24db63790aa71dc8eff8dea
23
24 diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-2.31.ebuild b/x11-misc/xkeyboard-config/xkeyboard-config-2.31.ebuild
25 deleted file mode 100644
26 index fd5be0d8560..00000000000
27 --- a/x11-misc/xkeyboard-config/xkeyboard-config-2.31.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7,8,9} )
36 -inherit python-any-r1
37 -
38 -DESCRIPTION="X keyboard configuration database"
39 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/XKeyboardConfig https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config"
40 -
41 -if [[ ${PV} == 9999 ]]; then
42 - EGIT_REPO_URI="https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config.git"
43 - inherit autotools git-r3
44 - # x11-misc/util-macros only required on live ebuilds
45 - LIVE_DEPEND=">=x11-misc/util-macros-1.18"
46 -else
47 - SRC_URI="https://www.x.org/releases/individual/data/${PN}/${P}.tar.bz2"
48 - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
49 -fi
50 -
51 -LICENSE="MIT"
52 -SLOT="0"
53 -IUSE=""
54 -
55 -BDEPEND="
56 - ${PYTHON_DEPS}
57 - dev-util/intltool
58 - sys-devel/gettext
59 - virtual/pkgconfig
60 -"
61 -RDEPEND=""
62 -DEPEND="${LIVE_DEPEND}"
63 -
64 -pkg_setup() {
65 - python-any-r1_pkg_setup
66 -}
67 -
68 -src_prepare() {
69 - default
70 - [[ ${PV} == 9999 ]] && eautoreconf
71 -}
72 -
73 -src_configure() {
74 - local econfargs=(
75 - --with-xkb-base="${EPREFIX}/usr/share/X11/xkb"
76 - --enable-compat-rules
77 - # do not check for runtime deps
78 - --disable-runtime-deps
79 - --with-xkb-rules-symlink=xorg
80 - )
81 -
82 - econf "${econfargs[@]}"
83 -}
84 -
85 -src_test() {
86 - :;
87 -}