Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libinput/
Date: Tue, 16 Apr 2019 17:28:20
Message-Id: 1555435688.360c77514d14fdb18b9e5820e82372701673433f.mattst88@gentoo
1 commit: 360c77514d14fdb18b9e5820e82372701673433f
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 16 17:27:49 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 16 17:28:08 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360c7751
7
8 dev-libs/libinput: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-libs/libinput/Manifest | 1 -
13 dev-libs/libinput/libinput-1.11.3.ebuild | 60 --------------------------------
14 2 files changed, 61 deletions(-)
15
16 diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
17 index 9ce3dd09962..10b2073f82b 100644
18 --- a/dev-libs/libinput/Manifest
19 +++ b/dev-libs/libinput/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST libinput-1.11.3.tar.xz 487408 BLAKE2B 38dc14cf018ca59279e8b6e85fd91f4b29545b4a55ab968cb11d9a8afc8d80c311efc6e57339b9baa9fb270f52cfb0758ff8ea313991867c35f3da47910977ac SHA512 5e18daab6202bcbfddeebc35dac4cabb5f726b5b73f5fc87975b58f3019a54a4b1f506a3200e920638ddddfb978a0b96c23c2e90b081942f86d33c16d4836949
22 DIST libinput-1.12.6.tar.xz 518784 BLAKE2B 7462f47be3628f9c66ef5b7c8265b588bd0ca328bafe91932f5341a010ac882648b4e7cfd0db241ae526836172e0829d68d21f8966d2be8b49f4e1c0c40df018 SHA512 02ad90c77a0c8c27fd96ec34e1546c5f0947ced49bad386372c1ef7c41b3b2157c39020f0766f20aaf2ab3c97128567e169279bea21115ced39499dda325d2ef
23 DIST libinput-1.13.0.tar.xz 529912 BLAKE2B 830dca7387c6527ebdf41e8b01bf9d8df094ec2309e229e3933b56217d51e3ef0b0c53106d6e4d55946a238d947c17a1d7c0a8f43b63119a6f3aa1063a703d64 SHA512 0e3f53acf90fe142ad677b416d1ee830ad7f7f8a83b80023278ea7d3696ff7af5612379b387b1eb5daae6277a8c30d84c21f0086fe3d8b4b6189f239b1eeb4f8
24 DIST libinput-1.13.1.tar.xz 529516 BLAKE2B 9eb9952ca2762470ee3e9ac0eab6b11c4b404b2702cd81b9f0720e539124a8f71a032803cf77105bbdce412b3c5d4a7fee4e24b8d3ceae991bd2ee9b3460e373 SHA512 a19deec802e704038df0901c103a82a3370f56e0299f4cc1b6aa84c1832a66fb638e6f9d0fa708b51df6c3b939cdc1271e4ff547c645c566be03dce0bc9ff7e0
25
26 diff --git a/dev-libs/libinput/libinput-1.11.3.ebuild b/dev-libs/libinput/libinput-1.11.3.ebuild
27 deleted file mode 100644
28 index 072c1deee40..00000000000
29 --- a/dev-libs/libinput/libinput-1.11.3.ebuild
30 +++ /dev/null
31 @@ -1,60 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -inherit meson udev
37 -
38 -DESCRIPTION="Library to handle input devices in Wayland"
39 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/ https://gitlab.freedesktop.org/libinput/libinput"
40 -SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0/10"
44 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
45 -IUSE="doc input_devices_wacom"
46 -# Tests require write access to udev rules directory which is a no-no for live system.
47 -# Other tests are just about logs, exported symbols and autotest of the test library.
48 -RESTRICT="test"
49 -
50 -RDEPEND="
51 - input_devices_wacom? ( >=dev-libs/libwacom-0.20 )
52 - >=dev-libs/libevdev-1.3
53 - >=sys-libs/mtdev-1.1
54 - virtual/libudev:=
55 - virtual/udev
56 -"
57 -DEPEND="${RDEPEND}
58 - virtual/pkgconfig
59 - doc? (
60 - >=app-doc/doxygen-1.8.3
61 - >=media-gfx/graphviz-2.38.0
62 - )
63 -"
64 -# test? (
65 -# >=dev-libs/check-0.9.10
66 -# dev-util/valgrind
67 -# sys-libs/libunwind )
68 -
69 -src_configure() {
70 - # gui can be built but will not be installed
71 - local emesonargs=(
72 - -Ddebug-gui=false
73 - $(meson_use doc documentation)
74 - $(meson_use input_devices_wacom libwacom)
75 - -Dtests=false # tests are restricted
76 - -Dudev-dir="$(get_udevdir)"
77 - )
78 - meson_src_configure
79 -}
80 -
81 -src_install() {
82 - meson_src_install
83 - if use doc ; then
84 - docinto html
85 - dodoc -r "${BUILD_DIR}"/html/.
86 - fi
87 -}
88 -
89 -pkg_postinst() {
90 - udevadm hwdb --update --root="${ROOT%/}"
91 -}