From unknown Tue Jun 17 22:29:17 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39642] [PATCH 1/3] ui: Only display link in capable terminals. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 17 Feb 2020 13:41:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 39642 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39642@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.15819468369066 (code B ref -1); Mon, 17 Feb 2020 13:41:01 +0000 Received: (at submit) by debbugs.gnu.org; 17 Feb 2020 13:40:36 +0000 Received: from localhost ([127.0.0.1]:38157 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3gdY-0002MA-Ht for submit@debbugs.gnu.org; Mon, 17 Feb 2020 08:40:36 -0500 Received: from lists.gnu.org ([209.51.188.17]:57393) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3gdW-0002M2-9p for submit@debbugs.gnu.org; Mon, 17 Feb 2020 08:40:34 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:55925) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3gdV-00018o-34 for guix-patches@gnu.org; Mon, 17 Feb 2020 08:40:34 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j3gdT-0007iJ-Br for guix-patches@gnu.org; Mon, 17 Feb 2020 08:40:32 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:59083) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j3gdT-0007gX-58 for guix-patches@gnu.org; Mon, 17 Feb 2020 08:40:31 -0500 X-Originating-IP: 92.169.129.147 Received: from bababa.home (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 04501E0004 for ; Mon, 17 Feb 2020 13:40:27 +0000 (UTC) From: Pierre Neidhardt Date: Mon, 17 Feb 2020 14:40:27 +0100 Message-Id: <20200217134027.731-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 217.70.183.196 X-Spam-Score: 2.2 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: From: zimoun * guix/ui.scm (display-generation): Display generation path on new line. * guix/scripts/describe.scm (channel-commit-hyperlink): Add TRANSFORMER argument. (display-profile-content): Use TRANSFORMER ar [...] Content analysis details: (2.2 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [209.51.188.17 listed in list.dnswl.org] 0.7 SPF_NEUTRAL SPF: sender does not match SPF record (neutral) 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.7 FROM_SUSPICIOUS_NTLD_FP From abused NTLD X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.5 (/) From: zimoun * guix/ui.scm (display-generation): Display generation path on new line. * guix/scripts/describe.scm (channel-commit-hyperlink): Add TRANSFORMER argument. (display-profile-content): Use TRANSFORMER argument to display URL explicitly when terminal does not support hyperlinks. --- guix/scripts/describe.scm | 16 ++++++++++++---- guix/ui.scm | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm index f13f221da9..9a7bd52163 100644 --- a/guix/scripts/describe.scm +++ b/guix/scripts/describe.scm @@ -201,7 +201,12 @@ way and displaying details about the channel's source code." (format #t (G_ " commit: ~a~%") (if (supports-hyperlinks?) (channel-commit-hyperlink channel commit) - commit)))) + commit)) + (when (not (supports-hyperlinks?) + ) + (format #t (G_ " URL: ~a~%") + (channel-commit-hyperlink channel commit + (lambda (url msg) url)))))) (_ #f))) ;; Show most recently installed packages last. @@ -233,9 +238,12 @@ way and displaying details about the channel's source code." (define* (channel-commit-hyperlink channel #:optional - (commit (channel-commit channel))) + (commit (channel-commit channel)) + (transformer hyperlink)) "Return a hyperlink for COMMIT in CHANNEL, using COMMIT as the hyperlink's -text. The hyperlink links to a web view of COMMIT, when available." +text. The hyperlink links to a web view of COMMIT, when available. +TRANSFORMER is a procedure of 2 arguments, a URI and text, and returns a +string for display." (let* ((url (channel-url channel)) (uri (string->uri url)) (host (and uri (uri-host uri)))) @@ -244,7 +252,7 @@ text. The hyperlink links to a web view of COMMIT, when available." (#f commit) ((_ template) - (hyperlink (template url commit) commit))) + (transformer (template url commit) commit))) commit))) diff --git a/guix/ui.scm b/guix/ui.scm index dce97fb7b9..7e3251446f 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -1636,7 +1636,7 @@ DURATION-RELATION with the current time." (let* ((file (generation-file-name profile number)) (link (if (supports-hyperlinks?) (cut file-hyperlink file <>) - identity)) + (cut format #f (G_ "~a~%file: ~a") <> file))) (header (format #f (link (highlight (G_ "Generation ~a\t~a"))) number (date->string -- 2.25.0 From unknown Tue Jun 17 22:29:17 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39642] [PATCH 2/3] ui: Don't disable colors when INSIDE_EMACS is set. References: <20200217134027.731-1-mail@ambrevar.xyz> In-Reply-To: <20200217134027.731-1-mail@ambrevar.xyz> Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 17 Feb 2020 13:43:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39642 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39642@debbugs.gnu.org Received: via spool by 39642-submit@debbugs.gnu.org id=B39642.15819469709313 (code B ref 39642); Mon, 17 Feb 2020 13:43:01 +0000 Received: (at 39642) by debbugs.gnu.org; 17 Feb 2020 13:42:50 +0000 Received: from localhost ([127.0.0.1]:38167 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3gfi-0002Q6-2v for submit@debbugs.gnu.org; Mon, 17 Feb 2020 08:42:50 -0500 Received: from relay10.mail.gandi.net ([217.70.178.230]:43911) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3gfg-0002Ps-8O for 39642@debbugs.gnu.org; Mon, 17 Feb 2020 08:42:48 -0500 Received: from bababa.home (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay10.mail.gandi.net (Postfix) with ESMTPSA id 9A2D024000A for <39642@debbugs.gnu.org>; Mon, 17 Feb 2020 13:42:46 +0000 (UTC) From: Pierre Neidhardt Date: Mon, 17 Feb 2020 14:42:45 +0100 Message-Id: <20200217134246.2312-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.5 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * guix/colors.scm (color-output?): Remove INSIDE_EMACS condition. --- guix/colors.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guix/colors.scm b/guix/colors.scm index b63ac37027..3031f54799 100644 --- a/guix/colors.scm +++ b/guix/colors.scm @@ -131,8 +131,7 @@ that subsequent output will not have any colors in ef [...] Content analysis details: (1.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.178.230 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.7 FROM_SUSPICIOUS_NTLD_FP From abused NTLD X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.2 (-) * guix/colors.scm (color-output?): Remove INSIDE_EMACS condition. --- guix/colors.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guix/colors.scm b/guix/colors.scm index b63ac37027..3031f54799 100644 --- a/guix/colors.scm +++ b/guix/colors.scm @@ -131,8 +131,7 @@ that subsequent output will not have any colors in effect." (define (color-output? port) "Return true if we should write colored output to PORT." - (and (not (getenv "INSIDE_EMACS")) - (not (getenv "NO_COLOR")) + (and (not (getenv "NO_COLOR")) (isatty?* port))) (define (coloring-procedure color) -- 2.25.0 From unknown Tue Jun 17 22:29:17 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39642] [PATCH 3/3] ui: Don't truncate search output when inside Emacs. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 17 Feb 2020 13:43:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39642 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39642@debbugs.gnu.org Received: via spool by 39642-submit@debbugs.gnu.org id=B39642.15819469709319 (code B ref 39642); Mon, 17 Feb 2020 13:43:02 +0000 Received: (at 39642) by debbugs.gnu.org; 17 Feb 2020 13:42:50 +0000 Received: from localhost ([127.0.0.1]:38169 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3gfi-0002Q9-CO for submit@debbugs.gnu.org; Mon, 17 Feb 2020 08:42:50 -0500 Received: from relay10.mail.gandi.net ([217.70.178.230]:36917) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3gfg-0002Pt-AK for 39642@debbugs.gnu.org; Mon, 17 Feb 2020 08:42:49 -0500 Received: from bababa.home (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay10.mail.gandi.net (Postfix) with ESMTPSA id 01093240006 for <39642@debbugs.gnu.org>; Mon, 17 Feb 2020 13:42:46 +0000 (UTC) From: Pierre Neidhardt Date: Mon, 17 Feb 2020 14:42:46 +0100 Message-Id: <20200217134246.2312-2-mail@ambrevar.xyz> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200217134246.2312-1-mail@ambrevar.xyz> References: <20200217134246.2312-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.2 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.2 (-) * guix/ui.scm (display-search-results): Loop over all results when INSIDE_EMACS is set. --- guix/ui.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guix/ui.scm b/guix/ui.scm index 7e3251446f..77e538ccfb 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -1472,7 +1472,8 @@ them. If PORT is a terminal, print at most a full screen of results." #:hyperlinks? links? #:extra-fields `((relevance . ,score))))))) - (if (and max-rows + (if (and (not (getenv "INSIDE_EMACS")) + max-rows (> (port-line port) first-line) ;print at least one result (> (+ 4 (line-count text) (port-line port)) max-rows)) -- 2.25.0 From unknown Tue Jun 17 22:29:17 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39642] [PATCH 1/3] ui: Only display link in capable terminals. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 17 Feb 2020 16:07:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39642 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 39642@debbugs.gnu.org Received: via spool by 39642-submit@debbugs.gnu.org id=B39642.158195556423764 (code B ref 39642); Mon, 17 Feb 2020 16:07:02 +0000 Received: (at 39642) by debbugs.gnu.org; 17 Feb 2020 16:06:04 +0000 Received: from localhost ([127.0.0.1]:39109 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3iuK-0006BD-GR for submit@debbugs.gnu.org; Mon, 17 Feb 2020 11:06:04 -0500 Received: from mail-qt1-f193.google.com ([209.85.160.193]:32968) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3iuH-0006Ae-Tc for 39642@debbugs.gnu.org; Mon, 17 Feb 2020 11:06:03 -0500 Received: by mail-qt1-f193.google.com with SMTP id d5so12399750qto.0 for <39642@debbugs.gnu.org>; Mon, 17 Feb 2020 08:06:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=q7fCmkUWfgpq1gmnTgXfmC4GZZ/gFh0DKXcGCJI4EwE=; b=f/uwjDm0SLoJ6r2HVBzTcCSrnQvu0jY2fFztwoSYCJ+/F4jY5Dj2Ptfl2RJm1B510w rwLLsz2TjCBLsIg9LV1kV/hJcSiGfsFh+hi27yfmsvjQ7z9qiAVmWKvANV4iOd4z68QB 7pMvmcZRcpI0bOJ188ubHL/upc/AkBiSEZFM+Xt8Ethm0ltmUE3vHeYlMzBIJeF93TUd ObLnYVtiMc+TP3Iy8NcdGXpg2Xhk20HxKqoJLS4nxAjlqC6kQvplvgBjzE3hUxyInWF9 DfoAtENbJUI5DXmA9iJlk18I+s64KBLThGu5rq3iTRXDwZxaALqX8Jh9BykJJyYsDHMN j6XA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=q7fCmkUWfgpq1gmnTgXfmC4GZZ/gFh0DKXcGCJI4EwE=; b=BMhLrN7reAoMCzY/Jpb1ces+ELbIlG+p07I9vOQ7pC9VAy38JGHMUDqN+D/5bHeTtN Ku1FyutqjV2vjvu9pLvzbbl/zJvzNQPR9595ZKwVJdQAdCOgpt9Udzy2qoD0F1Z2lOJ7 MpnrAXfZOv/ui+ZfJprkG6zSMqEs3KCxvdHyGJJBd1l7EQxHl8A5SZb0S5Nhw/CEkLb5 g/lR3Shl44x69mwHQXvDYHnYv5pl1Te8hXrw/+G16dOJrT1lyqpqGzKKSASsaSbB0rjF JszpAD39zoGO1ck9ReA6sL6NrRDcLSgVRZN2nXp9Qq390QfbdZvez2+SZZCdnv5+MoY/ 3cdg== X-Gm-Message-State: APjAAAXT6b+ci7YQ8rOpFz5Y14hVP+MYcsX4egKAa907NL3EhCztlvj9 igDW7LJexwDcMn2Kjs3vUlqTSFKsUhx2U4LODd4= X-Google-Smtp-Source: APXvYqwphQDhIrpnmNxKmJ+7kHGuK/dM63bggV5ovdqIO4qcRVoXqu6vE7GuHfUCyOgGJAWZSPfKGmZfiuhoetY5Hig= X-Received: by 2002:aed:2050:: with SMTP id 74mr13672443qta.217.1581955556405; Mon, 17 Feb 2020 08:05:56 -0800 (PST) MIME-Version: 1.0 References: <20200217134027.731-1-mail@ambrevar.xyz> In-Reply-To: <20200217134027.731-1-mail@ambrevar.xyz> From: zimoun Date: Mon, 17 Feb 2020 17:05:45 +0100 Message-ID: Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi Pierre, Thank you for looking at. :-) On Mon, 17 Feb 2020 at 14:41, Pierre Neidhardt wrote: Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (zimon.toutoune[at]gmail.com) -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.160.193 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [209.85.160.193 listed in wl.mailspike.net] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) Hi Pierre, Thank you for looking at. :-) On Mon, 17 Feb 2020 at 14:41, Pierre Neidhardt wrote: > --- > guix/scripts/describe.scm | 16 ++++++++++++---- > guix/ui.scm | 2 +- > 2 files changed, 13 insertions(+), 5 deletions(-) > > diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm > index f13f221da9..9a7bd52163 100644 > --- a/guix/scripts/describe.scm > +++ b/guix/scripts/describe.scm > @@ -201,7 +201,12 @@ way and displaying details about the channel's source code." > (format #t (G_ " commit: ~a~%") > (if (supports-hyperlinks?) > (channel-commit-hyperlink channel commit) > - commit)))) > + commit)) > + (when (not (supports-hyperlinks?) > + ) Issue on the closing parenthesis ')'. Indent? > @@ -233,9 +238,12 @@ way and displaying details about the channel's source code." > > (define* (channel-commit-hyperlink channel > #:optional > - (commit (channel-commit channel))) > + (commit (channel-commit channel)) > + (transformer hyperlink)) > "Return a hyperlink for COMMIT in CHANNEL, using COMMIT as the hyperlink's > -text. The hyperlink links to a web view of COMMIT, when available." > +text. The hyperlink links to a web view of COMMIT, when available. > +TRANSFORMER is a procedure of 2 arguments, a URI and text, and returns a I do not have tried with another 'transformer' than 'hyperlink' or 'identity'. :-) Cheers, simon From unknown Tue Jun 17 22:29:17 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39642] [PATCH 1/3] ui: Only display link in capable terminals. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 17 Feb 2020 22:20:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39642 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 39642@debbugs.gnu.org Received: via spool by 39642-submit@debbugs.gnu.org id=B39642.158197797025508 (code B ref 39642); Mon, 17 Feb 2020 22:20:01 +0000 Received: (at 39642) by debbugs.gnu.org; 17 Feb 2020 22:19:30 +0000 Received: from localhost ([127.0.0.1]:39338 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3oji-0006dK-25 for submit@debbugs.gnu.org; Mon, 17 Feb 2020 17:19:30 -0500 Received: from mail-qk1-f195.google.com ([209.85.222.195]:40441) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3ojh-0006d9-0K for 39642@debbugs.gnu.org; Mon, 17 Feb 2020 17:19:29 -0500 Received: by mail-qk1-f195.google.com with SMTP id b7so17696635qkl.7 for <39642@debbugs.gnu.org>; Mon, 17 Feb 2020 14:19:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=hq8ZK9byBmXSk6v0dalGmpzbyjw3ykx4Bxk8cIIcgE4=; b=bI8f4ESGBEH7GPtk5emcMWzAlh5f5jBnOAWBfNI6jKhLHdcoyhMfBdfwkPTz641ZNw tYXXmdWDttczBmHFU3aZAnA7eXwXx6UOnRZ+COWfephAa67rMHadOvwtJlx1P/FBy1oM Ue2YQ1LgSAk6a84omChDZRNAfHaNhZw59W9lDbPeh7za06m9psxxh4vy7b5YDzMWjOui IGrbBB8rkV9eAhhZmlZZwstwhTb94JZC59SUgWnrXn1IoV9zAS8+7XAdg3AhpI461doR POdDXlYBOzVtTfNcgJjJb7G7s+QDxBEZp+IiL30r2yjqyfPn+wzyqsGs9nB9aCJonzCQ VkJA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=hq8ZK9byBmXSk6v0dalGmpzbyjw3ykx4Bxk8cIIcgE4=; b=L904pPBqp8TPVI9OaAFwpEi7eOluVzxDy3CcZqga79W7y8S1lEmyXxkg/rE830Mc5n utkhiZM48uzwj5bK5o4Dl2W6LLFxtbFTw5ouC1JJbCscDsVtSdbXMyq7U4hEfsd0r84v o0Cf20v4RMNdoD2YEaye7YZxSGRj6/YRKq5eEmY9b5eNiB1ImDrvRQTmiPGNY+K1/0mU lPkv22ybAKXBuHtSCBGS2l1692lH882/Wp6bvTRQgbeW9HKPDZ75Nee2kzcGC31qeDTr ZwhNnbUQkgNSVSOXSs/QZcZc8fiwfR76gJcLAASPJi4brYD1rnz8ZaaRQ29pkY1ha5zw UPbw== X-Gm-Message-State: APjAAAViO0JB0Md4aWwvMQv0JODH8iUgPEA51kCUNiBi2Vw2MbIBbp3w lU6yC8nBPJ6WyvF2ke1EI6KXncfUX2okINA8l4SwxDI+ X-Google-Smtp-Source: APXvYqzB8KCMBSawcwCK6batsKIcrpv6sxilNy5OGyTCjfoG+gVk+A5dhujiYpOS2Ql+RXl5AxKcNmIblApJHmYlWb8= X-Received: by 2002:a05:620a:124f:: with SMTP id a15mr14742239qkl.201.1581977963618; Mon, 17 Feb 2020 14:19:23 -0800 (PST) MIME-Version: 1.0 References: <20200217134027.731-1-mail@ambrevar.xyz> In-Reply-To: <20200217134027.731-1-mail@ambrevar.xyz> From: zimoun Date: Mon, 17 Feb 2020 23:19:12 +0100 Message-ID: Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi Pierre, On which commit, do you apply this patch? Maybe I am doing wrong, but it is not the file 'guix/scripts/describe.scm' but instead 'guix/scripts/describe.scm'. On Mon, 17 Feb 2020 at 14:41, Pierre Neidhardt wrote: Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (zimon.toutoune[at]gmail.com) -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.222.195 listed in list.dnswl.org] 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.222.195 listed in wl.mailspike.net] X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) Hi Pierre, On which commit, do you apply this patch? Maybe I am doing wrong, but it is not the file 'guix/scripts/describe.scm' but instead 'guix/scripts/describe.scm'. On Mon, 17 Feb 2020 at 14:41, Pierre Neidhardt wrote: > diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm > index f13f221da9..9a7bd52163 100644 > --- a/guix/scripts/describe.scm > +++ b/guix/scripts/describe.scm > @@ -201,7 +201,12 @@ way and displaying details about the channel's source code." This does not apply on master. What do I miss? Because on my checkout, the file which is impacted is 'guix/scripts/pull.scm'. [...] > diff --git a/guix/ui.scm b/guix/ui.scm > index dce97fb7b9..7e3251446f 100644 > --- a/guix/ui.scm > +++ b/guix/ui.scm > @@ -1636,7 +1636,7 @@ DURATION-RELATION with the current time." This seems correct. All the best, simon From unknown Tue Jun 17 22:29:17 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39642] [PATCH 1/3] ui: Only display link in capable terminals. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 18 Feb 2020 07:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39642 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: zimoun Cc: 39642@debbugs.gnu.org Received: via spool by 39642-submit@debbugs.gnu.org id=B39642.158201052219617 (code B ref 39642); Tue, 18 Feb 2020 07:23:02 +0000 Received: (at 39642) by debbugs.gnu.org; 18 Feb 2020 07:22:02 +0000 Received: from localhost ([127.0.0.1]:39476 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3xCj-00056H-Ns for submit@debbugs.gnu.org; Tue, 18 Feb 2020 02:22:01 -0500 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:48217) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3xCh-000565-Ks for 39642@debbugs.gnu.org; Tue, 18 Feb 2020 02:22:00 -0500 X-Originating-IP: 92.169.129.147 Received: from bababa (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 00854240007; Tue, 18 Feb 2020 07:21:57 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: References: <20200217134027.731-1-mail@ambrevar.xyz> Date: Tue, 18 Feb 2020 08:21:56 +0100 Message-ID: <874kvos6ln.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.8 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: zimoun writes: > Hi Pierre, > > On which commit, do you apply this patch? > Maybe I am doing wrong, but it is not the file > 'guix/scripts/describe.scm' but instead 'guix/scripts/describe.scm'. Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.193 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.193 listed in wl.mailspike.net] 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.8 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: zimoun writes: > Hi Pierre, > > On which commit, do you apply this patch? > Maybe I am doing wrong, but it is not the file > 'guix/scripts/describe.scm' but instead 'guix/scripts/describe.scm'. Content analysis details: (1.8 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.193 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.193 listed in wl.mailspike.net] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable zimoun writes: > Hi Pierre, > > On which commit, do you apply this patch? > Maybe I am doing wrong, but it is not the file > 'guix/scripts/describe.scm' but instead 'guix/scripts/describe.scm'. I think you wrote this wrong! :) A few days ago, Ludo moved the code from pull.scm to describe.scm. Update master, you should see the changes. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl5LkJUACgkQm9z0l6S7 zH/8ywgAr6+xwoNowSUrmnQnBWO9fDfZnyfmzLgImNb5g5DESn5XIumTXfhMjA0/ a+3s0sTt0qhYCiaLmu8XDzwszEnaQoWVV8Ou+rBtITtF7yuNa54fXTfFN3B6pFb4 H1qyUzz/IHRih/+JnCygGB7z77Ss+vGgqPTdMXM2DYeN/2Rb1dhNpTKYI+Dk8ZqO Gj8W5DpBLSC6/uuGUbsPJ1PfW8+U1ow3LUQ40byteNnbAe1si17w68nAXJqeuYyq XWPNM/kYgrtnvBvbo528Es+M0njupUx/hcsgcxoaPuXrxMuNKBcDZwD3GIl8dbWS ab+njGMZUn+uFCbzGs2a4Jqq69aEng== =q9RE -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Jun 17 22:29:17 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39642] [PATCH 1/3] ui: Only display link in capable terminals. Resent-From: zimoun Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 18 Feb 2020 08:05:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 39642 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 39642@debbugs.gnu.org Received: via spool by 39642-submit@debbugs.gnu.org id=B39642.158201306823508 (code B ref 39642); Tue, 18 Feb 2020 08:05:01 +0000 Received: (at 39642) by debbugs.gnu.org; 18 Feb 2020 08:04:28 +0000 Received: from localhost ([127.0.0.1]:39499 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3xrn-000676-Ty for submit@debbugs.gnu.org; Tue, 18 Feb 2020 03:04:28 -0500 Received: from mail-qk1-f196.google.com ([209.85.222.196]:34523) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j3xrm-00066q-1s for 39642@debbugs.gnu.org; Tue, 18 Feb 2020 03:04:26 -0500 Received: by mail-qk1-f196.google.com with SMTP id c20so18700481qkm.1 for <39642@debbugs.gnu.org>; Tue, 18 Feb 2020 00:04:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=BoqEwruHRgRjldWy2iNvxRWsN1jHidvazI1uScuGUlA=; b=AEYqL3C/3dWhtSS9LtdKom+1Xt/E6NqKNrhPQtLu0HpsoY5sKXqPZ2nB/A0JQieaec ffWYzGcfbHW7bgBEyrfzFtmX0TVI9t3AuoHQflh0ozxdLZMBA2LSSIsoDxoMvv8Eyz7G u/8QBHco5IXpA7OE0+VSsMX+M2KBZdiCNpK4WIWdIEWEkswmFLTSGoh6c+RDZSp+//h+ WK/9YsboQJYB1fyZSMQ2qQ90qAIWAI8t5XWz77E3b83mQGf7dZMjqLZSus/G/ms3K1Ne tKYtFsKBsHPm54YUFWyriDOcy8qJurRTd29TLT7gI9w2/FsCO8CGFH1/pilNv2GpwKCX oYBA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=BoqEwruHRgRjldWy2iNvxRWsN1jHidvazI1uScuGUlA=; b=P/V/ImhSIwubLL6eL5rkdY7hD+W87MtmiXyhdqwMwtVUaK0Xkp8Tz26tXAJpU6uHPL XtP3eNWNPNxc9yXj+Sv5Ltq+m8FbgXBEbkt+op9j+knDLLOeWvvybps0i3GsOHrPz+u9 ufpSBXn+hHUqCz+Z2eWIi2+7A78JllKR7MLSWd+7MsAtuR8gmmC9YjecWLj1ijSsMoSG /og3iCYImLJrEiPrIGWGxPOxWqws+ykJa49WPOB0IPW7h4RH6Q4U+vEYzMWm8HylgQKf wxygvEt67zEoqOTGa2Qr8L0/ab2qlnMAcjmW0TZ9oG7jwVOgEPxw7Nq7dV+kcfgmwHAh c//g== X-Gm-Message-State: APjAAAWy2aUhX1SKaobQg/XD/xQKICxBkUg7GyuswkyBXBwwiEWOj2aX Z6tDDA4yoNaQhEn3m+PjKJf8/LYUVD6LToGqlBIVZw== X-Google-Smtp-Source: APXvYqxCoev/5rvk4SpNce3Crjegjfn5/sCf+jOSu6HuWE0w3q98nJziR2HVFBwjckz9qivn7S3SUA9kKdeYJwYK2sA= X-Received: by 2002:a05:620a:983:: with SMTP id x3mr17623171qkx.232.1582013060641; Tue, 18 Feb 2020 00:04:20 -0800 (PST) MIME-Version: 1.0 References: <20200217134027.731-1-mail@ambrevar.xyz> <874kvos6ln.fsf@ambrevar.xyz> In-Reply-To: <874kvos6ln.fsf@ambrevar.xyz> From: zimoun Date: Tue, 18 Feb 2020 09:04:09 +0100 Message-ID: Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: On Tue, 18 Feb 2020 at 08:21, Pierre Neidhardt wrote: > A few days ago, Ludo moved the code from pull.scm to describe.scm. > Update master, you should see the changes. Right. On Tuesday 11. This old model of one way sending patches by email and other way pushing silently does not scale. Whatever! Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (zimon.toutoune[at]gmail.com) -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [209.85.222.196 listed in list.dnswl.org] -0.0 RCVD_IN_MSPIKE_H2 RBL: Average reputation (+2) [209.85.222.196 listed in wl.mailspike.net] 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) On Tue, 18 Feb 2020 at 08:21, Pierre Neidhardt wrote: > A few days ago, Ludo moved the code from pull.scm to describe.scm. > Update master, you should see the changes. Right. On Tuesday 11. This old model of one way sending patches by email and other way pushing silently does not scale. Whatever! If you fix the closing parenthesis, it is fine with me. Cheers, simon From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 24 05:18:45 2020 Received: (at control) by debbugs.gnu.org; 24 Feb 2020 10:18:45 +0000 Received: from localhost ([127.0.0.1]:52918 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j6Ap3-0005IV-2m for submit@debbugs.gnu.org; Mon, 24 Feb 2020 05:18:45 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:37769) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j6Ap1-0005I6-5b for control@debbugs.gnu.org; Mon, 24 Feb 2020 05:18:43 -0500 X-Originating-IP: 92.169.129.147 Received: from bababa (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 51D75E0020 for ; Mon, 24 Feb 2020 10:18:35 +0000 (UTC) Date: Mon, 24 Feb 2020 11:18:35 +0100 Message-Id: <8736b0e1ac.fsf@ambrevar.xyz> To: control@debbugs.gnu.org From: Pierre Neidhardt Subject: control message for bug #39642 X-Spam-Score: 0.6 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.2 (-) close 39642 quit