me
/
guix
Archived
1
0
Fork 0

gnu: ruby-cucumber-html-formatter: Update to 20.2.1.

* gnu/packages/ruby.scm (ruby-cucumber-html-formatter): Update to 20.2.1.
[arguments]: Use gexps.  Add a relax-requirements phase.
[native-inputs]: Add ruby-cucumber-compatibility-kit.
[home-page]: Update URL.
master
Maxim Cournoyer 2023-03-06 16:10:03 -05:00
parent 5022ba9ea8
commit 2ccb9e002d
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 13 additions and 12 deletions

View File

@ -8204,31 +8204,32 @@ system-specific @code{Meta} messages for Cucumber Ruby.")
(define-public ruby-cucumber-html-formatter (define-public ruby-cucumber-html-formatter
(package (package
(name "ruby-cucumber-html-formatter") (name "ruby-cucumber-html-formatter")
(version "7.0.0") (version "20.2.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (rubygems-uri "cucumber-html-formatter" version)) (uri (rubygems-uri "cucumber-html-formatter" version))
(sha256 (sha256
(base32 (base32
"0lshj4sw9jw7687wrhknyb9kffblai3l843zgrznyqij3ga0bc62")))) "0c7r9mfmph4c6yzc7y3dkr92rhwvpyksr0mdhpqp67xmmr8z1br4"))))
(build-system ruby-build-system) (build-system ruby-build-system)
(arguments (arguments
`(#:phases (modify-phases %standard-phases (list #:phases #~(modify-phases %standard-phases
(replace 'check (add-after 'extract-gemspec 'relax-requirements
(lambda _ (lambda _
(invoke "rspec")))))) (substitute* ".gemspec"
(native-inputs (("~> 18.0") "~> 21.0")))) ;cucumber-messages
(list ruby-rspec)) (replace 'check
(propagated-inputs (lambda _
(list ruby-cucumber-messages)) (invoke "rspec"))))))
(native-inputs (list ruby-cucumber-compatibility-kit ruby-rspec))
(propagated-inputs (list ruby-cucumber-messages))
(synopsis "HTML formatter for Cucumber") (synopsis "HTML formatter for Cucumber")
(description "Cucumber HTML Formatter produces a HTML report for Cucumber (description "Cucumber HTML Formatter produces a HTML report for Cucumber
runs. It is built on top of cucumber-react and works with any Cucumber runs. It is built on top of cucumber-react and works with any Cucumber
implementation with a protocol buffer formatter that outputs Cucumber implementation with a protocol buffer formatter that outputs Cucumber
messages.") messages.")
(home-page "https://github.com/cucumber/cucumber/tree/\ (home-page "https://github.com/cucumber/html-formatter")
master/html-formatter/ruby")
(license license:expat))) (license license:expat)))
(define-public ruby-cucumber (define-public ruby-cucumber