[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: gnu-maintenance: Make base-url argument of import-html-release re
From: |
guix-commits |
Subject: |
01/10: gnu-maintenance: Make base-url argument of import-html-release required. |
Date: |
Sat, 26 Aug 2023 16:19:09 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 4110cc4f75997ff01318414e764aedd15610fab8
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Aug 9 13:35:03 2023 -0400
gnu-maintenance: Make base-url argument of import-html-release required.
It doesn't make sense to have it default to something like
"https://kernel.org/pub"; it should always be provided explicitly.
* guix/gnu-maintenance.scm (import-html-release) <#:base-url>: Turn keyword
argument into a positional argument. Update doc.
* guix/gnu-maintenance.scm (import-savannah-release): Adjust call
accordingly.
(import-kernel.org-release): Likewise.
(import-html-updatable-release): Likewise.
---
guix/gnu-maintenance.scm | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/guix/gnu-maintenance.scm b/guix/gnu-maintenance.scm
index 5c16a7617d..198d72fc86 100644
--- a/guix/gnu-maintenance.scm
+++ b/guix/gnu-maintenance.scm
@@ -483,15 +483,14 @@ hosted on ftp.gnu.org, or not under that name (this is
the case for
(_
links))))
-(define* (import-html-release package
+(define* (import-html-release base-url package
#:key
(version #f)
- (base-url "https://kernel.org/pub")
(directory (string-append "/" package))
file->signature)
- "Return an <upstream-source> for the latest release of PACKAGE (a string) on
-SERVER under DIRECTORY, or #f. Optionally include a VERSION string to fetch a
-specific version.
+ "Return an <upstream-source> for the latest release of PACKAGE (a string)
+under DIRECTORY at BASE-URL, or #f. Optionally include a VERSION string to
+fetch a specific version.
BASE-URL should be the URL of an HTML page, typically a directory listing as
found on 'https://kernel.org/pub'.
@@ -730,9 +729,8 @@ to fetch a specific version."
(directory (dirname (uri-path uri))))
;; Note: We use the default 'file->signature', which adds ".sig", ".asc",
;; or whichever detached signature naming scheme PACKAGE uses.
- (import-html-release package
+ (import-html-release %savannah-base package
#:version version
- #:base-url %savannah-base
#:directory directory)))
(define* (latest-sourceforge-release package #:key (version #f))
@@ -824,9 +822,8 @@ Optionally include a VERSION string to fetch a specific
version."
((uri mirrors ...) uri))))
(package (package-upstream-name package))
(directory (dirname (uri-path uri))))
- (import-html-release package
+ (import-html-release %kernel.org-base package
#:version version
- #:base-url %kernel.org-base
#:directory directory
#:file->signature file->signature)))
@@ -874,9 +871,8 @@ string to fetch a specific version."
(dirname (uri-path uri))))
(package (package-upstream-name package)))
(false-if-networking-error
- (import-html-release package
+ (import-html-release base package
#:version version
- #:base-url base
#:directory directory))))
(define %gnu-updater
- branch master updated (cfe55b220a -> 1dce887776), guix-commits, 2023/08/26
- 01/10: gnu-maintenance: Make base-url argument of import-html-release required.,
guix-commits <=
- 06/10: gnu-maintenance: Document nested procedures in 'import-html-release'., guix-commits, 2023/08/26
- 04/10: gnu-maintenance: Fix indentation., guix-commits, 2023/08/26
- 05/10: gnu-maintenance: Accept package object in 'import-html-release' procedure., guix-commits, 2023/08/26
- 07/10: gnu-maintenance: Extract 'canonicalize-url' from 'import-html-release'., guix-commits, 2023/08/26
- 02/10: gnu-maintenance: Fix docstring., guix-commits, 2023/08/26
- 03/10: gnu-maintenance: Extract url->links procedure., guix-commits, 2023/08/26
- 08/10: gnu-maintenance: Add support to rewrite version in URL path., guix-commits, 2023/08/26
- 09/10: gnu-maintenance: Allow mirror URLs to fallback to the generic HTML updater., guix-commits, 2023/08/26
- 10/10: gnu-maintenance: Consider Qt source tarballs as "release files"., guix-commits, 2023/08/26