From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1553999-garchives=archives.gentoo.org@lists.gentoo.org>
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 DB726158089
	for <garchives@archives.gentoo.org>; Wed, 13 Sep 2023 03:49:24 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 05FD12BC14D;
	Wed, 13 Sep 2023 03:49:23 +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))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id DC5D82BC14D
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Sep 2023 03:49:22 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 02874335CD2
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Sep 2023 03:49:22 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F81B1192
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Sep 2023 03:49:19 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1694576883.63dc3e942ba601c0bbcfba8e7b9ab2e10126b438.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/go-updater/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-admin/go-updater/go-updater-0.2.0-r1.ebuild app-admin/go-updater/go-updater-0.2.0.ebuild
X-VCS-Directories: app-admin/go-updater/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 63dc3e942ba601c0bbcfba8e7b9ab2e10126b438
X-VCS-Branch: master
Date: Wed, 13 Sep 2023 03:49:19 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: ff53677e-f3cf-4590-8246-8e8b6871a0ff
X-Archives-Hash: 13af9ae903d61ad107227abf3aebe6a9

commit:     63dc3e942ba601c0bbcfba8e7b9ab2e10126b438
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Sun Sep 10 23:34:46 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 03:48:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63dc3e94

app-admin/go-updater: update EAPI 6 -> 8

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../{go-updater-0.2.0.ebuild => go-updater-0.2.0-r1.ebuild}   | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/app-admin/go-updater/go-updater-0.2.0.ebuild b/app-admin/go-updater/go-updater-0.2.0-r1.ebuild
similarity index 81%
rename from app-admin/go-updater/go-updater-0.2.0.ebuild
rename to app-admin/go-updater/go-updater-0.2.0-r1.ebuild
index 78dc6698a598..40d7411844b6 100644
--- a/app-admin/go-updater/go-updater-0.2.0.ebuild
+++ b/app-admin/go-updater/go-updater-0.2.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DESCRIPTION="Checks if Gentoo go packages are compiled with the system's golang version"
 HOMEPAGE="https://github.com/mrueg/go-updater"
@@ -10,15 +10,12 @@ SRC_URI="https://github.com/mrueg/go-updater/archive/${PV}.tar.gz -> ${P}.tar.gz
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE=""
 
 RDEPEND="dev-go/goversion"
 
-src_compile() {
-	:;
-}
+src_compile() { :; }
 
 src_install() {
-	dobin ${PN}
+	dobin "${PN}"
 	dodoc README.md
 }