commit:     6171236ceebdcdc981758eac286a4f44999d3e65
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  3 01:51:26 2024 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Sep  3 01:51:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6171236c

dev-libs/libinput: Drop old versions

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

 dev-libs/libinput/Manifest               |   1 -
 dev-libs/libinput/libinput-1.25.0.ebuild | 102 -------------------------------
 2 files changed, 103 deletions(-)

diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
index 2922e2cc2f9a..3cd8898c6d7b 100644
--- a/dev-libs/libinput/Manifest
+++ b/dev-libs/libinput/Manifest
@@ -1,3 +1,2 @@
-DIST libinput-1.25.0.tar.bz2 812020 BLAKE2B 
03034b6315c281d7eee6a7bc1f4c799c2c7f74add7a195501de75feb6b98fa8dc601b7573da5586b2b2882c3cfaddfad62f5c1b836402dce1f463bdb2884945d
 SHA512 
b9dc3f3b5f34c82399dfb7ccb5f65d19a596c415f0198b39e3f360f5b87c42124a5355c8d9f6f42cc9ae2d4f9a90fe5da6260136fa83d278048392f93381a84b
 DIST libinput-1.26.1.tar.bz2 823409 BLAKE2B 
c9b807d40bb247330c31769cbcff1a2a506504ac952841463e5fb67717b5d002de204caa8be3298d3920c20a85c55b453a6d63a8940a6b0f088cb474f4fe73c0
 SHA512 
d4611fc75ee6091f3139134f348db79d710560c27a936c7a8c0dc50657d6e1bdbdb1b44fb4c2c668a5b45934d91d3aef336d4096806807354472b25e298cdab6
 DIST libinput-1.26.2.tar.bz2 824312 BLAKE2B 
df463f377cf2f246f6b5b35bdc69039830b4eb5b836a8df9698330140b1bc4b31c7dd50d8ffdec7c935e8b14909d98436ce8f1f9a6d0120e4b72f29381f9b697
 SHA512 
51fab62e1bfb6007287e1219bf458a351806ce685e6e7ba5360062c863f0811da75acc6ec92aef7f9e0556dac0413fbe43a4744885f7449e38036130112907a6

diff --git a/dev-libs/libinput/libinput-1.25.0.ebuild 
b/dev-libs/libinput/libinput-1.25.0.ebuild
deleted file mode 100644
index 00fdfcb82be1..000000000000
--- a/dev-libs/libinput/libinput-1.25.0.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 2014-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-inherit meson optfeature python-any-r1 udev
-
-DESCRIPTION="Library to handle input devices in Wayland"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/ 
https://gitlab.freedesktop.org/libinput/libinput";
-SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.bz2";
-
-LICENSE="MIT"
-SLOT="0/10"
-if [[ $(ver_cut 3) -lt 900 ]] ; then
-       KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
-fi
-IUSE="doc input_devices_wacom test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       input_devices_wacom? ( >=dev-libs/libwacom-0.27:= )
-       >=dev-libs/libevdev-1.9.902
-       >=sys-libs/mtdev-1.1
-       virtual/libudev:=
-       virtual/udev
-"
-DEPEND="
-       ${RDEPEND}
-       test? ( >=dev-libs/check-0.9.10 )
-"
-BDEPEND="
-       virtual/pkgconfig
-       doc? (
-               $(python_gen_any_dep '
-                       dev-python/commonmark[${PYTHON_USEDEP}]
-                       dev-python/recommonmark[${PYTHON_USEDEP}]
-                       dev-python/sphinx[${PYTHON_USEDEP}]
-                       >=dev-python/sphinx-rtd-theme-0.2.4[${PYTHON_USEDEP}]
-               ')
-               >=app-text/doxygen-1.8.3
-               >=media-gfx/graphviz-2.38.0
-       )
-       test? (
-               $(python_gen_any_dep '
-                       dev-python/pytest[${PYTHON_USEDEP}]
-                       dev-python/pytest-xdist[${PYTHON_USEDEP}]
-               ')
-       )
-"
-#      test? ( dev-debug/valgrind )
-
-python_check_deps() {
-       if use doc; then
-               python_has_version \
-                       "dev-python/commonmark[${PYTHON_USEDEP}]" \
-                       "dev-python/recommonmark[${PYTHON_USEDEP}]" \
-                       "dev-python/sphinx[${PYTHON_USEDEP}]" \
-                       ">=dev-python/sphinx-rtd-theme-0.2.4[${PYTHON_USEDEP}]" 
\
-               || return
-       fi
-       if use test; then
-               python_has_version \
-                       "dev-python/pytest[${PYTHON_USEDEP}]" \
-                       "dev-python/pytest-xdist[${PYTHON_USEDEP}]" \
-               || return
-       fi
-}
-
-src_prepare() {
-       default
-       sed "s@, '-Werror'@@" -i meson.build || die #744250
-}
-
-src_configure() {
-       # gui can be built but will not be installed
-       local emesonargs=(
-               -Ddebug-gui=false
-               $(meson_use doc documentation)
-               $(meson_use input_devices_wacom libwacom)
-               $(meson_use test tests)
-               -Dudev-dir="${EPREFIX}$(get_udevdir)"
-       )
-       meson_src_configure
-}
-
-src_install() {
-       meson_src_install
-       if use doc ; then
-               docinto html
-               dodoc -r "${BUILD_DIR}"/Documentation/.
-       fi
-}
-
-pkg_postinst() {
-       optfeature "measure and replay tools" dev-python/libevdev
-       udev_reload
-}
-
-pkg_postrm() {
-       udev_reload
-}

Reply via email to