guix-commits
[Top][All Lists]
Advanced

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

05/09: import: github: Better tolerate unexpected file extensions.


From: Ludovic Courtès
Subject: 05/09: import: github: Better tolerate unexpected file extensions.
Date: Fri, 27 Jan 2017 23:38:49 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 21f4a7c116ed884314f29a8dc69ed18092b35477
Author: Ludovic Courtès <address@hidden>
Date:   Fri Jan 27 23:49:52 2017 +0100

    import: github: Better tolerate unexpected file extensions.
    
    * guix/import/github.scm (find-extension): Add ".tbz".
    (updated-github-url): When 'find-extension' returns #f, use "" for EXT.
---
 guix/import/github.scm |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/guix/import/github.scm b/guix/import/github.scm
index 1e0bb53..b249b39 100644
--- a/guix/import/github.scm
+++ b/guix/import/github.scm
@@ -49,7 +49,8 @@
   "Return the extension of the archive e.g. '.tar.gz' given a URL, or
 false if none is recognized"
   (find (lambda (x) (string-suffix? x url))
-        (list ".tar.gz" ".tar.bz2" ".tar.xz" ".zip" ".tar" ".tgz" ".love")))
+        (list ".tar.gz" ".tar.bz2" ".tar.xz" ".zip" ".tar"
+              ".tgz" ".tbz" ".love")))
 
 (define (updated-github-url old-package new-version)
   ;; Return a url for the OLD-PACKAGE with NEW-VERSION.  If no source url in
@@ -57,7 +58,7 @@ false if none is recognized"
 
   (define (updated-url url)
     (if (string-prefix? "https://github.com/"; url)
-        (let ((ext     (find-extension url))
+        (let ((ext     (or (find-extension url) ""))
               (name    (package-name old-package))
               (version (package-version old-package))
               (prefix  (string-append "https://github.com/";



reply via email to

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