From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 27895138334 for ; Sun, 17 Nov 2019 08:31:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54B1EE0863; Sun, 17 Nov 2019 08:31:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 356AAE0863 for ; Sun, 17 Nov 2019 08:31:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74C5034CEEF for ; Sun, 17 Nov 2019 08:31:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC6508AE for ; Sun, 17 Nov 2019 08:31:43 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1573979490.25f4f92642cbcd5ce2710fa8dbb704315be3a4bd.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/libinput-gestures/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/libinput-gestures/libinput-gestures-9999.ebuild X-VCS-Directories: x11-misc/libinput-gestures/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 25f4f92642cbcd5ce2710fa8dbb704315be3a4bd X-VCS-Branch: master Date: Sun, 17 Nov 2019 08:31:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 73698171-e471-41d1-831e-c518bc01a5a4 X-Archives-Hash: 3461a11ddbe22a8b9908a9f75090d261 commit: 25f4f92642cbcd5ce2710fa8dbb704315be3a4bd Author: Vladimir Pavljuchenkov (SpiderX) spiderx dp ua> AuthorDate: Sat Oct 5 16:19:32 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Nov 17 08:31:30 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25f4f926 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.dp.ua> Closes: https://github.com/gentoo/gentoo/pull/13168 Signed-off-by: Joonas Niilola gentoo.org> x11-misc/libinput-gestures/libinput-gestures-9999.ebuild | 8 ++++---- 1 file 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 73b3a413293..213fbc54cfa 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 }