Skip to content
Snippets Groups Projects
Unverified Commit 43225612 authored by Arun Isaac's avatar Arun Isaac
Browse files

import: launchpad: Recognize the .orig.tar.gz extension.

* guix/import/launchpad.scm (find-extension): Recognize the .orig.tar.gz
extension.
parent 8b9b5a7f
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment