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 6E55E13835B for ; Wed, 14 Oct 2020 09:21:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA5A7E0841; Wed, 14 Oct 2020 09:21:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7010AE0841 for ; Wed, 14 Oct 2020 09:21:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 362C033BDF5 for ; Wed, 14 Oct 2020 09:21:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A78E83A4 for ; Wed, 14 Oct 2020 09:21:21 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1602667273.a67e9d92ed3a1a5671a10ff3f17f46876c2ce4a7.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/verify-sig.eclass X-VCS-Directories: eclass/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: a67e9d92ed3a1a5671a10ff3f17f46876c2ce4a7 X-VCS-Branch: master Date: Wed, 14 Oct 2020 09:21:21 +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: 2a6f5db0-bdc4-4f7a-ae7c-88d755ac96ca X-Archives-Hash: f74afbd2921cb5da74edb65d3b54c01b commit: a67e9d92ed3a1a5671a10ff3f17f46876c2ce4a7 Author: Joonas Niilola gentoo org> AuthorDate: Wed Oct 14 06:26:56 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Oct 14 09:21:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a67e9d92 verify-sig.eclass: allow .asc PGP signatures Signed-off-by: Joonas Niilola gentoo.org> eclass/verify-sig.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/verify-sig.eclass b/eclass/verify-sig.eclass index 2c9708f2459..5448bf2155d 100644 --- a/eclass/verify-sig.eclass +++ b/eclass/verify-sig.eclass @@ -119,7 +119,7 @@ verify-sig_src_unpack() { # find all distfiles and signatures, and combine them for f in ${A}; do found= - for suffix in .sig; do + for suffix in .asc .sig; do if [[ ${f} == *${suffix} ]]; then signatures+=( "${f}" ) found=sig