guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c8ed1cd30ef7463b79eea99928cf7b14db3ada31
Author: gemmaro <[email protected]>
AuthorDate: Tue Aug 5 19:31:53 2025 +0900

    gnu: ruby-builder: Update to 3.3.0.
    
    * gnu/packages/ruby-check.scm (ruby-builder): Update to 3.3.0.
    [arguments]: Remove phases.
    [home-page]: Update to the current link.
    
    Change-Id: I7cd0f921a7dfa9f6bfb20b7a2ebe7e8d1a09c960
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/ruby-check.scm | 26 ++++----------------------
 1 file changed, 4 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/ruby-check.scm b/gnu/packages/ruby-check.scm
index 151f00e145..5ff48039bd 100644
--- a/gnu/packages/ruby-check.scm
+++ b/gnu/packages/ruby-check.scm
@@ -28,7 +28,7 @@
 ;;; Copyright © 2022 Stephen Paul Weber <[email protected]>
 ;;; Copyright © 2022 Taiju HIGASHI <[email protected]>
 ;;; Copyright © 2022 Tom Fitzhenry <[email protected]>
-;;; Copyright © 2023 gemmaro <[email protected]>
+;;; Copyright © 2023, 2025 gemmaro <[email protected]>
 ;;; Copyright © 2023 Hartmut Goebel <[email protected]>
 ;;; Copyright © 2023 Yovan Naumovski <[email protected]>
 ;;; Copyright © 2025 Nicolas Graves <[email protected]>
@@ -113,37 +113,19 @@ converting AsciiDoc content to HTML5, DocBook 5, PDF, and 
other formats.")
 (define-public ruby-builder
   (package
     (name "ruby-builder")
-    (version "3.2.4")
+    (version "3.3.0")
     (source (origin
               (method url-fetch)
               (uri (rubygems-uri "builder" version))
               (sha256
                (base32
-                "045wzckxpwcqzrjr353cxnyaxgf0qg22jh00dcx7z38cys5g1jlr"))))
+                "0pw3r2lyagsxkm71bf44v5b74f7l9r7di22brbyji9fwz791hya9"))))
     (build-system ruby-build-system)
-    (arguments
-     (list
-      #:phases
-      #~(modify-phases %standard-phases
-          (add-after 'unpack 'patch
-            (lambda _
-              (substitute* "rakelib/tags.rake"
-                (("File\\.exists\\?") "File.exist?"))
-
-              ;; TODO This test is broken
-              ;; https://github.com/tenderlove/builder/issues/13
-              (substitute* "test/test_blankslate.rb"
-                (("test_late_included_module_in_kernel_is_ok")
-                 "test_late_included_module_in_kernel_is_ok
-    skip(\"test expected to fail\")
-"))
-              (substitute* "rakelib/tags.rake"
-                (("RVM_GEMDIR = .*") "RVM_GEMDIR = 'no-rvm-please'\n")))))))
     (synopsis "Ruby library to create structured data")
     (description "Builder provides a number of builder objects that make it
 easy to create structured data.  Currently the following builder objects are
 supported: XML Markup and XML Events.")
-    (home-page "https://github.com/tenderlove/builder";)
+    (home-page "https://github.com/rails/builder";)
     (license license:expat)))
 
 (define-public ruby-cucumber-ci-environment

Reply via email to