guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu-maintenance: Exclude GNU Radio from the 'gnu-ftp' updater pre


From: guix-commits
Subject: 03/03: gnu-maintenance: Exclude GNU Radio from the 'gnu-ftp' updater predicate.
Date: Sun, 21 Mar 2021 18:42:10 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit cab18315288a00131e04d1e5720039f5a44c1975
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Mar 21 23:28:13 2021 +0100

    gnu-maintenance: Exclude GNU Radio from the 'gnu-ftp' updater predicate.
    
    'gnu-ftp' would only list old GNU Radio releases since new releases are
    no longer uploaded to ftp.gnu.org.  With this change, 'generic-html' is
    picked up instead.
    
    * guix/gnu-maintenance.scm (pure-gnu-package?): Return #f for GNU Radio.
---
 guix/gnu-maintenance.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/guix/gnu-maintenance.scm b/guix/gnu-maintenance.scm
index 7bd08c1..031a899 100644
--- a/guix/gnu-maintenance.scm
+++ b/guix/gnu-maintenance.scm
@@ -610,11 +610,12 @@ list available from %GNU-FILE-LIST-URI over HTTP(S)."
 (define (pure-gnu-package? package)
   "Return true if PACKAGE is a non-Emacs and non-GNOME GNU package.  This
 excludes AucTeX, for instance, whose releases are now uploaded to
-elpa.gnu.org, and all the GNOME packages; EMMS is included though, because its
-releases are on gnu.org."
+elpa.gnu.org, GNU Radio, which has releases at www.gnuradio.org, and all the
+GNOME packages; EMMS is included though, because its releases are on gnu.org."
   (and (or (not (string-prefix? "emacs-" (package-name package)))
            (gnu-hosted? package))
        (not (gnome-package? package))
+       (not (string-prefix? "gnuradio" (package-name package)))
        (gnu-package? package)))
 
 (define gnu-hosted?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]