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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D7E65158094 for ; Fri, 26 Aug 2022 14:28:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC15AE08E0; Fri, 26 Aug 2022 14:28:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C88DEE08E0 for ; Fri, 26 Aug 2022 14:28:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 978C4340B81 for ; Fri, 26 Aug 2022 14:28:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F162B526 for ; Fri, 26 Aug 2022 14:28:14 +0000 (UTC) From: "Oliver Freyermuth" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Oliver Freyermuth" Message-ID: <1661524035.9d7d7550f7ddad09faaa0f8c00a8ddd6771794a8.freyermuth@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/afc/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/afc/afc-1.1.ebuild app-misc/afc/afc-9999.ebuild X-VCS-Directories: app-misc/afc/ X-VCS-Committer: freyermuth X-VCS-Committer-Name: Oliver Freyermuth X-VCS-Revision: 9d7d7550f7ddad09faaa0f8c00a8ddd6771794a8 X-VCS-Branch: dev Date: Fri, 26 Aug 2022 14:28:14 +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: 1aff1d54-397e-48cc-afa4-efa755da40f9 X-Archives-Hash: c2a31b9bc520e17ce2b5e52730339b7a commit: 9d7d7550f7ddad09faaa0f8c00a8ddd6771794a8 Author: Oliver Freyermuth googlemail com> AuthorDate: Fri Aug 26 14:27:15 2022 +0000 Commit: Oliver Freyermuth googlemail com> CommitDate: Fri Aug 26 14:27:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9d7d7550 app-misc/afc: Reduce superfluous ebuild complexity. Thanks @thesamesam for the helpful comments! Signed-off-by: Oliver Freyermuth googlemail.com> app-misc/afc/afc-1.1.ebuild | 4 +--- app-misc/afc/afc-9999.ebuild | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/app-misc/afc/afc-1.1.ebuild b/app-misc/afc/afc-1.1.ebuild index 8dd4cc7ce..24d89f614 100644 --- a/app-misc/afc/afc-1.1.ebuild +++ b/app-misc/afc/afc-1.1.ebuild @@ -12,13 +12,11 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/olifre/${PN}.git" else - SRC_URI="https://github.com/olifre/${PN}/archive/${PV}.tar.gz -> ${PN}-${PV}.tar.gz" + SRC_URI="https://github.com/olifre/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${PN}-${PV}" fi LICENSE="GPL-3+" SLOT="0" -IUSE="" DEPEND="sys-libs/zlib" diff --git a/app-misc/afc/afc-9999.ebuild b/app-misc/afc/afc-9999.ebuild index 8dd4cc7ce..24d89f614 100644 --- a/app-misc/afc/afc-9999.ebuild +++ b/app-misc/afc/afc-9999.ebuild @@ -12,13 +12,11 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/olifre/${PN}.git" else - SRC_URI="https://github.com/olifre/${PN}/archive/${PV}.tar.gz -> ${PN}-${PV}.tar.gz" + SRC_URI="https://github.com/olifre/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${PN}-${PV}" fi LICENSE="GPL-3+" SLOT="0" -IUSE="" DEPEND="sys-libs/zlib"