[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/28: gnu: ruby-childprocess: Update to 4.1.0.
From: |
guix-commits |
Subject: |
23/28: gnu: ruby-childprocess: Update to 4.1.0. |
Date: |
Sat, 24 Feb 2024 10:51:12 -0500 (EST) |
htgoebel pushed a commit to branch master
in repository guix.
commit 9a6e232de0e4af3432fc74b6cdf5b1115fabb5ba
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Wed Jul 26 21:33:53 2023 +0200
gnu: ruby-childprocess: Update to 4.1.0.
This change include code for making more tests pass. Anyhow, one is still
failing for unclear reason, thus tests are still disabled.
* gnu/packages/ruby.scm (ruby-childprocess): Update to 4.1.0.
[arguments]{test-target}: New argument. {phases}: New argument
[propagated-inputs]: Remove ruby-ffi.
[native-inputs]: Remove bundler; add ruby-coveralls.
---
gnu/packages/ruby.scm | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 1b72220b33..de79813bfb 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -13133,21 +13133,26 @@ almost perfectly compatible with ruby 1.9's.")
(define-public ruby-childprocess
(package
(name "ruby-childprocess")
- (version "3.0.0")
+ (version "4.1.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "childprocess" version))
(sha256
(base32
- "1ic028k8xgm2dds9mqnvwwx3ibaz32j8455zxr9f4bcnviyahya5"))))
+ "1lvcp8bsd35g57f7wz4jigcw2sryzzwrpcgjwwf3chmjrjcww5in"))))
(build-system ruby-build-system)
(arguments
- `(#:tests? #f))
+ `(#:tests? #f ;; one failing test, even with fixes below
+ #:test-target "spec"
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch
+ (lambda _
+ (substitute* "spec/spec_helper.rb"
+ (("#!/bin/sh\\\\n") (string-append "#!" (which "sh")
"\\n"))))))))
(native-inputs
- (list bundler ruby-rspec))
- (propagated-inputs
- (list ruby-ffi))
+ (list ruby-coveralls ruby-rspec))
(synopsis "Control external programs running in the background, in Ruby")
(description "@code{childprocess} provides a gem to control external
programs running in the background, in Ruby.")
- 20/28: gnu: Add ruby-vagrant-spec., (continued)
- 20/28: gnu: Add ruby-vagrant-spec., guix-commits, 2024/02/24
- 21/28: gnu: Add ruby-vagrant-spec-helper-basic., guix-commits, 2024/02/24
- 16/28: gnu: Add ruby-google-protobuf., guix-commits, 2024/02/24
- 06/28: gnu: Add ruby-net-sftp., guix-commits, 2024/02/24
- 11/28: gnu: Add ruby-rgl., guix-commits, 2024/02/24
- 12/28: gnu: Add ruby-sfl., guix-commits, 2024/02/24
- 08/28: gnu: Add ruby-pairing-heap., guix-commits, 2024/02/24
- 10/28: gnu: Add ruby-stream., guix-commits, 2024/02/24
- 19/28: gnu: Add ruby-vagrant-cloud., guix-commits, 2024/02/24
- 22/28: gnu: Add ruby-hashicorp-checkpoint., guix-commits, 2024/02/24
- 23/28: gnu: ruby-childprocess: Update to 4.1.0.,
guix-commits <=
- 17/28: gnu: Add ruby-googleapis-common-protos-types., guix-commits, 2024/02/24
- 18/28: gnu: Add ruby-grpc., guix-commits, 2024/02/24
- 25/28: gnu: Add ruby-fog-core., guix-commits, 2024/02/24
- 24/28: gnu: Add ruby-libvirt., guix-commits, 2024/02/24
- 27/28: gnu: Add ruby-fog-xml., guix-commits, 2024/02/24
- 26/28: gnu: Add ruby-fog-json., guix-commits, 2024/02/24
- 28/28: gnu: Add ruby-fog-libvirt., guix-commits, 2024/02/24