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: x11-misc/libinput-gestures/
Date: Mon, 31 May 2021 21:07:27
Message-Id: 1622495174.80199129a0b66d20cedb056eceff5070b7f8a23c.mgorny@gentoo
1 commit: 80199129a0b66d20cedb056eceff5070b7f8a23c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 21:06:14 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 21:06:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80199129
7
8 x11-misc/libinput-gestures: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-misc/libinput-gestures/Manifest | 1 -
13 .../libinput-gestures-2.48.ebuild | 57 ----------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/x11-misc/libinput-gestures/Manifest b/x11-misc/libinput-gestures/Manifest
17 index 983b5ebd910..fb5cc8b8f5c 100644
18 --- a/x11-misc/libinput-gestures/Manifest
19 +++ b/x11-misc/libinput-gestures/Manifest
20 @@ -1,2 +1 @@
21 -DIST libinput-gestures-2.48.tar.gz 22858 BLAKE2B 67fada253a0d02791e14c6c2175f37f75c2e4ff04b04360070d1c045cf064a9d7b362c28a1e8130e6cc435bd487370c69ded3af41d53b935f7024d722aca9593 SHA512 6ad510f2067ab6cef9c9a94f1c300fe91aa811904a0e85209dc06b3afdd4a2be8ae7bda8ccb40210cc59c3758e3b14b53285f7c3c29c6982a3894952b678a840
22 DIST libinput-gestures-2.56.tar.gz 26293 BLAKE2B b48a33c13efc63545bcb5ae722066493bd6aba083a07b1ebbf10eea69afa2a8f9d80a92b60dda3e8472a55851b70e84cf7c10e0bf3428c2278dd3ef5b6f65d0d SHA512 f215444dbe7e70ae137404beb25d5a60c5a618fb2d3d20eb9b4cf3f94cbc93a7e42a5fa82efdea082e2fa229c95d86c02df91c59f4a51c067e47ccf5dcf79fa7
23
24 diff --git a/x11-misc/libinput-gestures/libinput-gestures-2.48.ebuild b/x11-misc/libinput-gestures/libinput-gestures-2.48.ebuild
25 deleted file mode 100644
26 index 17b89dfda60..00000000000
27 --- a/x11-misc/libinput-gestures/libinput-gestures-2.48.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_7 )
36 -
37 -inherit python-single-r1 xdg-utils
38 -
39 -DESCRIPTION="Actions gestures on your touchpad using libinput"
40 -HOMEPAGE="https://github.com/bulletmark/libinput-gestures"
41 -if [[ ${PV} == *9999 ]] ; then
42 - inherit git-r3
43 - EGIT_REPO_URI="https://github.com/bulletmark/${PN}.git"
44 -else
45 - SRC_URI="https://github.com/bulletmark/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 - KEYWORDS="~amd64 ~x86"
47 -fi
48 -
49 -LICENSE="GPL-3+"
50 -SLOT="0"
51 -IUSE=""
52 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
53 -
54 -RDEPEND="${PYTHON_DEPS}
55 - >=dev-libs/libinput-1.8.0
56 - x11-misc/wmctrl
57 - x11-misc/xdotool"
58 -DEPEND=">=dev-libs/libinput-1.8.0
59 - dev-util/desktop-file-utils"
60 -
61 -src_prepare() {
62 - default
63 -
64 - # Fix docdir installation path
65 - sed -i "/^DOCDIR/s@\$NAME@${PF}@" libinput-gestures-setup \
66 - || die "sed failed for libinput-gestures-setup"
67 -}
68 -
69 -src_test() { :; }
70 -
71 -pkg_postinst() {
72 - xdg_icon_cache_update
73 -
74 - elog "You must be in the input group to read the touchpad device."
75 -
76 - if ! has_version x11-libs/gtk+:3 ; then
77 - elog "${PN}-setup script supports Gnome 3 via x11-libs/gtk+:3."
78 - fi
79 - if ! has_version kde-plasma/kde-cli-tools:5 ; then
80 - elog "${PN}-setup script supports Plasma 5 via kde-plasma/kde-cli-tools:5."
81 - fi
82 -}
83 -
84 -pkg_postrm() {
85 - xdg_icon_cache_update
86 -}