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: Thu, 31 Dec 2020 16:59:22
Message-Id: 1609433938.33a49e7dec880dc044de67ce3e295c74ea16663e.mattst88@gentoo
1 commit: 33a49e7dec880dc044de67ce3e295c74ea16663e
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 31 16:57:37 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 31 16:58:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33a49e7d
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.30.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 a3558a03e45..0530faf16c4 100644
18 --- a/x11-misc/xkeyboard-config/Manifest
19 +++ b/x11-misc/xkeyboard-config/Manifest
20 @@ -1,2 +1 @@
21 -DIST xkeyboard-config-2.30.tar.bz2 1689137 BLAKE2B 54ba0a3a82d65f4cf15c45aa500bd8a44865c9ce845d5bc1ae85d3544a384622c580baa119b8882defa9868d8210697153f868a273a38852d938bf318ed09c3b SHA512 2d775dcaab49d80f62b8eaadc9be406b42c9a3643d3a360f864a462c61865abce67d0a8a80772d54f8136603114c61b5168fd06771f9c132411911914abb1ea4
22 DIST xkeyboard-config-2.31.tar.bz2 1705328 BLAKE2B a6fe680a8f32f1ca58363faeb0955ae621712f045570f66ce1c211093f0021f60e7fa29076b9dac80ee6c07ef1e4abb738ad64fd01a75ad776e582e2dbcc286e SHA512 f6f260253e1757640cc0591f9efb55ad5d08023a53ec2f0b468465b36bae0aae4f78dc4d6e603c95aa21c9993d9a42bd641edf2017be3183921a0b1c125f4669
23
24 diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-2.30.ebuild b/x11-misc/xkeyboard-config/xkeyboard-config-2.30.ebuild
25 deleted file mode 100644
26 index f6627f05959..00000000000
27 --- a/x11-misc/xkeyboard-config/xkeyboard-config-2.30.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{6,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 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-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 -}