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/libevdev/
Date: Thu, 31 Jan 2019 18:12:01
Message-Id: 1548958307.515fe2d39c7696c1d801291b1f9e5305c948f42b.mattst88@gentoo
1 commit: 515fe2d39c7696c1d801291b1f9e5305c948f42b
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 31 18:06:53 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 31 18:11:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515fe2d3
7
8 dev-libs/libevdev: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-libs/libevdev/Manifest | 1 -
13 dev-libs/libevdev/libevdev-1.5.9-r1.ebuild | 48 ------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-libs/libevdev/Manifest b/dev-libs/libevdev/Manifest
17 index 3a162eb67bc..7b4b434b230 100644
18 --- a/dev-libs/libevdev/Manifest
19 +++ b/dev-libs/libevdev/Manifest
20 @@ -1,2 +1 @@
21 -DIST libevdev-1.5.9.tar.xz 408200 BLAKE2B b99974eab572693c9e2a915b21adf2e6c09e26af70011ce661084ac9add51cb6257f36bcfeb89d76c8987cf8724e69b027d30eda17c4457a40f3e047302efa19 SHA512 4496ab4d9dc165f416a574c21a7fcee54ae104c21ef4785a4dd0311fff428020cdbb5da7bf3f835e78dae05effdb1a557d189347f6e62dd6be2d8bcdc845850c
22 DIST libevdev-1.6.0.tar.xz 411512 BLAKE2B 0e9190fd4c28b36bcf325953aa634c0d8c604cef7f56e46679fc88351536d78b0bddedbbdfffe4164e0039c7d56ef604b143e23de2c4bb9a66653a03d6844fa9 SHA512 73046da447773716c9f0c9f511f3a0a6ababcf92a146eba363014afcbdb465f4c3cd8be0917f2f01561a72f24f20fe8ecd333467437d9d85c03afcb433d05060
23
24 diff --git a/dev-libs/libevdev/libevdev-1.5.9-r1.ebuild b/dev-libs/libevdev/libevdev-1.5.9-r1.ebuild
25 deleted file mode 100644
26 index 55edd7c7344..00000000000
27 --- a/dev-libs/libevdev/libevdev-1.5.9-r1.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
36 -
37 -inherit multilib-minimal python-any-r1
38 -
39 -DESCRIPTION="Handler library for evdev events"
40 -HOMEPAGE="https://www.freedesktop.org/wiki/Software/libevdev/"
41 -
42 -if [[ ${PV} == 9999* ]] ; then
43 - EGIT_REPO_URI="https://anongit.freedesktop.org/git/libevdev.git"
44 - inherit autotools git-r3
45 -else
46 - SRC_URI="https://www.freedesktop.org/software/libevdev/${P}.tar.xz"
47 - KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86"
48 -fi
49 -
50 -LICENSE="MIT"
51 -SLOT="0"
52 -IUSE="doc static-libs"
53 -
54 -BDEPEND="
55 - ${PYTHON_DEPS}
56 - doc? ( app-doc/doxygen )
57 - virtual/pkgconfig
58 -"
59 -RESTRICT="test" # Tests need to run as root.
60 -
61 -src_prepare() {
62 - default
63 - [[ ${PV} == 9999* ]] && eautoreconf
64 -}
65 -
66 -multilib_src_configure() {
67 - ECONF_SOURCE="${S}" econf $(use_enable static-libs static)
68 -}
69 -
70 -multilib_src_install() {
71 - default
72 - find "${D}" -name '*.la' -delete || die
73 - if use doc ;then
74 - local HTML_DOCS=( doc/html/. )
75 - einstalldocs
76 - fi
77 -}