diff options
author | Matt Turner <mattst88@gentoo.org> | 2023-03-13 15:49:57 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-03-13 16:07:16 -0400 |
commit | 7a784db350a08b0662c0eaaff4c598b1b4d5b116 (patch) | |
tree | 6698329ba2c2f0533f2d9236b66dd9d2b9a85bf1 /x11-libs/libxkbcommon | |
parent | x11-libs/libX11: Drop old versions (diff) | |
download | gentoo-7a784db350a08b0662c0eaaff4c598b1b4d5b116.tar.gz gentoo-7a784db350a08b0662c0eaaff4c598b1b4d5b116.tar.bz2 gentoo-7a784db350a08b0662c0eaaff4c598b1b4d5b116.zip |
x11-libs/libxkbcommon: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-libs/libxkbcommon')
-rw-r--r-- | x11-libs/libxkbcommon/Manifest | 1 | ||||
-rw-r--r-- | x11-libs/libxkbcommon/libxkbcommon-1.4.1.ebuild | 62 |
2 files changed, 0 insertions, 63 deletions
diff --git a/x11-libs/libxkbcommon/Manifest b/x11-libs/libxkbcommon/Manifest index 1c8c24c3c395..0328e5e29ab7 100644 --- a/x11-libs/libxkbcommon/Manifest +++ b/x11-libs/libxkbcommon/Manifest @@ -1,2 +1 @@ -DIST libxkbcommon-1.4.1.tar.xz 471824 BLAKE2B a784f3612bb52abb79bf1a2ddd3e7709fa52eddce5cabcf8520ed7df8ec8ea557e51205e1e9d116a0b31eb27b1f3bca33144318c5f01be7312cbb3e48f687fbe SHA512 757b340aeab6d187917807a88015b5113475ab2172aaaa8e530b40ea60619b3fbdfa668fd62707d66ed8fb763e68fee19394fcbd519af7c01d8975c59fdf0d89 DIST libxkbcommon-1.5.0.tar.xz 472700 BLAKE2B 5dcfb514c297f71629f20b444cb29c5d26ce9def1c1173a125fb0c0c259d76194fcef7a407d8efda2d2d87c9b90abac34e2fc1742cfd6053df511a3ef205c8ef SHA512 bbba6665f052c04c7450413cc5e2badd6bfd41326b0e4c60e3ec01d730cae695fd34ce2662b8a91ece7a76b974a0ea330f7462dd5d2db148b0d0da26264ced9c diff --git a/x11-libs/libxkbcommon/libxkbcommon-1.4.1.ebuild b/x11-libs/libxkbcommon/libxkbcommon-1.4.1.ebuild deleted file mode 100644 index 8d24ffeab6cc..000000000000 --- a/x11-libs/libxkbcommon/libxkbcommon-1.4.1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -if [[ ${PV} = *9999* ]]; then - GIT_ECLASS="git-r3" - EGIT_REPO_URI="https://github.com/xkbcommon/${PN}" -else - SRC_URI="https://xkbcommon.org/download/${P}.tar.xz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" -fi - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit meson-multilib ${GIT_ECLASS} python-any-r1 virtualx - -DESCRIPTION="keymap handling library for toolkits and window systems" -HOMEPAGE="https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/" -LICENSE="MIT" -IUSE="doc static-libs test tools wayland X" -RESTRICT="!test? ( test )" -SLOT="0" - -BDEPEND=" - sys-devel/bison - doc? ( app-doc/doxygen ) - test? ( ${PYTHON_DEPS} ) - wayland? ( dev-util/wayland-scanner ) -" -RDEPEND=" - X? ( >=x11-libs/libxcb-1.10:=[${MULTILIB_USEDEP},xkb] ) - wayland? ( >=dev-libs/wayland-1.2.0 ) - dev-libs/libxml2[${MULTILIB_USEDEP}] - x11-misc/compose-tables -" -DEPEND="${RDEPEND} - X? ( x11-base/xorg-proto ) - wayland? ( >=dev-libs/wayland-protocols-1.12 ) -" - -pkg_setup() { - if use test; then - python-any-r1_pkg_setup - fi -} - -multilib_src_configure() { - local emesonargs=( - -Ddefault_library="$(usex static-libs both shared)" - -Dxkb-config-root="${EPREFIX}/usr/share/X11/xkb" - $(meson_native_use_bool tools enable-tools) - $(meson_use X enable-x11) - $(meson_native_use_bool doc enable-docs) - $(meson_use wayland enable-wayland) - ) - meson_src_configure -} - -multilib_src_test() { - virtx meson_src_test -} |