From patchwork Fri Nov 1 21:48:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Whitcroft X-Patchwork-Id: 1188197 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 474bRM6r6Hz9sPK; Sat, 2 Nov 2019 08:48:31 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1iQemR-0005Xs-U9; Fri, 01 Nov 2019 21:48:27 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iQemO-0005WO-Gr for kernel-team@lists.ubuntu.com; Fri, 01 Nov 2019 21:48:24 +0000 Received: from 1.general.apw.uk.vpn ([10.172.192.78] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iQemO-0002EC-8s; Fri, 01 Nov 2019 21:48:24 +0000 From: Andy Whitcroft To: kernel-team@lists.ubuntu.com Subject: [{B, D, E, F}/master 2/2] UBUNTU: [Packaging] dkms -- dkms-build quieten wget verbiage Date: Fri, 1 Nov 2019 21:48:22 +0000 Message-Id: <20191101214822.76610-3-apw@canonical.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20191101214822.76610-1-apw@canonical.com> References: <20191101214822.76610-1-apw@canonical.com> MIME-Version: 1.0 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Andy Whitcroft Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" wget tends to be excessivly chatty. Request a less verbose output (-nv) while retaining files downloaded or failure for the same. BugLink: http://bugs.launchpad.net/bugs/1850958 Signed-off-by: Andy Whitcroft --- debian/scripts/dkms-build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/scripts/dkms-build b/debian/scripts/dkms-build index 3c3c28f75c43..1e5dbcc0f9bb 100755 --- a/debian/scripts/dkms-build +++ b/debian/scripts/dkms-build @@ -53,7 +53,7 @@ do case "$package_path" in pool/*) # Attempt download from the launchpad librarian first. - wget "https://launchpad.net/ubuntu/+archive/primary/+files/$package_file" || true + wget -nv "https://launchpad.net/ubuntu/+archive/primary/+files/$package_file" || true if package_present "$lpackage"; then break fi @@ -73,14 +73,14 @@ do break fi url="$pool/$package_path" - wget "$url" && break || true + wget -nv "$url" && break || true # No components in PPAs. url=$(echo "$url" | sed -e 's@/pool/[^/]*/@/pool/main/@') - wget "$url" && break || true + wget -nv "$url" && break || true done ;; http*:*) - wget "$package_path" + wget -nv "$package_path" ;; */*) cp -p "$package_path" .