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 9D450139360 for ; Sun, 8 Aug 2021 09:54:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CFCCE084E; Sun, 8 Aug 2021 09:54:33 +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 6B0D8E0841 for ; Sun, 8 Aug 2021 09:54:33 +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 14433342DAB for ; Sun, 8 Aug 2021 09:54:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E35085A for ; Sun, 8 Aug 2021 09:54:30 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1628416459.b73bfddaea9607d05525bb371a7f953b2165e981.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/dolphin/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild games-emulation/dolphin/dolphin-9999.ebuild X-VCS-Directories: games-emulation/dolphin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b73bfddaea9607d05525bb371a7f953b2165e981 X-VCS-Branch: master Date: Sun, 8 Aug 2021 09:54:30 +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: fec1927b-b636-4967-a8da-e4463a16dd95 X-Archives-Hash: 639b7e4ee7ee43b981372322d61b4f06 commit: b73bfddaea9607d05525bb371a7f953b2165e981 Author: Michał Górny gentoo org> AuthorDate: Sun Aug 8 08:44:10 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 8 09:54:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b73bfdda games-emulation/dolphin: Remove vcs-snapshot.eclass Signed-off-by: Michał Górny gentoo.org> games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild | 6 +++--- games-emulation/dolphin/dolphin-9999.ebuild | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild b/games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild index ac9393e5df3..3cf993b7b21 100644 --- a/games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild +++ b/games-emulation/dolphin/dolphin-5.0_p20210506-r1.ebuild @@ -10,9 +10,9 @@ then EGIT_REPO_URI="https://github.com/dolphin-emu/dolphin" inherit git-r3 else - inherit vcs-snapshot - commit=eb5cd9be78c76b9ccbab9e5fbd1721ef6876cd68 - SRC_URI="https://github.com/dolphin-emu/dolphin/archive/${commit}.tar.gz -> ${P}.tar.gz" + EGIT_COMMIT=eb5cd9be78c76b9ccbab9e5fbd1721ef6876cd68 + SRC_URI="https://github.com/dolphin-emu/dolphin/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + S=${WORKDIR}/${PN}-${EGIT_COMMIT} KEYWORDS="~amd64 ~arm64" fi diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index 29779609bc0..1fc6ba66f6b 100644 --- a/games-emulation/dolphin/dolphin-9999.ebuild +++ b/games-emulation/dolphin/dolphin-9999.ebuild @@ -11,10 +11,10 @@ then EGIT_SUBMODULES=( Externals/mGBA/mgba ) inherit git-r3 else - inherit vcs-snapshot - commit=0dbe8fb2eaa608a6540df3d269648a596c29cf4b - SRC_URI="https://github.com/dolphin-emu/dolphin/archive/${commit}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" + EGIT_COMMIT=eb5cd9be78c76b9ccbab9e5fbd1721ef6876cd68 + SRC_URI="https://github.com/dolphin-emu/dolphin/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + S=${WORKDIR}/${PN}-${EGIT_COMMIT} + KEYWORDS="~amd64 ~arm64" fi DESCRIPTION="Gamecube and Wii game emulator"