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 ED1C413835C for ; Mon, 19 Apr 2021 22:42:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11E13E0867; Mon, 19 Apr 2021 22:42:02 +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 CA165E0863 for ; Mon, 19 Apr 2021 22:42:01 +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 E85E0340E49 for ; Mon, 19 Apr 2021 22:42:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37388729 for ; Mon, 19 Apr 2021 22:41:58 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618872089.318a8ff7020ca0ecde19feaed7c302a2bd24df69.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/gartoon-redux/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild X-VCS-Directories: x11-themes/gartoon-redux/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 318a8ff7020ca0ecde19feaed7c302a2bd24df69 X-VCS-Branch: master Date: Mon, 19 Apr 2021 22:41:58 +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: 46eea07b-2440-4c39-9318-172cff5d232d X-Archives-Hash: 37587e0b87d63c9cccce2fbd90d7b0db commit: 318a8ff7020ca0ecde19feaed7c302a2bd24df69 Author: Sam James gentoo org> AuthorDate: Mon Apr 19 22:12:47 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 19 22:41:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=318a8ff7 x11-themes/gartoon-redux: port to EAPI 7 Signed-off-by: Sam James gentoo.org> .../gartoon-redux/gartoon-redux-1.10-r1.ebuild | 28 +++++++++++++++------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild b/x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild index aeaa7890f99..9d96533afe7 100644 --- a/x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild +++ b/x11-themes/gartoon-redux/gartoon-redux-1.10-r1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit epatch gnome2-utils +EAPI=7 + +inherit gnome2-utils DESCRIPTION="A massively improved variant of the well-known Gartoon theme" HOMEPAGE="https://gnome-look.org/content/show.php/?content=74841" @@ -12,7 +13,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND=" +BDEPEND=" dev-lang/perl dev-perl/Switch gnome-base/librsvg @@ -20,9 +21,9 @@ DEPEND=" RESTRICT="binchecks strip" -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.10-rsvg-convert.patch -} +PATCHES=( + "${FILESDIR}"/${PN}-1.10-rsvg-convert.patch +) src_configure() { # perl script, not autotools based @@ -40,6 +41,15 @@ src_install() { dodoc AUTHORS changelog README TODO } -pkg_preinst() { gnome2_icon_savelist; } -pkg_postinst() { gnome2_icon_cache_update; } -pkg_postrm() { gnome2_icon_cache_update; } +pkg_preinst() { + gnome2_icon_savelist + +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}