This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new a3bfe95 build/jami-service: Fix range ends in account-fingerprint-rx.
a3bfe95 is described below
commit a3bfe953d2e5f067b268c381437a807e1437c85a
Author: Maxime Devos <[email protected]>
AuthorDate: Mon Aug 30 19:39:35 2021 +0200
build/jami-service: Fix range ends in account-fingerprint-rx.
This broke compilation of Guix with [email protected] with:
In procedure make-regexp: Invalid range end
The fix is to replace [0-9A-f] with [0-9A-Fa-f].
* gnu/build/jami-service.scm (account-fingerprint-rx): Correct regexp.
Signed-off-by: Maxim Cournoyer <[email protected]>
---
gnu/build/jami-service.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/build/jami-service.scm b/gnu/build/jami-service.scm
index d44e873..ddfc8cf 100644
--- a/gnu/build/jami-service.scm
+++ b/gnu/build/jami-service.scm
@@ -96,7 +96,7 @@ before each retry."
(list key value)))
alist))
-(define account-fingerprint-rx (make-regexp "[0-9A-f]{40}"))
+(define account-fingerprint-rx (make-regexp "[0-9A-Fa-f]{40}"))
(define (account-fingerprint? val)
"A Jami account fingerprint is 40 characters long and only contains