guix_mirror_bot pushed a commit to branch ruby-team
in repository guix.
commit 15ccdfeb0eeab997be62c2ff5a87d35757cdeea1
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jun 18 16:27:29 2025 +0200
gnu: ruby-bindex: Fix minitest.
* gnu/packages/ruby-xyz.scm (ruby-bindex)[arguments]{phases}: Add
phase 'patch-minitest.
---
gnu/packages/ruby-xyz.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index 8ef07f30a1..8ec58c2beb 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -9132,7 +9132,12 @@ wallclock and object allocation samplers.")
(add-after 'unpack 'avoid-bundler
(lambda _
(substitute* "Rakefile"
- (("^Bundler::.*") "")))))))
+ (("^Bundler::.*") ""))))
+ (add-after 'unpack 'patch-minitest
+ (lambda _
+ (substitute* "test/test_helper.rb"
+ (("MiniTest")
+ "Minitest")))))))
(native-inputs (list bundler ruby-rake-compiler))
(synopsis "Bindings for Ruby exceptions")
(description