guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

45/59: gnu: ruby-puma: Update to 6.3.0.


From: guix-commits
Subject: 45/59: gnu: ruby-puma: Update to 6.3.0.
Date: Wed, 28 Jun 2023 05:55:18 -0400 (EDT)

cbaines pushed a commit to branch ruby-team
in repository guix.

commit 510f7e67151199ef1f930c492c7f352534e4676d
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Wed Jun 28 08:34:57 2023 +0100

    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.
---
 gnu/packages/ruby.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 26c46160e3..f2dcb2b302 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -11845,7 +11845,7 @@ part of the Prawn PDF generator.")
 (define-public ruby-puma
   (package
     (name "ruby-puma")
-    (version "6.2.0")
+    (version "6.3.0")
     (source
      (origin
        (method git-fetch)               ;for tests
@@ -11855,17 +11855,23 @@ part of the Prawn PDF generator.")
        (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 _



reply via email to

[Prev in Thread] Current Thread [Next in Thread]