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 6CE7813835A for ; Mon, 26 Apr 2021 15:37:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD0B9E0849; Mon, 26 Apr 2021 15:37:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A6DDDE0849 for ; Mon, 26 Apr 2021 15:37:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AFED0341455 for ; Mon, 26 Apr 2021 15:37:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E82272D for ; Mon, 26 Apr 2021 15:37:35 +0000 (UTC) From: "Sam James" 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" Message-ID: <1619451439.ce410251339bf6d66d9ce2f3e42f359dce1a87b1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/stow/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/stow/Manifest app-admin/stow/stow-2.3.1.ebuild X-VCS-Directories: app-admin/stow/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ce410251339bf6d66d9ce2f3e42f359dce1a87b1 X-VCS-Branch: master Date: Mon, 26 Apr 2021 15:37:35 +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: dbca770b-eda5-4276-9fca-0476cf087ea3 X-Archives-Hash: d94b492b932d112a4d8ef6efcbf45d74 commit: ce410251339bf6d66d9ce2f3e42f359dce1a87b1 Author: Sam James gentoo org> AuthorDate: Mon Apr 26 14:30:42 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 26 15:37:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce410251 app-admin/stow: add verify-sig support Signed-off-by: Sam James gentoo.org> app-admin/stow/Manifest | 1 + app-admin/stow/stow-2.3.1.ebuild | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/app-admin/stow/Manifest b/app-admin/stow/Manifest index 82aa4345f97..46ed86de6b1 100644 --- a/app-admin/stow/Manifest +++ b/app-admin/stow/Manifest @@ -1 +1,2 @@ DIST stow-2.3.1.tar.gz 654191 BLAKE2B 9fd54fd3ff76aa7b72ed973cd6d70b8dc747fa3bb1ecc6bedd221b308d7d141a21a2f077c67efb432f2c7c4fb6bd126639038b196946206bf4a7f95040477ab2 SHA512 e9a7de1a6f10eaf7cdbe6737e0a8be1498e2eac46b6c57e65b83759b061efd1c0db45f7cba123e35428307e3aebe5baef9ea8bd4b5eb6ec5e1b159117a760441 +DIST stow-2.3.1.tar.gz.sig 833 BLAKE2B 9c4e3d5f59f793b629e27fccda6dd6c8934b3055b4104a6452dda866908c89c11845f9da68b1cfa78662421f1642c27c2d5957042d861be26951ca78203b1c2a SHA512 87cf2cb3a5be9b80edb2a4f6ec97e193d67b1301edb87664fec6d3b51a1bedd2635fcddd92825a1efeb383cad3c06662f436d3c9b301e73862775f44b324fff5 diff --git a/app-admin/stow/stow-2.3.1.ebuild b/app-admin/stow/stow-2.3.1.ebuild index 699d43644d5..85cbb9866c5 100644 --- a/app-admin/stow/stow-2.3.1.ebuild +++ b/app-admin/stow/stow-2.3.1.ebuild @@ -3,11 +3,13 @@ EAPI=7 -inherit perl-functions +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/adamspiers.asc +inherit perl-functions verify-sig DESCRIPTION="GNU Stow is a symlink farm manager" HOMEPAGE="https://www.gnu.org/software/stow/ https://git.savannah.gnu.org/cgit/stow.git" SRC_URI="mirror://gnu/stow/${P}.tar.gz" +SRC_URI+=" verify-sig? ( mirror://gnu/stow/${P}.tar.gz.sig )" LICENSE="GPL-3+" SLOT="0" @@ -16,13 +18,14 @@ IUSE="test" RESTRICT="!test? ( test )" RDEPEND="dev-lang/perl:=" -DEPEND=" - ${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" test? ( dev-perl/IO-stringy virtual/perl-Test-Harness dev-perl/Test-Output ) + verify-sig? ( app-crypt/openpgp-keys-adamspiers ) " src_configure() {