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 4616F158089 for ; Wed, 1 Nov 2023 14:03:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D6C72BC02C; Wed, 1 Nov 2023 14:03:09 +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 704122BC02C for ; Wed, 1 Nov 2023 14:03:09 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A819335D0A for ; Wed, 1 Nov 2023 14:03:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C2B812DA for ; Wed, 1 Nov 2023 14:03:05 +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: <1698847219.3eb67faf3b499bc30401e718f9a80bcc0413b40a.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/kitty/kitty-0.30.1.ebuild x11-terms/kitty/kitty-9999.ebuild X-VCS-Directories: x11-terms/kitty/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 3eb67faf3b499bc30401e718f9a80bcc0413b40a X-VCS-Branch: master Date: Wed, 1 Nov 2023 14:03:05 +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: cdf859c2-1386-4859-a06c-49022e6a96f7 X-Archives-Hash: feb4a840e94d85598aeb5a77596b8d9b commit: 3eb67faf3b499bc30401e718f9a80bcc0413b40a Author: Ionen Wolkens gentoo org> AuthorDate: Wed Nov 1 13:55:57 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Nov 1 14:00:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eb67faf x11-terms/kitty: revert back to old verify-sig handling Does not change much in this case (need src_unpack either way), but if no longer need to pass BROOT then would rather keep the variable where it's typically found (otherwise this is the only ebuild in the tree using this as a local variable). Signed-off-by: Ionen Wolkens gentoo.org> x11-terms/kitty/kitty-0.30.1.ebuild | 5 ++--- x11-terms/kitty/kitty-9999.ebuild | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/x11-terms/kitty/kitty-0.30.1.ebuild b/x11-terms/kitty/kitty-0.30.1.ebuild index e8ed6e9ed433..aa40b2f334ac 100644 --- a/x11-terms/kitty/kitty-0.30.1.ebuild +++ b/x11-terms/kitty/kitty-0.30.1.ebuild @@ -16,6 +16,7 @@ else https://dev.gentoo.org/~ionen/distfiles/${P}-vendor.tar.xz verify-sig? ( https://github.com/kovidgoyal/kitty/releases/download/v${PV}/${P}.tar.xz.sig ) " + VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kovidgoyal.gpg KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86" fi @@ -86,10 +87,8 @@ src_unpack() { cd "${S}" || die edo go mod vendor else - if use verify-sig; then - local VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kovidgoyal.gpg + use verify-sig && verify-sig_verify_detached "${DISTDIR}"/${P}.tar.xz{,.sig} - fi default fi } diff --git a/x11-terms/kitty/kitty-9999.ebuild b/x11-terms/kitty/kitty-9999.ebuild index bcc646853001..b36e8889ca4f 100644 --- a/x11-terms/kitty/kitty-9999.ebuild +++ b/x11-terms/kitty/kitty-9999.ebuild @@ -16,6 +16,7 @@ else https://dev.gentoo.org/~ionen/distfiles/${P}-vendor.tar.xz verify-sig? ( https://github.com/kovidgoyal/kitty/releases/download/v${PV}/${P}.tar.xz.sig ) " + VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kovidgoyal.gpg KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" fi @@ -86,10 +87,8 @@ src_unpack() { cd "${S}" || die edo go mod vendor else - if use verify-sig; then - local VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kovidgoyal.gpg + use verify-sig && verify-sig_verify_detached "${DISTDIR}"/${P}.tar.xz{,.sig} - fi default fi }