From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51198) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLu8h-0001Ao-J1 for guix-patches@gnu.org; Tue, 07 Apr 2020 15:44:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLu8g-0001PU-E5 for guix-patches@gnu.org; Tue, 07 Apr 2020 15:44:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39441) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jLu8f-0001Oh-VW for guix-patches@gnu.org; Tue, 07 Apr 2020 15:44:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jLu8f-0000b1-So for guix-patches@gnu.org; Tue, 07 Apr 2020 15:44:01 -0400 Subject: [bug#40061] [Patch] rebase and fix wording References: <4553177.31r3eYUQgx@cherry> In-Reply-To: <4553177.31r3eYUQgx@cherry> Resent-Message-ID: Date: Tue, 07 Apr 2020 21:43:39 +0200 Message-ID: <5662160.DvuYhMxLoT@cherry> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart5906644.lOV4Wx5bFT" Content-Transfer-Encoding: 7Bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" Reply-to: Tom Zander , Tom Zander via Guix-patches From: Tom Zander via Guix-patches via To: 40061@debbugs.gnu.org This is a multi-part message in MIME format. --nextPart5906644.lOV4Wx5bFT Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" -- Tom Zander --nextPart5906644.lOV4Wx5bFT Content-Disposition: attachment; filename="0001-Allow-double-click-select-of-URL-in-status.patch" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="UTF-8"; name="0001-Allow-double-click-select-of-URL-in-status.patch" >From a9a7f4c8bf513aeac95f7d1bc87c6edddefec0d0 Mon Sep 17 00:00:00 2001 From: TomZ Date: Tue, 7 Apr 2020 21:39:04 +0200 Subject: [PATCH] Allow double-click select of URL in status Various places while downloading or compiling guix prints the source URL. This change makes the URL easier to use by placing a space between the URL and the trailing dots. --- guix/status.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guix/status.scm b/guix/status.scm index 4b2edc2f3c..45e441eac5 100644 --- a/guix/status.scm +++ b/guix/status.scm @@ -472,16 +472,16 @@ addition to build events." (let ((count (match (assq-ref properties 'graft) (#f 0) (lst (or (assq-ref lst 'count) 0))))) - (format port (info (N_ "applying ~a graft for ~a..." - "applying ~a grafts for ~a..." + (format port (info (N_ "applying ~a graft for ~a ..." + "applying ~a grafts for ~a ..." count)) count drv))) ('profile (let ((count (match (assq-ref properties 'profile) (#f 0) (lst (or (assq-ref lst 'count) 0))))) - (format port (info (N_ "building profile with ~a package..." - "building profile with ~a packages..." + (format port (info (N_ "building profile with ~a package ..." + "building profile with ~a packages ..." count)) count))) ('profile-hook @@ -525,7 +525,7 @@ addition to build events." (newline port))) (('download-started item uri _ ...) (erase-current-line*) - (format port (info (G_ "downloading from ~a...")) uri) + (format port (info (G_ "downloading from ~a ...")) uri) (newline port)) (('download-progress item uri (= string->number size) -- 2.25.1 --nextPart5906644.lOV4Wx5bFT--