mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-02 09:28:57 -05:00
gnu: ruby-puma: Update to 6.3.0.
* gnu/packages/ruby.scm (ruby-puma): Update to 6.3.0. [arguments]: Soften rake-compiler dependency and set PUMA_CI_RACK to rack2.
This commit is contained in:
parent
bb811bdbc6
commit
aad852857e
1 changed files with 8 additions and 2 deletions
|
@ -11846,7 +11846,7 @@ (define-public ruby-ttfunk
|
|||
(define-public ruby-puma
|
||||
(package
|
||||
(name "ruby-puma")
|
||||
(version "6.2.0")
|
||||
(version "6.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch) ;for tests
|
||||
|
@ -11856,17 +11856,23 @@ (define-public ruby-puma
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0d71h5ggvfgnxq9msd1hmcz3s8mspzf7kqas1hzr0w9pfafddyv3"))))
|
||||
"0qnayzgyr23w87jc849r00394hv1gw2rk9080nws43ilnycagzxq"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-Gemfile
|
||||
(lambda _
|
||||
(substitute* "Gemfile"
|
||||
(("gem \"rake-compiler\".*")
|
||||
"gem 'rake-compiler'\n"))))
|
||||
(add-after 'unpack 'disable-rubocop
|
||||
(lambda _
|
||||
(setenv "PUMA_NO_RUBOCOP" "1")))
|
||||
(add-after 'unpack 'use-rack-2
|
||||
(lambda _
|
||||
(setenv "PUMA_CI_RACK" "rack2")
|
||||
(setenv "PUMA_CI_RACK_2" "1")))
|
||||
(add-before 'build 'increase-resource-limits
|
||||
(lambda _
|
||||
|
|
Loading…
Reference in a new issue