Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/libinput-gestures/
Date: Sun, 17 Nov 2019 08:31:49
Message-Id: 1573979490.25f4f92642cbcd5ce2710fa8dbb704315be3a4bd.juippis@gentoo
1 commit: 25f4f92642cbcd5ce2710fa8dbb704315be3a4bd
2 Author: Vladimir Pavljuchenkov (SpiderX) <spiderx <AT> spiderx <DOT> dp <DOT> ua>
3 AuthorDate: Sat Oct 5 16:19:32 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 08:31:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25f4f926
7
8 x11-misc/libinput-gestures: update live ebuild
9
10 1. replace gnome2-utils by xdg-utils
11 2. EAPI 7
12
13 Package-Manager: Portage-2.3.76, Repoman-2.3.16
14 Signed-off-by: Vladimir Pavljuchenkov <spiderx <AT> spiderx.dp.ua>
15 Closes: https://github.com/gentoo/gentoo/pull/13168
16 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
17
18 x11-misc/libinput-gestures/libinput-gestures-9999.ebuild | 8 ++++----
19 1 file changed, 4 insertions(+), 4 deletions(-)
20
21 diff --git a/x11-misc/libinput-gestures/libinput-gestures-9999.ebuild b/x11-misc/libinput-gestures/libinput-gestures-9999.ebuild
22 index 73b3a413293..213fbc54cfa 100644
23 --- a/x11-misc/libinput-gestures/libinput-gestures-9999.ebuild
24 +++ b/x11-misc/libinput-gestures/libinput-gestures-9999.ebuild
25 @@ -1,11 +1,11 @@
26 # Copyright 1999-2019 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 -EAPI=6
30 +EAPI=7
31
32 PYTHON_COMPAT=( python3_{5..7} )
33
34 -inherit gnome2-utils python-single-r1
35 +inherit python-single-r1 xdg-utils
36
37 DESCRIPTION="Actions gestures on your touchpad using libinput"
38 HOMEPAGE="https://github.com/bulletmark/libinput-gestures"
39 @@ -39,7 +39,7 @@ src_prepare() {
40 src_test() { :; }
41
42 pkg_postinst() {
43 - gnome2_icon_cache_update
44 + xdg_icon_cache_update
45
46 elog "You must be in the input group to read the touchpad device."
47
48 @@ -52,5 +52,5 @@ pkg_postinst() {
49 }
50
51 pkg_postrm() {
52 - gnome2_icon_cache_update
53 + xdg_icon_cache_update
54 }