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: Sat, 03 Nov 2018 09:04:29
Message-Id: 1541235811.0d46210fab892e60e0ffd41c6306d7d3b6368111.mgorny@gentoo
1 commit: 0d46210fab892e60e0ffd41c6306d7d3b6368111
2 Author: Vladimir Pavljuchenkov (SpiderX) <spiderx <AT> spiderx <DOT> dp <DOT> ua>
3 AuthorDate: Fri Oct 26 21:40:38 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 3 09:03:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d46210f
7
8 x11-misc/libinput-gestures: drop old 2.36
9
10 Signed-off-by: Vladimir Pavljuchenkov <spiderx <AT> spiderx.dp.ua>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13
14 x11-misc/libinput-gestures/Manifest | 1 -
15 .../libinput-gestures-2.36.ebuild | 56 ----------------------
16 2 files changed, 57 deletions(-)
17
18 diff --git a/x11-misc/libinput-gestures/Manifest b/x11-misc/libinput-gestures/Manifest
19 index 00d7a9151d1..244050caf61 100644
20 --- a/x11-misc/libinput-gestures/Manifest
21 +++ b/x11-misc/libinput-gestures/Manifest
22 @@ -1,2 +1 @@
23 -DIST libinput-gestures-2.36.tar.gz 16598 BLAKE2B 3c30408ce394cf8bbc5a68c5f37c9106bb481ad47c75f25bfbba7470da0cbfb330512fe0422588408f177085c23a5cf0379c13a49c9fce438e8d8b1179c91d50 SHA512 69f77d0681f37deee3f215e71e4410d5c45107d2d0a1addb897de14d7f83bcb3e2285ed9ba605f30db23441a9d7bc9a6960b2a49d53ad71a379d0b874d36d645
24 DIST libinput-gestures-2.38.tar.gz 17054 BLAKE2B 037d095674df9b00c9d23762745d35beaab03d0f5b361030a9177f84c540ef2ef45fb6fa4b9fe80a6500c81a8973aac46019931d8a548b02a6527ba09ca1fc13 SHA512 3152bcb0fd78551be14dda23fdce9f9216fc56e7a2dc4734b73949b4bd9c87fe6c9e2fc95f65a328b46c577abc05889a3a6290c6eb9390a94d9eb254c2fc7550
25
26 diff --git a/x11-misc/libinput-gestures/libinput-gestures-2.36.ebuild b/x11-misc/libinput-gestures/libinput-gestures-2.36.ebuild
27 deleted file mode 100644
28 index a2cf956e87d..00000000000
29 --- a/x11-misc/libinput-gestures/libinput-gestures-2.36.ebuild
30 +++ /dev/null
31 @@ -1,56 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python{3_4,3_5,3_6} )
38 -
39 -inherit gnome2-utils python-single-r1
40 -
41 -DESCRIPTION="Actions gestures on your touchpad using libinput"
42 -HOMEPAGE="https://github.com/bulletmark/libinput-gestures"
43 -if [[ ${PV} == *9999 ]] ; then
44 - inherit git-r3
45 - EGIT_REPO_URI="https://github.com/bulletmark/${PN}.git"
46 -else
47 - SRC_URI="https://github.com/bulletmark/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
48 - KEYWORDS="~amd64 ~x86"
49 -fi
50 -
51 -LICENSE="GPL-3+"
52 -SLOT="0"
53 -IUSE="test"
54 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
55 -RESTRICT="!test? ( test )"
56 -
57 -RDEPEND="${PYTHON_DEPS}
58 - >=dev-libs/libinput-1.8.0
59 - x11-misc/xdotool
60 - x11-misc/wmctrl"
61 -DEPEND=">=dev-libs/libinput-1.8.0
62 - dev-util/desktop-file-utils
63 - test? ( dev-python/flake8[${PYTHON_USEDEP}] )"
64 -
65 -src_prepare() {
66 - default
67 -
68 - # Fix docdir installation path
69 - sed '/^DOCDIR/s@$NAME@${PF}@' -i libinput-gestures-setup || die
70 -}
71 -
72 -pkg_postinst() {
73 - gnome2_icon_cache_update
74 -
75 - elog "You must be in the input group to read the touchpad device."
76 -
77 - if ! has_version x11-libs/gtk+:3 ; then
78 - elog "${PN}-setup script supports Gnome 3 via x11-libs/gtk+:3."
79 - fi
80 - if ! has_version kde-plasma/kde-cli-tools:5 ; then
81 - elog "${PN}-setup script supports Plasma 5 via kde-plasma/kde-cli-tools:5."
82 - fi
83 -}
84 -
85 -pkg_postrm() {
86 - gnome2_icon_cache_update
87 -}