aboutsummaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-04-18 09:58:31 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-04-23 21:32:46 -0400
commit18dc8c6f0f76b8d128638105eebad2895f9857f0 (patch)
treeddf7e670d42be9e38abb0843f1b127fb0d48a634 /build-aux
parent87c0d6265ca014da382824996719c0b8fefe3646 (diff)
downloadguix-18dc8c6f0f76b8d128638105eebad2895f9857f0.tar
guix-18dc8c6f0f76b8d128638105eebad2895f9857f0.tar.gz
build-aux: Relax the regexp used to match NEWS sections.
A number of packages doesn't really make sense in the name of the section to be substituted. This change allows using simply '*** new packages' instead of '*** 1999 new packages', for example, and have the update-NEWS.scm script update it. * build-aux/update-NEWS.scm (write-packages-added) <regexp>: Do not care about leading white space in the name of the section.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/update-NEWS.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/update-NEWS.scm b/build-aux/update-NEWS.scm
index a05ecad091..e916f3f1e8 100644
--- a/build-aux/update-NEWS.scm
+++ b/build-aux/update-NEWS.scm
@@ -95,7 +95,7 @@ paragraph."
(with-atomic-file-replacement news-file
(lambda (input output)
(rewrite-org-section input output
- (make-regexp "^(\\*+) (.*) new packages")
+ (make-regexp "^(\\*+).*new packages")
(lambda (match port)
(let ((stars (match:substring match 1)))
(format port
@@ -141,7 +141,7 @@ paragraph."
(with-atomic-file-replacement news-file
(lambda (input output)
(rewrite-org-section input output
- (make-regexp "^(\\*+) (.*) package updates")
+ (make-regexp "^(\\*+).*package updates")
(lambda (match port)
(let ((stars (match:substring match 1))
(lst (map (match-lambda