guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b9b7351a1d527c544b9fa4f32baef7125b1485db
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Sep 18 11:57:23 2025 +0200
gnu: cuirass: Update to 1.3.1.
* gnu/packages/ci.scm (cuirass): Update to 1.3.1.
[arguments]: Remove ‘install-minified-javascript’ phase.
Change-Id: Icd63715ffe03b0950f4cb7f2c3ee9a63c6997315
---
gnu/packages/ci.scm | 18 ++----------------
1 file changed, 2 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/ci.scm b/gnu/packages/ci.scm
index d15e2ae92c..fc189359ae 100644
--- a/gnu/packages/ci.scm
+++ b/gnu/packages/ci.scm
@@ -72,7 +72,7 @@
(define-public cuirass
(package
(name "cuirass")
- (version "1.3.0")
+ (version "1.3.1")
(source
(origin
(method git-fetch)
@@ -82,7 +82,7 @@
(file-name (git-file-name name version))
(sha256
(base32
- "15jrl0rx6i5ibiw7svrdgcy13v8iwi5z30jp49gfxrapp6m6lsrw"))))
+ "0bvzdrih8id8bwsfddkymskcb99xrh5db771mbbb5jlzccjlwhgx"))))
(build-system gnu-build-system)
(arguments
(list #:modules `((guix build utils)
@@ -101,20 +101,6 @@
#:parallel-tests? #f
#:phases
#~(modify-phases %standard-phases
- (add-after 'build 'install-minified-javascript
- (lambda _
- ;; Work around guix/cuirass#34. Remove when 1.3.1 is out.
- (define files
- '("src/static/js/choices.min.js"
- "src/static/js/d3.v6.min.js"
- "src/static/js/list.min.js"))
- (apply invoke "make" files)
- (for-each (lambda (file)
- (install-file
- file
- (in-vicinity #$output
- "share/cuirass/static/js")))
- files)))
(add-after 'install 'wrap-program
(lambda* (#:key inputs outputs #:allow-other-keys)
;; Wrap the 'cuirass' command to refer to the right modules.