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 99DCC1382C5 for ; Tue, 15 Jun 2021 20:02:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B642BE0869; Tue, 15 Jun 2021 20:02:16 +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 9D8A6E0825 for ; Tue, 15 Jun 2021 20:02:16 +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 58D61340E0F for ; Tue, 15 Jun 2021 20:02:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF8137AE for ; Tue, 15 Jun 2021 20:02:13 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1623787217.651d45506f3e1abb601ef1cce28376e4dae3f9bd.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/mrrescue/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/mrrescue/mrrescue-1.02b-r2.ebuild X-VCS-Directories: games-arcade/mrrescue/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 651d45506f3e1abb601ef1cce28376e4dae3f9bd X-VCS-Branch: master Date: Tue, 15 Jun 2021 20:02:13 +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: 77d2de38-04fc-40df-a83e-a8b76f9ac83a X-Archives-Hash: 933e8a1e979416d592c7581f28cfa9be commit: 651d45506f3e1abb601ef1cce28376e4dae3f9bd Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Jun 9 17:04:38 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Jun 15 20:00:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=651d4550 games-arcade/mrrescue: EAPI bump, update eclass usage Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Ionen Wolkens gentoo.org> games-arcade/mrrescue/mrrescue-1.02b-r2.ebuild | 26 ++++++-------------------- 1 file changed, 6 insertions(+), 20 deletions(-) diff --git a/games-arcade/mrrescue/mrrescue-1.02b-r2.ebuild b/games-arcade/mrrescue/mrrescue-1.02b-r2.ebuild index b770ad759c8..a34d56ef321 100644 --- a/games-arcade/mrrescue/mrrescue-1.02b-r2.ebuild +++ b/games-arcade/mrrescue/mrrescue-1.02b-r2.ebuild @@ -1,25 +1,23 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit desktop eutils gnome2-utils +inherit desktop wrapper xdg DESCRIPTION="Arcade 2d action game based around evacuating civilians from burning buildings" HOMEPAGE="https://tangramgames.dk/games/mrrescue/" SRC_URI="https://github.com/SimonLarsen/mrrescue/releases/download/v${PV}/${P}-love.zip - https://dev.gentoo.org/~hasufell/distfiles/${PN}.png" + mirror://gentoo/${PN}.png" +S="${WORKDIR}/${P}-love" LICENSE="CC-BY-SA-3.0 MIT ZLIB" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" LVSLOT="0.8" RDEPEND="games-engines/love:${LVSLOT}" -DEPEND="app-arch/unzip" - -S="${WORKDIR}/${P}-love" +BDEPEND="app-arch/unzip" src_install() { local dir=/usr/share/love/${PN} @@ -33,15 +31,3 @@ src_install() { make_wrapper ${PN} "love-${LVSLOT} ${PN}.love" "${dir}" make_desktop_entry ${PN} } - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -}