guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu-maintenance: 'gnu-package?' returns #t for R and for GNOME pa


From: Ludovic Courtès
Subject: 01/05: gnu-maintenance: 'gnu-package?' returns #t for R and for GNOME packages.
Date: Tue, 05 May 2015 13:14:13 +0000

civodul pushed a commit to branch master
in repository guix.

commit c4e8d513f2048bd7ca3b57c73c2b217a349e7b46
Author: Ludovic Courtès <address@hidden>
Date:   Tue May 5 13:46:20 2015 +0200

    gnu-maintenance: 'gnu-package?' returns #t for R and for GNOME packages.
    
    Reported by John Darrington.
    
    * guix/gnu-maintenance.scm (gnu-package?)[mirror-type]: Add "gnome" to
      the list of GNU mirrors.  Return #f for "cran".
---
 guix/gnu-maintenance.scm |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/guix/gnu-maintenance.scm b/guix/gnu-maintenance.scm
index 0528e9f..5cdda28 100644
--- a/guix/gnu-maintenance.scm
+++ b/guix/gnu-maintenance.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2010, 2011, 2012, 2013, 2014 Ludovic Courtès <address@hidden>
+;;; Copyright © 2010, 2011, 2012, 2013, 2014, 2015 Ludovic Courtès 
<address@hidden>
 ;;; Copyright © 2012, 2013 Nikita Karetnikov <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -179,9 +179,18 @@ network to check in GNU's database."
        (define (mirror-type url)
          (let ((uri (string->uri url)))
            (and (eq? (uri-scheme uri) 'mirror)
-                (if (member (uri-host uri) '("gnu" "gnupg" "gcc"))
-                    'gnu
-                    'non-gnu))))
+                (cond
+                 ((member (uri-host uri)
+                          '("gnu" "gnupg" "gcc" "gnome"))
+                  ;; Definitely GNU.
+                  'gnu)
+                 ((equal? (uri-host uri) "cran")
+                  ;; Possibly GNU: mirror://cran could be either GNU R itself
+                  ;; or a non-GNU package.
+                  #f)
+                 (else
+                  ;; Definitely non-GNU.
+                  'non-gnu)))))
 
        (let ((url  (and=> (package-source package) origin-uri))
              (name (package-name package)))



reply via email to

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