[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#65230] [PATCH v2 13/13] gnu-maintenance: Consider Qt source tarball
From: |
Maxim Cournoyer |
Subject: |
[bug#65230] [PATCH v2 13/13] gnu-maintenance: Consider Qt source tarballs as "release files". |
Date: |
Tue, 15 Aug 2023 16:29:37 -0400 |
* guix/gnu-maintenance.scm (release-file?): Use positive logic in doc.
Add a special case for Qt source archives.
* tests/gnu-maintenance.scm ("release-file?"): Update test.
---
Changes in v2:
- Also special case release file of Qt Creator
guix/gnu-maintenance.scm | 18 +++++++++++++-----
tests/gnu-maintenance.scm | 5 ++++-
2 files changed, 17 insertions(+), 6 deletions(-)
diff --git a/guix/gnu-maintenance.scm b/guix/gnu-maintenance.scm
index 2574e0f827..04827a9f27 100644
--- a/guix/gnu-maintenance.scm
+++ b/guix/gnu-maintenance.scm
@@ -258,8 +258,7 @@ (define %alpha-tarball-rx
(make-regexp
"^.*-.*[0-9](-|~|\\.)?(alpha|beta|rc|RC|cvs|svn|git)-?[0-9\\.]*\\.tar\\."))
(define (release-file? project file)
- "Return #f if FILE is not a release tarball of PROJECT, otherwise return
-true."
+ "Return true if FILE is a release tarball of PROJECT."
(and (not (member (file-extension file)
'("sig" "sign" "asc"
"md5sum" "sha1sum" "sha256sum")))
@@ -268,12 +267,21 @@ (define (release-file? project file)
;; Filter out unrelated files, like `guile-www-1.1.1'.
;; Case-insensitive for things like "TeXmacs" vs. "texmacs".
;; The "-src" suffix is for "freefont-src-20120503.tar.gz".
+ ;; The '-everywhere-src' suffix is for Qt modular components.
(and=> (match:substring match 1)
(lambda (name)
(or (string-ci=? name project)
- (string-ci=? name
- (string-append project
- "-src")))))))
+ (string-ci=? name (string-append project "-src"))
+ (string-ci=?
+ name (string-append project "-everywhere-src"))
+ ;; For older Qt releases such as version 5.
+ (string-ci=?
+ name (string-append
+ project "-everywhere-opensource-src"))
+ ;; For Qt Creator.
+ (string-ci=?
+ name (string-append
+ project "-opensource-src")))))))
(not (regexp-exec %alpha-tarball-rx file))
(let ((s (tarball-sans-extension file)))
(regexp-exec %package-name-rx s))))
diff --git a/tests/gnu-maintenance.scm b/tests/gnu-maintenance.scm
index 196a6f9092..61ae295b96 100644
--- a/tests/gnu-maintenance.scm
+++ b/tests/gnu-maintenance.scm
@@ -40,7 +40,10 @@ (define-module (test-gnu-maintenance)
("exiv2" "exiv2-0.27.3-Source.tar.gz")
("mpg321" "mpg321_0.3.2.orig.tar.gz")
("bvi" "bvi-1.4.1.src.tar.gz")
- ("hostscope" "hostscope-V2.1.tgz")))
+ ("hostscope" "hostscope-V2.1.tgz")
+ ("qtbase" "qtbase-everywhere-src-6.5.2.tar.xz")
+ ("qtbase" "qtbase-everywhere-opensource-src-5.15.10.tar.xz")
+ ("qt-creator" "qt-creator-opensource-src-11.0.1.tar.xz")))
(every (lambda (project+file)
(not (apply release-file? project+file)))
'(("guile" "guile-www-1.1.1.tar.gz")
--
2.41.0
- [bug#65230] [PATCH 13/13] gnu-maintenance: Consider Qt source tarballs as "release files"., (continued)
- [bug#65230] [PATCH v2 01/13] gnu-maintenance: Make base-url argument of import-html-release required., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 05/13] gnu-maintenance: Fix docstring., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 06/13] gnu-maintenance: Extract url->links procedure., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 03/13] gnu: qt: Streamline qt-urls., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 04/13] gnu: qt-creator: Use mirror://qt for source URI., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 08/13] gnu-maintenance: Accept package object in 'import-html-release' procedure., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 07/13] gnu-maintenance: Fix indentation., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 11/13] gnu-maintenance: Add support to rewrite version in URL path., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 09/13] gnu-maintenance: Document nested procedures in 'import-html-release'., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 13/13] gnu-maintenance: Consider Qt source tarballs as "release files".,
Maxim Cournoyer <=
- [bug#65230] [PATCH v2 10/13] gnu-maintenance: Extract 'canonicalize-url' from 'import-html-release'., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 02/13] download: Add mirrors for Qt., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v2 12/13] gnu-maintenance: Allow mirror URLs to fallback to the generic HTML updater., Maxim Cournoyer, 2023/08/15
- [bug#65230] [PATCH v3 01/10] gnu-maintenance: Make base-url argument of import-html-release required., Maxim Cournoyer, 2023/08/21
- [bug#65230] [PATCH v3 04/10] gnu-maintenance: Fix indentation., Maxim Cournoyer, 2023/08/21
- [bug#65230] [PATCH v3 10/10] gnu-maintenance: Consider Qt source tarballs as "release files"., Maxim Cournoyer, 2023/08/21
- [bug#65230] [PATCH v3 08/10] gnu-maintenance: Add support to rewrite version in URL path., Maxim Cournoyer, 2023/08/21
- [bug#65230] [PATCH v3 03/10] gnu-maintenance: Extract url->links procedure., Maxim Cournoyer, 2023/08/21
- [bug#65230] [PATCH v3 02/10] gnu-maintenance: Fix docstring., Maxim Cournoyer, 2023/08/21
- [bug#65230] [PATCH v3 05/10] gnu-maintenance: Accept package object in 'import-html-release' procedure., Maxim Cournoyer, 2023/08/21