Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libinput/
Date: Thu, 16 Aug 2018 23:32:49
Message-Id: 1534462347.8fc117cdca637e7d06102e91e2b58227620707f3.leio@gentoo
1 commit: 8fc117cdca637e7d06102e91e2b58227620707f3
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 16 23:03:24 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 16 23:32:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fc117cd
7
8 dev-libs/libinput: remove old
9
10 Package-Manager: Portage-2.3.46, Repoman-2.3.10
11
12 dev-libs/libinput/Manifest | 2 --
13 dev-libs/libinput/libinput-1.10.6.ebuild | 56 -----------------------------
14 dev-libs/libinput/libinput-1.11.2.ebuild | 61 --------------------------------
15 3 files changed, 119 deletions(-)
16
17 diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest
18 index 335ad40fb1f..589a9d6f03d 100644
19 --- a/dev-libs/libinput/Manifest
20 +++ b/dev-libs/libinput/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST libinput-1.10.6.tar.xz 495536 BLAKE2B 3f23808635406eeb66cd6b4ce2a2dbaed69ee0917045f75ad262a59702d72923493b6faa7951ea3f7cc2591d4c9e1fc49cffc53b6dfbcb2aadc7b9f40c20517b SHA512 b76963c3429c5590ee04f1da94d08775c8bb8584830e678804fb1d4cf0e2af84826782eae71fdd57492461f85df87ac2fc940c280b0672c75cd81d5f34702fe4
23 DIST libinput-1.10.7.tar.xz 494648 BLAKE2B ddcbe5f54b90f8291c16e5912fa3d673fb2c66f0247c9d771f7c2dfeeef9b51404f31d7ac99cfd20b37e1d01d6b2b3bc95155ab6581c6a94e922e153d9098892 SHA512 b102b8065ceed7511ad26efba34d5d9b0c13f0f7aaa882bb21501f7a5166f4cbe140fcbb488e90e6880bd47bb2b27667a4d6aa79b8726269fa1337897034a684
24 -DIST libinput-1.11.2.tar.xz 485600 BLAKE2B 97b07493693e24be1bde3e7792c83c33b9ed4d64afbbecc1a5b77b4470fe9ff03cfbb2b4dc36f6cc5a9d58003410797979d7fbbb539d921bb9cddb5f8fb1cf0e SHA512 cb6ada877fc3c09f634f3db39d5507e66d4b86c3d632bb8f7498c7b01fdf8372b2053a79b641293900b7fcc0aa4e920f7c830d9c7b2d9ff3cd61c58eb7c20b65
25 DIST libinput-1.11.3.tar.xz 487408 BLAKE2B 38dc14cf018ca59279e8b6e85fd91f4b29545b4a55ab968cb11d9a8afc8d80c311efc6e57339b9baa9fb270f52cfb0758ff8ea313991867c35f3da47910977ac SHA512 5e18daab6202bcbfddeebc35dac4cabb5f726b5b73f5fc87975b58f3019a54a4b1f506a3200e920638ddddfb978a0b96c23c2e90b081942f86d33c16d4836949
26
27 diff --git a/dev-libs/libinput/libinput-1.10.6.ebuild b/dev-libs/libinput/libinput-1.10.6.ebuild
28 deleted file mode 100644
29 index 9e10a100546..00000000000
30 --- a/dev-libs/libinput/libinput-1.10.6.ebuild
31 +++ /dev/null
32 @@ -1,56 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -inherit meson udev
38 -
39 -DESCRIPTION="Library to handle input devices in Wayland"
40 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/"
41 -SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0/10"
45 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
46 -IUSE="doc input_devices_wacom test"
47 -# Tests require write access to udev rules directory which is a no-no for live system.
48 -# Other tests are just about logs, exported symbols and autotest of the test library.
49 -RESTRICT="test"
50 -
51 -RDEPEND="
52 - input_devices_wacom? ( >=dev-libs/libwacom-0.20 )
53 - >=dev-libs/libevdev-1.3
54 - >=sys-libs/mtdev-1.1
55 - virtual/libudev
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 - -Ddocumentation="$(usex doc true false)"
74 - -Dlibwacom="$(usex input_devices_wacom true false)"
75 - -Dtests="$(usex test true false)"
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 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
88 -}
89
90 diff --git a/dev-libs/libinput/libinput-1.11.2.ebuild b/dev-libs/libinput/libinput-1.11.2.ebuild
91 deleted file mode 100644
92 index 0635ed1b8fa..00000000000
93 --- a/dev-libs/libinput/libinput-1.11.2.ebuild
94 +++ /dev/null
95 @@ -1,61 +0,0 @@
96 -# Copyright 1999-2018 Gentoo Foundation
97 -# Distributed under the terms of the GNU General Public License v2
98 -
99 -EAPI=6
100 -inherit meson udev
101 -
102 -DESCRIPTION="Library to handle input devices in Wayland"
103 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/"
104 -SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
105 -
106 -LICENSE="MIT"
107 -SLOT="0/10"
108 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
109 -IUSE="doc input_devices_wacom test"
110 -# Tests require write access to udev rules directory which is a no-no for live system.
111 -# Other tests are just about logs, exported symbols and autotest of the test library.
112 -RESTRICT="test"
113 -
114 -RDEPEND="
115 - input_devices_wacom? ( >=dev-libs/libwacom-0.20 )
116 - >=dev-libs/libevdev-1.3
117 - >=sys-libs/mtdev-1.1
118 - virtual/libudev:=
119 - virtual/udev
120 -"
121 -DEPEND="${RDEPEND}
122 - virtual/pkgconfig
123 - doc? (
124 - >=app-doc/doxygen-1.8.3
125 - >=media-gfx/graphviz-2.38.0
126 - )
127 -"
128 -# test? (
129 -# >=dev-libs/check-0.9.10
130 -# dev-util/valgrind
131 -# sys-libs/libunwind )
132 -
133 -src_configure() {
134 - # gui can be built but will not be installed
135 - local emesonargs=(
136 - -Ddebug-gui=false
137 - -Ddocumentation="$(usex doc true false)"
138 - -Dlibwacom="$(usex input_devices_wacom true false)"
139 - -Dtests="$(usex test true false)"
140 - -Dudev-dir="$(get_udevdir)"
141 - )
142 - meson_src_configure
143 -}
144 -
145 -src_install() {
146 - meson_src_install
147 - if use doc ; then
148 - docinto html
149 - dodoc -r "${BUILD_DIR}"/html/.
150 - fi
151 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
152 -}
153 -
154 -pkg_postinst() {
155 - udevadm hwdb --update --root="${ROOT%/}"
156 -}