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 70526158528 for ; Thu, 25 Jan 2024 10:49:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6ACEFE2A8C; Thu, 25 Jan 2024 10:49:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4EFF7E2A89 for ; Thu, 25 Jan 2024 10:49:20 +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 AD73534341A for ; Thu, 25 Jan 2024 10:49:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F51814BE for ; Thu, 25 Jan 2024 10:49:16 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1706121844.29b8e449e6dd6b97cdc7610257dceef3f8604ea7.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-admin/chezmoi/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/chezmoi/chezmoi-2.39.1.ebuild X-VCS-Directories: app-admin/chezmoi/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 29b8e449e6dd6b97cdc7610257dceef3f8604ea7 X-VCS-Branch: master Date: Thu, 25 Jan 2024 10:49:16 +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: c24102ec-0ebf-43d1-badb-579548f3aa5e X-Archives-Hash: f435595c6beece0ed39b32129d2f687f commit: 29b8e449e6dd6b97cdc7610257dceef3f8604ea7 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Jan 24 12:42:41 2024 +0000 Commit: David Roman gmail com> CommitDate: Wed Jan 24 18:44:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=29b8e449 app-admin/chezmoi: keyword 2.39.1 for ~arm64 Closes: https://bugs.gentoo.org/922786 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> app-admin/chezmoi/chezmoi-2.39.1.ebuild | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/app-admin/chezmoi/chezmoi-2.39.1.ebuild b/app-admin/chezmoi/chezmoi-2.39.1.ebuild index 1e79acb628..6cd3fb73b6 100644 --- a/app-admin/chezmoi/chezmoi-2.39.1.ebuild +++ b/app-admin/chezmoi/chezmoi-2.39.1.ebuild @@ -12,31 +12,27 @@ SRC_URI+=" https://github.com/rebtoor/portage-deps/raw/master/${P}-deps.tar.xz" LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm64 ~x86" RESTRICT="mirror" DEPEND="dev-vcs/git" RDEPEND="${DEPEND}" src_compile() { - go build -o ${PN} -v -work -x -ldflags \ - "-X main.version=${PV} -X main.date=$(date -u +%Y-%m-%dT%H:%M:%SZ)" \ - || die "compile failed" + ego build -o ${PN} -v -work -x -ldflags \ + "-X main.version=${PV} -X main.date=$(date -u +%Y-%m-%dT%H:%M:%SZ)" } src_test() { - go test -ldflags \ + ego test -ldflags \ "-X github.com/twpayne/chezmoi/v2/pkg/chezmoitest.umaskStr=0o022" - go test -ldflags \ - "-X github.com/twpayne/chezmoi/v2/pkg/chezmoitest.umaskStr=0o002" } src_install() { dobin ${PN} + einstalldocs newbashcomp completions/${PN}-completion.bash ${PN} - dofishcomp completions/${PN}.fish - newzshcomp completions/${PN}.zsh _${PN} }