[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
61/94: gnu: ronn-ng: Fix build.
From: |
guix-commits |
Subject: |
61/94: gnu: ronn-ng: Fix build. |
Date: |
Mon, 3 Jul 2023 06:06:34 -0400 (EDT) |
cbaines pushed a commit to branch ruby-team
in repository guix.
commit 7705de43f9b291ff5ebcc8af664dda7fb9622772
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Jun 29 10:31:27 2023 +0100
gnu: ronn-ng: Fix build.
* gnu/packages/groff.scm (ronn-ng)[arguments]: Add 'patch-test phase and
update style.
---
gnu/packages/groff.scm | 49 ++++++++++++++++++++++++++++---------------------
1 file changed, 28 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/groff.scm b/gnu/packages/groff.scm
index 33a059053c..94c0f23d7a 100644
--- a/gnu/packages/groff.scm
+++ b/gnu/packages/groff.scm
@@ -32,6 +32,7 @@
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix build-system ruby)
+ #:use-module (guix gexp)
#:use-module (gnu packages)
#:use-module (gnu packages ruby)
#:use-module (gnu packages bison)
@@ -229,27 +230,33 @@ It is typically used to display man pages on a web site.")
"1slxfg57cabmh98fw507z4ka6lwq1pvbrqwppflxw6700pi8ykfh"))))
(build-system ruby-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'extract-gemspec 'fix-gemspec-mustache
- (lambda _
- (substitute* "ronn-ng.gemspec"
- (("(<mustache>.freeze.*~>).*(\".*$)" all start end)
- (string-append start " 1.0" end)))
- #t))
- (add-after 'wrap 'wrap-program
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((prog (string-append (assoc-ref %outputs "out")
"/bin/ronn")))
- (wrap-program prog
- `("PATH" ":" suffix ,(map
- (lambda (exp_inpt)
- (string-append
- (assoc-ref %build-inputs exp_inpt)
- "/bin"))
- '("ruby-kramdown"
- "ruby-mustache"
- "ruby-nokogiri")))))
- #t)))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-test
+ (lambda _
+ ;; TODO This should be removed once the upstream fix is released
+ ;;
https://github.com/apjanke/ronn-ng/commit/e194bf62b1d0c0828cc83405e60dc5ece829e62f
+ (substitute* "test/test_ronn_document.rb"
+ (("YAML\\.load\\(@doc\\.to_yaml\\)")
+ "YAML.load(@doc.to_yaml, permitted_classes: [Time])"))))
+ (add-after 'extract-gemspec 'fix-gemspec-mustache
+ (lambda _
+ (substitute* "ronn-ng.gemspec"
+ (("(<mustache>.freeze.*~>).*(\".*$)" all start end)
+ (string-append start " 1.0" end)))))
+ (add-after 'wrap 'wrap-program
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((prog (string-append (assoc-ref %outputs "out")
"/bin/ronn")))
+ (wrap-program prog
+ `("PATH" ":" suffix ,(map
+ (lambda (exp_inpt)
+ (string-append
+ (assoc-ref %build-inputs exp_inpt)
+ "/bin"))
+ '("ruby-kramdown"
+ "ruby-mustache"
+ "ruby-nokogiri"))))))))))
(inputs
(list ruby-kramdown ruby-mustache ruby-nokogiri))
(synopsis
- 84/94: gnu: ruby-mapping: Fix build., (continued)
- 84/94: gnu: ruby-mapping: Fix build., guix-commits, 2023/07/03
- 38/94: gnu: ruby-protobuf: Fix build., guix-commits, 2023/07/03
- 42/94: gnu: ruby-tilt: Update to 2.0.11., guix-commits, 2023/07/03
- 35/94: gnu: ruby-http-cookie: Update to 1.0.5., guix-commits, 2023/07/03
- 47/94: gnu: ruby-kpeg: Update to 1.3.3., guix-commits, 2023/07/03
- 40/94: gnu: ruby-delayed-job: Fix build., guix-commits, 2023/07/03
- 54/94: gnu: ruby-importmap-rails: Remove ruby-byebug dependency., guix-commits, 2023/07/03
- 56/94: gnu: ruby-maxitest: Update to 5.1.0., guix-commits, 2023/07/03
- 55/94: gnu: ruby-hydra: Fix build., guix-commits, 2023/07/03
- 59/94: gnu: ruby-rb-inotify: Update to 0.10.1., guix-commits, 2023/07/03
- 61/94: gnu: ronn-ng: Fix build.,
guix-commits <=
- 63/94: gnu: ruby-benchmark-ips: Update to 2.12.0., guix-commits, 2023/07/03
- 64/94: gnu: ruby-braintree: Update to 4.12.0., guix-commits, 2023/07/03
- 67/94: gnu: ruby-octokit: Update to 6.1.1., guix-commits, 2023/07/03
- 69/94: gnu: ruby-language-server-protocol: Remove ruby-pry-byebug dependency., guix-commits, 2023/07/03
- 71/94: gnu: ruby-net-http-digest-auth: Fix build., guix-commits, 2023/07/03
- 73/94: gnu: ruby-net-http-persistent: Update to 4.0.2., guix-commits, 2023/07/03
- 75/94: gnu: ruby-sexp-processor: Update to 4.17.0., guix-commits, 2023/07/03
- 78/94: gnu: swagger-diff: Update to 2.0.0., guix-commits, 2023/07/03
- 79/94: gnu: ruby-byebug: Fix build., guix-commits, 2023/07/03
- 88/94: gnu: Add ruby-rubocop-packaging., guix-commits, 2023/07/03