mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: ruby-braintree: Update to 4.10.0.
* gnu/packages/ruby.scm (ruby-braintree): Update to 4.10.0. [source]: Streamline comment. [arguments]: Add disable-rubocop phase. Rename the less-strict-dependencies phase to relax-requirements, and update the substitutions. [native-inputs]: Remove ruby-rubocop.
This commit is contained in:
parent
7e5c0dc874
commit
a6f56be103
1 changed files with 19 additions and 16 deletions
|
@ -15149,42 +15149,45 @@ (define-public ruby-pry-rescue
|
|||
(define-public ruby-braintree
|
||||
(package
|
||||
(name "ruby-braintree")
|
||||
(version "4.7.0")
|
||||
(version "4.10.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
;; Download from GitHub because the rubygems version does not contain
|
||||
;; Rakefile.
|
||||
(method git-fetch) ;for tests
|
||||
(uri (git-reference
|
||||
(url "https://github.com/braintree/braintree_ruby")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1gixqf9vsjsyrk45lf9xcz0ggdydpgsk8ahknd27bbigz1j4pdf6"))))
|
||||
(base32 "01b5bp8q038ray5wwg3qhg4hj3r5a48vnfzs3gxkdjm5ky6bmn4p"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:test-target "test:unit"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'less-strict-dependencies
|
||||
(add-after 'unpack 'disable-rubocop
|
||||
(lambda _
|
||||
(substitute* "Rakefile"
|
||||
(("sh \"rubocop\"") ""))))
|
||||
(add-after 'unpack 'relax-requirements
|
||||
(lambda _
|
||||
(substitute* "Gemfile"
|
||||
(("gem \"libxml-ruby\", \"3.2.0\"")
|
||||
(("gem \"libxml-ruby\", \"3.2.0\"")
|
||||
"gem \"libxml-ruby\", \"~> 3.0.0\"")
|
||||
(("gem \"rspec\", \"3.9.0\"")
|
||||
"gem \"rspec\", \"~> 3.8.0\"")
|
||||
(("gem \"rubocop\", \"~>1.12.0\"")
|
||||
"gem \"rubocop\", \"~> 1.10.0\"")))))))
|
||||
"gem \"rspec\", \">= 3.9.0\"")
|
||||
(("gem \"webrick\", \"~>1.7.0\"")
|
||||
"gem \"webrick\", \">=1.7.0\"")
|
||||
((".*gem \"rubocop\".*") "")
|
||||
((".*gem \"rspec_junit_formatter\".*") "")))))))
|
||||
(native-inputs
|
||||
(list ruby-libxml
|
||||
ruby-pry
|
||||
ruby-rake
|
||||
ruby-rspec
|
||||
ruby-rubocop
|
||||
ruby-webrick))
|
||||
ruby-pry
|
||||
ruby-rake
|
||||
ruby-rspec
|
||||
ruby-webrick))
|
||||
(propagated-inputs
|
||||
(list ruby-builder
|
||||
ruby-rexml))
|
||||
ruby-rexml))
|
||||
(home-page "https://www.braintreepayments.com/")
|
||||
(synopsis "Integration access to the Braintree Gateway")
|
||||
(description "Braintree provides resources and tools for developers to
|
||||
|
|
Loading…
Reference in a new issue