[gentoo-commits] repo/gentoo:master commit in: dev-libs/libinput/files/, dev-libs/libinput/

2023-05-12 Thread Matt Turner
commit: 51059f18651414a9eec90a11dcbfc0502315ea06
Author: Matt Turner  gentoo  org>
AuthorDate: Fri May 12 22:08:30 2023 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri May 12 22:34:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51059f18

dev-libs/libinput: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 dev-libs/libinput/Manifest |  1 -
 .../libinput/files/libinput-1.22.1-sphinx-6.patch  | 28 ---
 dev-libs/libinput/libinput-1.22.1.ebuild   | 94 --
 3 files changed, 123 deletions(-)

diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
index 2d249e945791..737511a9f5a5 100644
--- a/dev-libs/libinput/Manifest
+++ b/dev-libs/libinput/Manifest
@@ -1,2 +1 @@
-DIST libinput-1.22.1.tar.bz2 794829 BLAKE2B 
253f840e45ab2293503a0da09ea914b982e643c35928af6762955325a002b5bf20bf8571e705e3a050663cd0e1e26ee0cf4952a6193659f9b27ad1080008e900
 SHA512 
9d1985bc03ae304643fcd3acb762afc53305942e39071a062e7f8950be4929c72bdfeff06039c77f70e53233885df1e2e1a1dc538caeefd2b46f35826d290e9e
 DIST libinput-1.23.0.tar.bz2 803316 BLAKE2B 
ec251c11d11d557be395bb2be2d2937aa36b41df7d047f7700baa43cf4869d287fd03c260229dc4cb18a587b5fb1957884299f9b0837d456459a049b7b1206a7
 SHA512 
cb752d8611d70d9ea26d875aba9db8d0e319e60697aedef1b16295e8180761ce4c8c9635b1aaeb3cfc32d8c5fbe4abfd9a5a4fd29c4b964b25c853c90e816a43

diff --git a/dev-libs/libinput/files/libinput-1.22.1-sphinx-6.patch 
b/dev-libs/libinput/files/libinput-1.22.1-sphinx-6.patch
deleted file mode 100644
index 737ac3965c7a..
--- a/dev-libs/libinput/files/libinput-1.22.1-sphinx-6.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://bugs.gentoo.org/891371
-https://bugs.gentoo.org/889908
-https://gitlab.freedesktop.org/libinput/libinput/-/commit/bf2e8a406e6ebfdb62ffa67f00822c17ff9b2c6a
-
-From bf2e8a406e6ebfdb62ffa67f00822c17ff9b2c6a Mon Sep 17 00:00:00 2001
-From: Peter Hutterer 
-Date: Tue, 17 Jan 2023 12:28:58 +1000
-Subject: [PATCH] doc/user: fix sphinx warning
-
-WARNING: extlinks: Sphinx-6.0 will require a caption string to contain
-exactly one '%s' and all other '%' need to be escaped as '%%'.
-
-Well, let's do that then!
-
-Signed-off-by: Peter Hutterer 
 a/doc/user/conf.py.in
-+++ b/doc/user/conf.py.in
-@@ -169,7 +169,7 @@ from recommonmark.parser import CommonMarkParser
- 
- extlinks = { 'commit' :
-   ('https://gitlab.freedesktop.org/libinput/libinput/commit/%s',
--  'git commit ')
-+  'git commit %s')
- }
- 
- # -- git version hack -
--- 
-GitLab

diff --git a/dev-libs/libinput/libinput-1.22.1.ebuild 
b/dev-libs/libinput/libinput-1.22.1.ebuild
deleted file mode 100644
index 57d288d0c784..
--- a/dev-libs/libinput/libinput-1.22.1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 2014-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-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-doc/doxygen-1.8.3
-   >=media-gfx/graphviz-2.38.0
-   )
-"
-#  test? ( dev-util/valgrind )
-
-PATCHES=(
-   "${FILESDIR}"/${P}-sphinx-6.patch
-)
-
-python_check_deps() {
-   python_has_version "dev-python/commonmark[${PYTHON_USEDEP}]" && \
-   python_has_version "dev-python/recommonmark[${PYTHON_USEDEP}]" && \
-   python_has_version "dev-python/sphinx[${PYTHON_USEDEP}]" && \
-   python_has_version 
">=dev-python/sphinx-rtd-theme-0.2.4[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use doc && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-   sed "s@, '-Werror'@@" -i meson.build || die #744250
-}
-
-src_configure() {
-   # gui can be built but will not be installed
-   

[gentoo-commits] repo/gentoo:master commit in: dev-libs/libinput/files/, dev-libs/libinput/

2015-09-05 Thread Pacho Ramos
commit: 618ef100072ce00861934377da337c341f672738
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Sep  5 16:22:54 2015 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Sep  5 16:22:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=618ef100

dev-libs/libinput: Drop old

Package-Manager: portage-2.2.20.1

 dev-libs/libinput/Manifest |  6 ---
 .../libinput/files/libinput-0.18.0-includes.patch  | 37 -
 dev-libs/libinput/libinput-0.13.0-r1.ebuild| 50 --
 dev-libs/libinput/libinput-0.18.0.ebuild   | 60 --
 dev-libs/libinput/libinput-0.19.0.ebuild   | 55 
 dev-libs/libinput/libinput-0.20.0.ebuild   | 55 
 dev-libs/libinput/libinput-0.21.0.ebuild   | 55 
 dev-libs/libinput/libinput-0.7.0.ebuild| 47 -
 8 files changed, 365 deletions(-)

diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
index fb77555..5a04892 100644
--- a/dev-libs/libinput/Manifest
+++ b/dev-libs/libinput/Manifest
@@ -1,9 +1,3 @@
-DIST libinput-0.13.0.tar.xz 540300 SHA256 
6cecaf7fde525f1d81474cbd495ce526d5e34c845d3e9d6f3e2565b7048cc61a SHA512 
d07b35cec8d8cd3f75d7f8916fda4723e6a7b94bf457e249ee2b93e9a7c60b508d071b8959c7fb3676d13a3b5430c71f2bf579572cab87bcc4e655ab69ab
 WHIRLPOOL 
944a1336d764d6359f65a4d3ac8d3150caf1b0db649a6dea2eaf52fae2b2e14a2ffac8b3de93280115d296c773bb7fc0d6c771e98514f76061fb8814bf0d56ff
-DIST libinput-0.18.0.tar.xz 623740 SHA256 
64a70f96bab17a22eaf2fd7af17cf83def3388374096c7623be9448f62808cda SHA512 
352a941a03942ed486f4d0d1ce09c928b5230bb041f71d6d906307cd208d23071b85f885658e9118cf29a72686dcd76c2c66c1b3291f48745efd40e6e5dfe38b
 WHIRLPOOL 
50a6e2f58ef35746fec615bb61f9859347853f3fbc6044903975668e50f92fa6713a4bf05e6e038ebe5184a7fd496778b6b64d582607b0f183d44404e327587b
-DIST libinput-0.19.0.tar.xz 627800 SHA256 
69a97da47ef8fa9debadaa8ee11005b9b5183bd2b87c5aa7827b7c388a5acc5d SHA512 
773e59ff0e797c206410f417fcc8cb775dd0e87277a598cf7bacd2f116df1e62de9e99b12b318de0d098ad43882728fa19334ed4e2ae1f8f39bc28c255307c5a
 WHIRLPOOL 
adac12649898714306ab59f7af08a7edfdc133bdd9703b7896cde2a77b60b5a359182698ab9cb46cd8a66dfc3d422bd9a0bceb940a83f9ecfdc9dccbc21d
-DIST libinput-0.20.0.tar.xz 647668 SHA256 
175bdfce97cfab13a2a0d02c3138fcf02f60c8fcd098835a97128ff114d7125d SHA512 
5c38024d4f0f7c4a7f50b5bfe1ebcb60778643ab053798847b48c704dbf19de3443d98ea508f1dd72577567f949fe85bc80ff1706e6a0896d02449485b41b1a6
 WHIRLPOOL 
c92b82b477cb09744815a6b07293f1a4b8347a630c75628ad0b0e510bfe8a47e8e916128520946a17cf8273ad0c5fa6c0d464f124c70eac6e89611aedd170bdc
-DIST libinput-0.21.0.tar.xz 658788 SHA256 
7cce7a9e510dfe5c4a19ad00e9350808d4f59f8611fd2b5e87213c507283f550 SHA512 
676d5353ca9fb6b6a3f76f4e2d2ab4c78b09240c0bba5d4e06049e2f6fc913ed99cdc60880d00d34c2f3367937e3fca03f0d3d8baaf3d3348d4f2edba1b600a5
 WHIRLPOOL 
a6367e7edc797292937bc956d3ed6c2d73987f058d4eeddc43436115f8674ba1ff558ca9f7b5b6d56420fe64210565d47fae9dfe188b8ebedc91d2b991901721
-DIST libinput-0.7.0.tar.xz 440228 SHA256 
129f485afe5e4a9394641293991c97cb99f5f3338340d0d65b704ff463d1579e SHA512 
0e03ab7ca98c4574997742b7d8912000fb176d7a3e2c381b7e63139f78455374f8f38284e226fe443d5a524f34be8995317b91fc0190795a97b10af060423b77
 WHIRLPOOL 
664510fc33cb718b56600553332bb3eb587b3f4a40f81d4a80dd218882aba204522bcbbfab98f3ae0c6447d3a39cc98b9d88aea5f8e3c21da0803b93d64ad321
 DIST libinput-0.9.0.tar.xz 510512 SHA256 
309043976f41f5451c2a4b1c25bc2993b18aecb22524d797f21eb6b6c968ff0d SHA512 
a6f718215428eda45ac00c25d0b62ada84bf924822cb66e0a9b28f4cfc36e7d1678f2dfb47afae16ce4c277d589adcf97aefe8e2e5a154873b649fe4a84527a1
 WHIRLPOOL 
23da6dbcd7b17000cea641e0931db8a9b2ad34b0655e4e31b0419ff4799adc59d2646b10316e073ad49695ebd652c150abf05c39d15c735ecb1d97f6f8c1d8de
 DIST libinput-1.0.0.tar.xz 785056 SHA256 
afbd2751c000a4e5833624b6177a6919ad259f0bca44093947421c885fd42c0f SHA512 
b6fc7973982cb2826fc5beb514e954d7673023628739a86d18b2522b1ad0ecf55f9d6c83e6307c10c633c57d6b61227898aded6a22a2de536c0f14f27d23b903
 WHIRLPOOL 
13304875b753127ada76bf18ba56ea9828d6532db5eefce56439ede83eeeb43b6da6aa59f763d2c912de838221ee53fd7d02bf865e80316a24c412ea001d3043
 DIST libinput-1.0.1.tar.xz 800244 SHA256 
482fb35119b457ba65a8bebaa47e4f6b4dbd77e59c320014a22296847b7ff99e SHA512 
17efc6ddd58aadcd30aecb4d1b8b6ad32f6f61c592f29b0a99aac7d49e5cb814038874d9e8996cd6726f15c58bf4239169564c650a3250a87a9ec6fd3110c5bb
 WHIRLPOOL 
0bba6b4a58ca0020ebcbffe5675d75832b4ed67a350ca141d990f9db522a2eee942543f475d76c1f2b816b849074f4a50e30bcb3adc99bd4abdea1a43800a2d5

diff --git a/dev-libs/libinput/files/libinput-0.18.0-includes.patch 
b/dev-libs/libinput/files/libinput-0.18.0-includes.patch
deleted file mode 100644
index 22e292d..000
--- a/dev-libs/libinput/files/libinput-0.18.0-includes.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 984dec0ed1c52087a4a32e181a1c09817881de39 Mon Sep 17 00:00:00 2001
-From: