diff options
author | Vladimir Pavljuchenkov (SpiderX) <spiderx@spiderx.dp.ua> | 2019-10-05 19:19:32 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-11-17 10:31:30 +0200 |
commit | 25f4f92642cbcd5ce2710fa8dbb704315be3a4bd (patch) | |
tree | 45cde9fbd004c48034d196f993aa019d92df7853 /x11-misc | |
parent | x11-misc/libinput-gestures: version bump to 2.45 (diff) | |
download | gentoo-25f4f92642cbcd5ce2710fa8dbb704315be3a4bd.tar.gz gentoo-25f4f92642cbcd5ce2710fa8dbb704315be3a4bd.tar.bz2 gentoo-25f4f92642cbcd5ce2710fa8dbb704315be3a4bd.zip |
x11-misc/libinput-gestures: update live ebuild
1. replace gnome2-utils by xdg-utils
2. EAPI 7
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Vladimir Pavljuchenkov <spiderx@spiderx.dp.ua>
Closes: https://github.com/gentoo/gentoo/pull/13168
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/libinput-gestures/libinput-gestures-9999.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11-misc/libinput-gestures/libinput-gestures-9999.ebuild b/x11-misc/libinput-gestures/libinput-gestures-9999.ebuild index 73b3a4132933..213fbc54cfab 100644 --- a/x11-misc/libinput-gestures/libinput-gestures-9999.ebuild +++ b/x11-misc/libinput-gestures/libinput-gestures-9999.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python3_{5..7} ) -inherit gnome2-utils python-single-r1 +inherit python-single-r1 xdg-utils DESCRIPTION="Actions gestures on your touchpad using libinput" HOMEPAGE="https://github.com/bulletmark/libinput-gestures" @@ -39,7 +39,7 @@ src_prepare() { src_test() { :; } pkg_postinst() { - gnome2_icon_cache_update + xdg_icon_cache_update elog "You must be in the input group to read the touchpad device." @@ -52,5 +52,5 @@ pkg_postinst() { } pkg_postrm() { - gnome2_icon_cache_update + xdg_icon_cache_update } |