Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/evemu/
Date: Sun, 02 Aug 2020 14:00:05
Message-Id: 1596376797.209b67ca76a9a9437dcb61ca25e51b32d116a86b.mgorny@gentoo
1 commit: 209b67ca76a9a9437dcb61ca25e51b32d116a86b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 2 12:20:45 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 2 13:59:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=209b67ca
7
8 app-misc/evemu: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-misc/evemu/Manifest | 1 -
13 app-misc/evemu/evemu-2.6.0.ebuild | 43 ---------------------------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/app-misc/evemu/Manifest b/app-misc/evemu/Manifest
17 index ce999251ce2..3dc7d190891 100644
18 --- a/app-misc/evemu/Manifest
19 +++ b/app-misc/evemu/Manifest
20 @@ -1,2 +1 @@
21 -DIST evemu-2.6.0.tar.xz 507032 BLAKE2B 189507f984e2ebfdf9ff7474d5854ed02f29cd2105684700e1cc2c5ae3c1e888bebd7e8e04e3a5003506bb9571d61785712d08fd90d6e828f2ba5e2ea763a064 SHA512 8dd3be18abc6e36a79b91e6099116048e4fd45a96531a5c2773c84618d6ba7089ee8734b51b9309462c393dc7c3a83d87438bcbdcd5876803165a4ea439aff83
22 DIST evemu-2.7.0.tar.xz 509308 BLAKE2B 0fec24d4cbd57a2b8d9eb6c7e4734a069148e20dea819bf8409adc95928410bfdabc93dbe58faad1137fb086d4534668e2cbd77f939f9a44a9aee99835fa7d2d SHA512 a8b09717f84df440c230bb65d3d50d81ce6a722a7cdb281981792435ea591186c28dbec215a0314542e0e36bab06bb1800851bbe32cf2a0e7712adaeaceaeb76
23
24 diff --git a/app-misc/evemu/evemu-2.6.0.ebuild b/app-misc/evemu/evemu-2.6.0.ebuild
25 deleted file mode 100644
26 index 8ac8d69567e..00000000000
27 --- a/app-misc/evemu/evemu-2.6.0.ebuild
28 +++ /dev/null
29 @@ -1,43 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python2_7 )
35 -
36 -inherit ltprune python-single-r1
37 -
38 -DESCRIPTION="tools and bindings for kernel evdev device emulation, data capture, and replay"
39 -HOMEPAGE="https://www.freedesktop.org/wiki/Evemu/"
40 -SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
41 -
42 -LICENSE="LGPL-3 GPL-3"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="python static-libs"
46 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
47 -
48 -RDEPEND="python? ( ${PYTHON_DEPS} )
49 - >=dev-libs/libevdev-1.2.99.902"
50 -DEPEND="app-arch/xz-utils
51 - ${RDEPEND}"
52 -
53 -src_configure() {
54 - econf \
55 - $(use_enable static-libs static) \
56 - $(use_enable python python-bindings)
57 -}
58 -
59 -src_test() {
60 - if use python ; then
61 - if [[ ! ${EUID} -eq 0 ]] || has sandbox $FEATURES || has usersandbox $FEATURES ; then
62 - ewarn "Tests require userpriv, sandbox, and usersandbox to be disabled in FEATURES."
63 - else
64 - emake check
65 - fi
66 - fi
67 -}
68 -
69 -src_install() {
70 - default
71 - prune_libtool_files
72 -}