From patchwork Fri Mar 3 00:27:34 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander 'lynxis' Couzens X-Patchwork-Id: 734876 X-Patchwork-Delegate: lynxis@fe80.eu Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [65.50.211.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vZ95x27hFz9s7d for ; Fri, 3 Mar 2017 11:28:53 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="ioKPApFD"; dkim-atps=neutral DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id:Subject:Message-Id: Date:To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=SrjAaRulAg5oO3XZCb/77rrybEhakSpb8TU7LqH0uQo=; b=ioKPApFDCp8EMk SN3XwDFZ1JenGXm5yW8uSTBsmJa/uLa0tTx+L8+xwLWjWGlQeximEZiXvarhFi8FTTa9DsSOtB2gv a03Yq2B6kFskaq8JuXj4PaNcIF1fqhzh1NKcRuvBH+qxQywW6CzzF/C+/ipTy/w4i1LxC3Jn1dqXY mXRsB7MfHaTuV7YVHKwFzi9XSv+TxwZbnD0lzWH8NI83aE0S1f3EwU6izWlwis137VBPcFsYBlqFH bbvHqWc1fxLbhxUvMs0y6PjQOdnTf1lfNreSBZuDJSt0g7U9tFvywtSiHq0+lwAyELCgUgT7hfSjJ 7sBPT/wCosS1wchhizUg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux)) id 1cjb5Q-0002BU-3n; Fri, 03 Mar 2017 00:28:44 +0000 Received: from mail.base45.de ([2001:67c:2050:310::a:2]) by bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux)) id 1cjb4x-00027i-Nw for lede-dev@lists.infradead.org; Fri, 03 Mar 2017 00:28:18 +0000 Received: from [91.65.197.121] (helo=lazus.yip) by mail.base45.de with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cjb4X-0004wm-22; Fri, 03 Mar 2017 01:27:49 +0100 From: Alexander Couzens To: lede-dev@lists.infradead.org Date: Fri, 3 Mar 2017 01:27:34 +0100 Message-Id: <20170303002734.9068-1-lynxis@fe80.eu> X-Mailer: git-send-email 2.11.1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20170302_162815_951278_902D319B X-CRM114-Status: UNSURE ( 4.66 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.4.1 on bombadil.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Subject: [LEDE-DEV] [PATCH][buildbot] phase1: rename gpg signature files .gpg -> .asc X-BeenThere: lede-dev@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Alexander Couzens , Jo-Philipp Wich , Felix Fietkau MIME-Version: 1.0 Sender: "Lede-dev" Errors-To: lede-dev-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org gnupg doesn't recognize .gpg files by it's extension. > gpg --verify sha256sums.gpg >> gpg: no signed data >> gpg: can't hash datafile: No data Signed-off-by: Alexander Couzens --- phase1/signall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phase1/signall.sh b/phase1/signall.sh index d256131..2160bdc 100755 --- a/phase1/signall.sh +++ b/phase1/signall.sh @@ -27,7 +27,7 @@ find "$tmpdir/" -type f -not -name "*.gpg" -exec gpg \ ${comment:+--comment="$comment"} \ ${GNUPGHOME:+--homedir "$GNUPGHOME"} \ ${PASSFILE:+--passphrase-file "$PASSFILE"} \ - -o "{}.gpg" "{}" \; || finish 4 + -o "{}.asc" "{}" \; || finish 4 tar -C "$tmpdir/" -czf "$tarball" . || finish 5