guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ccafe4cf5a193a5227bcc8d30613db752d8c8c97
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Oct 21 22:22:14 2025 +0100
gnu: go-github-com-dlclark-regexp2: Update to 1.11.5.
* gnu/packages/golang-xyz.scm (go-github-com-dlclark-regexp2):
Update to 1.11.5.
[arguments] <test-flags>: Skip w time sensitive tests.
Change-Id: I98d8e184e14584f9f6681e1ff03c9f3058c1fe0a
---
gnu/packages/golang-xyz.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index fe97132332..69d2522141 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6325,7 +6325,7 @@ mtime,ctime and btime for files.")
(define-public go-github-com-dlclark-regexp2
(package
(name "go-github-com-dlclark-regexp2")
- (version "1.4.0")
+ (version "1.11.5")
(source
(origin
(method git-fetch)
@@ -6334,11 +6334,14 @@ mtime,ctime and btime for files.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1irfv89b7lfkn7k3zgx610ssil6k61qs1wjj31kvqpxb3pdx4kry"))))
+ (base32 "0i5c7ak8r4wwlyrx5f1mdipqk6p6ms1jgclb7hlb4qgy83c7xplc"))))
(build-system go-build-system)
(arguments
(list
- #:import-path "github.com/dlclark/regexp2"))
+ #:import-path "github.com/dlclark/regexp2"
+ #:test-flags
+ ;; Time sensitive not deterministic tests.
+ #~(list "-skip" "TestDeadline|TestStopTimeoutClock")))
(home-page "https://github.com/dlclark/regexp2/")
(synopsis "Full featured regular expressions for Go")
(description