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

commit 14d5e75ac03ad2e9f827eedfa2e5cdab847b8d60
Author: Nicolas Graves <ngra...@ngraves.fr>
AuthorDate: Wed Jun 18 16:27:32 2025 +0200

    gnu: ruby-byebug: Update to 12.0.0.
    
    * gnu/packages/ruby-xyz.scm (ruby-byebug): Update to 12.0.0.
      [source]{snippet}: Adapt it.
      [arguments]{phases}: Refresh phase 'sanitize-dependencies.
---
 gnu/packages/ruby-xyz.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index dedacefd4c..4480042591 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -7793,7 +7793,7 @@ with PostgreSQL 9.3 and later.")
 (define-public ruby-byebug
   (package
     (name "ruby-byebug")
-    (version "11.1.3")
+    (version "12.0.0")
     (source
      (origin
        (method git-fetch)
@@ -7803,13 +7803,13 @@ with PostgreSQL 9.3 and later.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0vyy3k2s7dcndngj6m8kxhs1vxc2c93dw8b3yyand3srsg9ffpij"))
+         "0pjdadc079rmasgiwdxcz8h9wvzk3mb6xq8xr02xxv616ihwxllk"))
        (modules '((guix build utils)))
        (snippet
         '(begin
            ;; Remove wrappers that try to setup a bundle environment.
            (with-directory-excursion "bin"
-             (for-each delete-file '("bundle" "rake" "rubocop"))
+             (for-each delete-file '("rake" "rubocop"))
              ;; ruby-minitest doesn't come with a launcher, so fix the one
              ;; provided.
              (substitute* "minitest"
@@ -7822,8 +7822,9 @@ with PostgreSQL 9.3 and later.")
       #~(modify-phases %standard-phases
           (add-after 'unpack 'sanitize-dependencies
             (lambda _
+              (delete-file "tasks/release.rake")
               (substitute* "Rakefile"
-                ((".*chandler/tasks.*") ""))))
+                ((".*tasks/release.rake.*") ""))))
           (add-after 'unpack 'skip-tmp-path-sensitive-test
             (lambda _
               (substitute* "test/commands/where_test.rb"

Reply via email to