aboutsummaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorGiacomo Leidi <goodoldpaul@autistici.org>2023-10-07 21:45:11 +0200
committerLudovic Courtès <ludo@gnu.org>2024-04-17 12:13:01 +0200
commit320f28390f12807e0e0408cb074f618cd16c8dbb (patch)
tree89e9fe6e0be7162caf3aa1897d245439e189ff09 /guix
parentc872b3bc39cca8cd7344507ce4cdab211a8f3c6f (diff)
downloadguix-320f28390f12807e0e0408cb074f618cd16c8dbb.tar
guix-320f28390f12807e0e0408cb074f618cd16c8dbb.tar.gz
import: github: Recognize more URLs.
Fixes <https://issues.guix.gnu.org/66396>. This allows more packages to be refreshed, such as launchmon, love, retux, preseq, edgar, antlr3, and runc. * guix/import/github.scm (updated-github-url)[updated-url]: Add additional heuristics to Github url updater. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Change-Id: I6409b3f61872a954f53480afd63b307d16d0b9c0
Diffstat (limited to 'guix')
-rw-r--r--guix/import/github.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/guix/import/github.scm b/guix/import/github.scm
index 7409c9a202..c5556d78ee 100644
--- a/guix/import/github.scm
+++ b/guix/import/github.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2022 Hartmut Goebel <h.goebel@crazy-compilers.com>
+;;; Copyright © 2023 Giacomo Leidi <goodoldpaul@autistici.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -24,6 +25,7 @@
(define-module (guix import github)
#:use-module (ice-9 match)
+ #:use-module (ice-9 regex)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26)
#:use-module (srfi srfi-34)
@@ -96,6 +98,11 @@ false if none is recognized"
url)
(string-append prefix "/releases/download/" repo "-" new-version "/"
repo "-" new-version ext))
+ ((string-match (string-append "/releases/download/(v)?" version "/"
+ name ".*" ext "$")
+ url)
+ (string-replace-substring url version new-version))
+
(#t #f))) ; Some URLs are not recognised.
#f))