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: Wed, 11 Mar 2020 18:42:17
Message-Id: 1583952101.bce3f8329bd5d0321c6cf5926ab61421b97e4384.mattst88@gentoo
1 commit: bce3f8329bd5d0321c6cf5926ab61421b97e4384
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 11 18:37:00 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 11 18:41:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce3f832
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 | 1 -
13 x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild | 55 -------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest
17 index 6b802477bb6..570598248cf 100644
18 --- a/x11-libs/libxkbcommon/Manifest
19 +++ b/x11-libs/libxkbcommon/Manifest
20 @@ -1,2 +1 @@
21 DIST libxkbcommon-0.10.0.tar.xz 383788 BLAKE2B 0e2cc110c35a4d07cfd55a46a4cc30038bc296f74522beb97b72d0318799adb76fa514427640f286254de7aa59fb8b8c26de5d8fd52f7e09c5ba3521febb97bd SHA512 58c523b42a8ea0cae7322d453fbc5d4624374221246cb067074e2ff9820eef3ceea8686283136432cdf0842acfc0858c7b2d3954de234b6501092ae1d27c9e79
22 -DIST libxkbcommon-0.9.1.tar.xz 376164 BLAKE2B 16c95081136ea9ce742f494ae2192cce815f3fb4a3d33d3e525f8ad61f1f720fa6bfe74088a9ab88f3c6ef9cdf78c4d8d4dc87e7478fd84e4b09e03a337efbdf SHA512 8d4551a06e7dd4936633f544409401dc33f8f1900adb5daa6403615c71f321d17212db739f89a5b3e393d729b3f33167691404849a25d5526b403fd9ec3e8878
23
24 diff --git a/x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild b/x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild
25 deleted file mode 100644
26 index c1e2382ee1e..00000000000
27 --- a/x11-libs/libxkbcommon/libxkbcommon-0.9.1.ebuild
28 +++ /dev/null
29 @@ -1,55 +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 -if [[ ${PV} = *9999* ]]; then
36 - GIT_ECLASS="git-r3"
37 - EGIT_REPO_URI="https://github.com/xkbcommon/${PN}"
38 -else
39 - SRC_URI="https://xkbcommon.org/download/${P}.tar.xz"
40 - KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
41 -fi
42 -
43 -inherit meson multilib-minimal ${GIT_ECLASS}
44 -
45 -DESCRIPTION="keymap handling library for toolkits and window systems"
46 -HOMEPAGE="https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/"
47 -LICENSE="MIT"
48 -IUSE="X doc test"
49 -RESTRICT="!test? ( test )"
50 -SLOT="0"
51 -
52 -BDEPEND="
53 - sys-devel/bison
54 - doc? ( app-doc/doxygen )"
55 -RDEPEND="X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP},xkb] )"
56 -DEPEND="${RDEPEND}
57 - X? ( x11-base/xorg-proto )"
58 -
59 -src_unpack() {
60 - default
61 - [[ $PV = 9999* ]] && git-r3_src_unpack
62 -}
63 -
64 -multilib_src_configure() {
65 - local emesonargs=(
66 - -Dxkb-config-root="${EPREFIX}/usr/share/X11/xkb"
67 - -Denable-wayland=false # Demo applications
68 - $(meson_use X enable-x11)
69 - $(meson_use doc enable-docs)
70 - )
71 - meson_src_configure
72 -}
73 -
74 -multilib_src_compile() {
75 - meson_src_compile
76 -}
77 -
78 -multilib_src_test() {
79 - meson_src_test
80 -}
81 -
82 -multilib_src_install() {
83 - meson_src_install
84 -}