From: "pelzflorian (Florian Pelz)" <pelzflorian@pelzflorian.de>
To: 44650@debbugs.gnu.org
Subject: bug#44650: Do not suggest `guix pull --news' after first pull
Date: Sun, 15 Nov 2020 02:56:30 +0100 [thread overview]
Message-ID: <20201115015630.aknnrsoggtsabmfo@pelzflorian.localdomain> (raw)
[-- Attachment #1: Type: text/plain, Size: 1146 bytes --]
After doing a `guix pull` on the new VM image
<https://alpha.gnu.org/gnu/guix/guix-system-vm-image-1.2.0rc1.x86_64-linux.xz>,
the following is displayed:
> hint: Run `guix pull --news' to read all the news.
>
> hint: After setting `PATH', run `hash guix' to make sure your shell refers to `/home/guest/.config/guix/current/bin/guix'.
The former `guix pull --news` is without effect (it is the very first
time I did a `guix pull`). It is a no-op. Users should not get the
suggestion to run `guix pull --news`.
Within (guix scripts pull)’ build-and-install procedure, the value of
(display-channel-news-headlines profile) is <unspecified>.
The attached patch changes it to return #f. I have verified running
`guix pull --news' is not suggested anymore with it (although I have
not tested if news are still displayed).
It would perhaps be nicer if the news since version 1.2.0 were
displayed, but I do not know how to make it so. I guess since the
original guix package must come from the guix package in (gnu packages
package-management), it is impossible to determine the version from
which news should be computed.
Regards,
Florian
[-- Attachment #2: 0001-pull-Do-not-suggest-running-guix-pull-news-on-the-fi.patch --]
[-- Type: text/plain, Size: 1413 bytes --]
From 8da37dc91f2f82da5f1da0ed2b6f0c0602599e5c Mon Sep 17 00:00:00 2001
From: Florian Pelz <pelzflorian@pelzflorian.de>
Date: Sat, 14 Nov 2020 23:36:52 +0100
Subject: [PATCH] pull: Do not suggest running `guix pull --news' on the first
run.
* guix/scripts/pull.scm (display-channel-news-headlines): If there
are no news to display, return false instead of <unspecified>.
---
guix/scripts/pull.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm
index bb1b560a22..38405fb79d 100644
--- a/guix/scripts/pull.scm
+++ b/guix/scripts/pull.scm
@@ -385,7 +385,7 @@ previous generation. Return true if there are news to display."
(and=> (relative-generation profile -1)
(cut generation-file-name profile <>)))
- (when previous
+ (if previous
(let ((old-channels (profile-channels previous))
(new-channels (profile-channels profile)))
;; Find the channels present in both PROFILE and PREVIOUS, and print
@@ -405,7 +405,8 @@ previous generation. Return true if there are news to display."
#:concise? #t)))
channels))
- (any ->bool more?))))))
+ (any ->bool more?))))
+ #f))
(define (display-news profile)
;; Display profile news, with the understanding that this process represents
--
2.29.1
next reply other threads:[~2020-11-15 1:57 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-15 1:56 pelzflorian (Florian Pelz) [this message]
2020-11-15 15:17 ` bug#44650: Do not suggest `guix pull --news' after first pull pelzflorian (Florian Pelz)
2020-11-16 11:35 ` Ludovic Courtès
2020-11-16 13:55 ` pelzflorian (Florian Pelz)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201115015630.aknnrsoggtsabmfo@pelzflorian.localdomain \
--to=pelzflorian@pelzflorian.de \
--cc=44650@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).