me
/
guix
Archived
1
0
Fork 0

gnu: ruby-cucumber-wire: Update to 6.2.1.

* gnu/packages/ruby.scm (ruby-cucumber-wire): Update to 6.2.1.
[arguments]: Delete #:phases argument.
master
Maxim Cournoyer 2023-03-06 15:51:47 -05:00
parent a252533586
commit 5022ba9ea8
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 3 additions and 10 deletions

View File

@ -8422,24 +8422,17 @@ Expressions are extensible with parameter types.")
(define-public ruby-cucumber-wire
(package
(name "ruby-cucumber-wire")
(version "3.1.0")
(version "6.2.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "cucumber-wire" version))
(sha256
(base32
"0z1n13lqv70zb2lcrvs2263lm0gsb3gz8gbv890kxzwp8cvd433k"))))
"1pmydrh9lcckj7p0cn67jw7msxdkgr9zir86cs19h3mf2zlcv7b9"))))
(build-system ruby-build-system)
(arguments
'(#:tests? #f ;tests use cucumber, causing a cycle
#:phases
(modify-phases %standard-phases
(add-after 'extract-gemspec 'relax-version-requirements
(lambda _
(substitute* ".gemspec"
((" 10\\.1") " 10.2"))
#t)))))
(list #:tests? #f)) ;tests use cucumber, causing a cycle
(propagated-inputs
(list ruby-cucumber-core ruby-cucumber-expressions
ruby-cucumber-messages))