From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 514B1C433EF for ; Tue, 16 Nov 2021 22:53:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2D36361BBD for ; Tue, 16 Nov 2021 22:53:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232129AbhKPW4j (ORCPT ); Tue, 16 Nov 2021 17:56:39 -0500 Received: from dcvr.yhbt.net ([64.71.152.64]:43866 "EHLO dcvr.yhbt.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231911AbhKPW4i (ORCPT ); Tue, 16 Nov 2021 17:56:38 -0500 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 970CA1FA00; Tue, 16 Nov 2021 22:44:56 +0000 (UTC) From: Eric Wong To: io-uring@vger.kernel.org Cc: Liu Changcheng , Stefan Metzmacher Subject: [PATCH 2/4] debian: avoid prompting package builder for signature Date: Tue, 16 Nov 2021 22:44:54 +0000 Message-Id: <20211116224456.244746-3-e@80x24.org> In-Reply-To: <20211116224456.244746-1-e@80x24.org> References: <20211116224456.244746-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org By setting the distribution to "UNRELEASED", debuild(1) will no longer prompt users to sign the package(s). I expect most users building these Debian packages with make-debs.sh will be using them locally on a development system which may not have private keys. AFAIK the official Debian package is maintained separately at , and won't be affected by this change. Signed-off-by: Eric Wong --- debian/changelog | 6 ++++++ make-debs.sh | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index f0032e3..fbc361b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +liburing (2.0-1) UNRELEASED; urgency=low + + * development package built for local use + + -- Local User Tue, 16 Nov 2021 18:04:09 +0000 + liburing (0.7-1) stable; urgency=low * Update to 0.7 diff --git a/make-debs.sh b/make-debs.sh index 136b79e..aea05f0 100755 --- a/make-debs.sh +++ b/make-debs.sh @@ -20,7 +20,10 @@ set -o pipefail # Create dir for build base=${1:-/tmp/release} -codename=$(lsb_release -sc) + +# UNRELEASED here means debuild won't prompt for signing +codename=UNRELEASED + releasedir=$base/$(lsb_release -si)/liburing rm -rf $releasedir mkdir -p $releasedir