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: Fri, 24 Jun 2022 16:26:35
Message-Id: 1656087956.792051c31f9f17d7cd5d0e223ed7d624bea340b4.mattst88@gentoo
1 commit: 792051c31f9f17d7cd5d0e223ed7d624bea340b4
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 16:19:02 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 16:25:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=792051c3
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-1.4.0.ebuild | 62 -------------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest
17 index 5872177b5eb2..503abece062a 100644
18 --- a/x11-libs/libxkbcommon/Manifest
19 +++ b/x11-libs/libxkbcommon/Manifest
20 @@ -1,2 +1 @@
21 -DIST libxkbcommon-1.4.0.tar.xz 471948 BLAKE2B 5b0a155a3a47adb7302db01f3daa0ef81993a9754b032b01f1cdbd53af74d15df95dc6c9334860211a28272b246f66978ad6e409db74a242afb13c17dc25b76e SHA512 7dd86952c036a6a78455b1ba05b53fcff9d6f133bb01c83fa860b4eaec3fc26bb0b5535948bcc2dafbd27204c3c91d01404ca9fc52896cc36af509384797d4f1
22 DIST libxkbcommon-1.4.1.tar.xz 471824 BLAKE2B a784f3612bb52abb79bf1a2ddd3e7709fa52eddce5cabcf8520ed7df8ec8ea557e51205e1e9d116a0b31eb27b1f3bca33144318c5f01be7312cbb3e48f687fbe SHA512 757b340aeab6d187917807a88015b5113475ab2172aaaa8e530b40ea60619b3fbdfa668fd62707d66ed8fb763e68fee19394fcbd519af7c01d8975c59fdf0d89
23
24 diff --git a/x11-libs/libxkbcommon/libxkbcommon-1.4.0.ebuild b/x11-libs/libxkbcommon/libxkbcommon-1.4.0.ebuild
25 deleted file mode 100644
26 index 6a314d97c7cb..000000000000
27 --- a/x11-libs/libxkbcommon/libxkbcommon-1.4.0.ebuild
28 +++ /dev/null
29 @@ -1,62 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
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 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
41 -fi
42 -
43 -PYTHON_COMPAT=( python3_{8..10} )
44 -
45 -inherit meson-multilib ${GIT_ECLASS} python-any-r1 virtualx
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="doc static-libs test tools wayland X"
51 -RESTRICT="!test? ( test )"
52 -SLOT="0"
53 -
54 -BDEPEND="
55 - sys-devel/bison
56 - doc? ( app-doc/doxygen )
57 - test? ( ${PYTHON_DEPS} )
58 - wayland? ( dev-util/wayland-scanner )
59 -"
60 -RDEPEND="
61 - X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP},xkb] )
62 - wayland? ( >=dev-libs/wayland-1.2.0 )
63 - dev-libs/libxml2[${MULTILIB_USEDEP}]
64 - x11-misc/compose-tables
65 -"
66 -DEPEND="${RDEPEND}
67 - X? ( x11-base/xorg-proto )
68 - wayland? ( >=dev-libs/wayland-protocols-1.12 )
69 -"
70 -
71 -pkg_setup() {
72 - if use test; then
73 - python-any-r1_pkg_setup
74 - fi
75 -}
76 -
77 -multilib_src_configure() {
78 - local emesonargs=(
79 - -Ddefault_library="$(usex static-libs both shared)"
80 - -Dxkb-config-root="${EPREFIX}/usr/share/X11/xkb"
81 - $(meson_native_use_bool tools enable-tools)
82 - $(meson_use X enable-x11)
83 - $(meson_native_use_bool doc enable-docs)
84 - $(meson_use wayland enable-wayland)
85 - )
86 - meson_src_configure
87 -}
88 -
89 -multilib_src_test() {
90 - virtx meson_src_test
91 -}