commit:     ba752104e4e72e98a6ace043022be026325ac13a
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 25 19:18:28 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Jun 25 19:20:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba752104

dev-libs/libwacom: Drop old versions

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 dev-libs/libwacom/Manifest              |  2 -
 dev-libs/libwacom/libwacom-1.11.ebuild  | 58 ----------------------------
 dev-libs/libwacom/libwacom-2.2.0.ebuild | 67 ---------------------------------
 3 files changed, 127 deletions(-)

diff --git a/dev-libs/libwacom/Manifest b/dev-libs/libwacom/Manifest
index d63c04f988a3..69430b2c6c53 100644
--- a/dev-libs/libwacom/Manifest
+++ b/dev-libs/libwacom/Manifest
@@ -1,4 +1,2 @@
-DIST libwacom-1.11.tar.bz2 519285 BLAKE2B 
fb26190d752316b5d25659d2ae76681bfff1803463360aa138eab91ed7d7ef2d04dfb6bdd4f8c2effc45a495ef3afc312a817d4fd41cd8167172cafd9f5cee9f
 SHA512 
24e8183502dd2b928d53b3d26d8479210e855c94c225649d63ac33062a30615654ff0ab8666a25503fb3253125539cd845ca467fb228a01c608dc3adbbec73b5
 DIST libwacom-1.12.tar.bz2 543819 BLAKE2B 
fdbfba23d7b1e047757b0c0ff698a484cadc91c199459e1da49bfd5a5406aeb62d2ca43856f7d8363c3f36c7c05f4d3160e8fb576c3d18f085144dec259d49c5
 SHA512 
4e0084eda01e78f52336f3f1f1ea3ea86cb9c5fdd6d6c0316662405ebe2a328d6837f8db855e58f5fa95a640a5d456a081a7de339a372bf851bc0d5c69530379
-DIST libwacom-2.2.0.tar.xz 106444 BLAKE2B 
e47d07b8631f85cbde743cf3fe0f9ab5fc26673e62bf0a018463903e0f81a576ca3dd9bb3da8d0049338a87ca384f217e56dd3bc59ad713e6f7b4c20563d8ba4
 SHA512 
3bded4a72bec230f3318e72bdfd81fa577d4a86103a89367e01e993319f4dbb9ccc73c834c04d5a63f43a8b94457bf64e567d7e3f8d2a0e08b189300c63782a8
 DIST libwacom-2.3.0.tar.xz 107872 BLAKE2B 
5589067eabb0b0d5384015a0200950146d1c028ce8cd870b845de8ec22ca1710645755253952e49f9c1db585a945c6ea8da37318b900f16602a1a7081512ecd9
 SHA512 
ccbeddc55cc67d8102aa4536616f3c379877ba9154a72d7ad92941854c79b727a21efacf4282b9a8730ff181d094749bf84a9fe5850de6246d91a17e5029d888

diff --git a/dev-libs/libwacom/libwacom-1.11.ebuild 
b/dev-libs/libwacom/libwacom-1.11.ebuild
deleted file mode 100644
index acfda32d8405..000000000000
--- a/dev-libs/libwacom/libwacom-1.11.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit meson python-any-r1 toolchain-funcs udev
-
-DESCRIPTION="Library for identifying Wacom tablets and their model-specific 
features"
-HOMEPAGE="https://github.com/linuxwacom/libwacom";
-SRC_URI="https://github.com/linuxwacom/${PN}/releases/download/${P}/${P}.tar.bz2";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 sparc x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-libs/glib:2
-       dev-libs/libgudev:=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( app-doc/doxygen )
-       test? (
-               ${PYTHON_DEPS}
-               $(python_gen_any_dep '
-                       dev-python/python-libevdev[${PYTHON_USEDEP}]
-                       dev-python/pyudev[${PYTHON_USEDEP}]
-                       dev-python/pytest[${PYTHON_USEDEP}]
-               ')
-       )
-"
-
-python_check_deps() {
-       has_version -b "dev-python/python-libevdev[${PYTHON_USEDEP}]" &&
-       has_version -b "dev-python/pyudev[${PYTHON_USEDEP}]" &&
-       has_version -b "dev-python/pytest[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-       tc-ld-disable-gold # bug 
https://github.com/linuxwacom/libwacom/issues/170
-
-       if use test; then
-               python-any-r1_pkg_setup
-       fi
-}
-
-src_configure() {
-       local emesonargs=(
-               $(meson_feature doc documentation)
-               $(meson_feature test tests)
-               -Dudev-dir=$(get_udevdir)
-       )
-       meson_src_configure
-}

diff --git a/dev-libs/libwacom/libwacom-2.2.0.ebuild 
b/dev-libs/libwacom/libwacom-2.2.0.ebuild
deleted file mode 100644
index 53a1e7bfb7a7..000000000000
--- a/dev-libs/libwacom/libwacom-2.2.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-inherit meson python-any-r1 udev
-
-DESCRIPTION="Library for identifying Wacom tablets and their model-specific 
features"
-HOMEPAGE="https://github.com/linuxwacom/libwacom";
-SRC_URI="https://github.com/linuxwacom/${PN}/releases/download/${P}/${P}.tar.xz";
-
-LICENSE="MIT"
-SLOT="0/9" # libwacom SONAME
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       dev-libs/glib:2
-       dev-libs/libgudev:=
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( app-doc/doxygen )
-       test? (
-               ${PYTHON_DEPS}
-               $(python_gen_any_dep '
-                       dev-python/python-libevdev[${PYTHON_USEDEP}]
-                       dev-python/pyudev[${PYTHON_USEDEP}]
-                       dev-python/pytest[${PYTHON_USEDEP}]
-               ')
-       )
-"
-
-python_check_deps() {
-       has_version -b "dev-python/python-libevdev[${PYTHON_USEDEP}]" &&
-       has_version -b "dev-python/pyudev[${PYTHON_USEDEP}]" &&
-       has_version -b "dev-python/pytest[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-       if use test; then
-               python-any-r1_pkg_setup
-       fi
-}
-
-src_prepare() {
-       default
-
-       # Don't call systemd daemon-reload in the test suite
-       sed -i -e '/daemon-reload/d' test/test_udev_rules.py || die
-}
-
-src_configure() {
-       local emesonargs=(
-               $(meson_feature doc documentation)
-               $(meson_feature test tests)
-               -Dudev-dir=$(get_udevdir)
-       )
-       meson_src_configure
-}
-
-pkg_postinst() {
-       udev_reload
-}

Reply via email to