mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 19:35:25 -05:00
import: launchpad: Recognize the .orig.tar.gz extension.
* guix/import/launchpad.scm (find-extension): Recognize the .orig.tar.gz extension.
This commit is contained in:
parent
8b9b5a7f58
commit
4322561243
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ (define (find-extension url)
|
|||
"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"
|
||||
(list ".orig.tar.gz" ".tar.gz" ".tar.bz2" ".tar.xz"
|
||||
".zip" ".tar" ".tgz" ".tbz" ".love")))
|
||||
|
||||
(define (updated-launchpad-url old-package new-version)
|
||||
|
|
Loading…
Reference in a new issue