mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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 @@
|
||||||
"Return the extension of the archive e.g. '.tar.gz' given a URL, or
|
"Return the extension of the archive e.g. '.tar.gz' given a URL, or
|
||||||
false if none is recognized"
|
false if none is recognized"
|
||||||
(find (lambda (x) (string-suffix? x url))
|
(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")))
|
".zip" ".tar" ".tgz" ".tbz" ".love")))
|
||||||
|
|
||||||
(define (updated-launchpad-url old-package new-version)
|
(define (updated-launchpad-url old-package new-version)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue