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

commit bf1770f6cf01e8afc61ec433f84ec7195e46e205
Author: Aaron Covrig <[email protected]>
AuthorDate: Fri Feb 27 23:26:19 2026 -0500

    gnu: ruby-terminal-table: Update to 4.0.0.
    
    * gnu/packages/ruby-xyz.scm (ruby-terminal-table): Update to 4.0.0.
    [native-inputs]: Remove ruby-term-ansicolor.
    
    Change-Id: Idde31b70c3e0e8e18a99e38a7344ac339a9d24bf
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/ruby-xyz.scm | 57 +++++++++++++++++++++++------------------------
 1 file changed, 28 insertions(+), 29 deletions(-)

diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index 30417513ea..c1d85fba7f 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -14531,39 +14531,38 @@ Pathname.")
 (define-public ruby-terminal-table
   (package
     (name "ruby-terminal-table")
-    (version "3.0.2")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/tj/terminal-table";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1c3f7ng3lxq962n8sbmlsvjx6srh5i801wzsyhxmfz2g880f5jps"))))
+    (version "4.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tj/terminal-table";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "17s0zvbix72d5ivv1mqi9hyzqrippn01spglj6zg3g18v4vkg0lk"))))
     (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (add-before 'check 'remove-unnecessary-dependencies
-           (lambda _
-             (substitute* "terminal-table.gemspec"
-               (("s.add_runtime_dependency.*") "\n")
-               (("s.add_development_dependency.*") "\n"))
-             (substitute* "Gemfile"
-               ((".*tins.*") "\n"))))
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (invoke "rspec")))))))
+     '(#:phases (modify-phases %standard-phases
+                  (add-before 'check 'remove-unnecessary-dependencies
+                    (lambda _
+                      (substitute* "terminal-table.gemspec"
+                        (("s.add_runtime_dependency.*")
+                         "\n")
+                        (("s.add_development_dependency.*")
+                         "\n"))
+                      (substitute* "Gemfile"
+                        ((".*tins.*")
+                         "\n"))))
+                  (replace 'check
+                    (lambda* (#:key tests? #:allow-other-keys)
+                      (when tests?
+                        (invoke "rspec")))))))
     (build-system ruby-build-system)
-    (propagated-inputs
-     (list ruby-unicode-display-width))
-    (native-inputs
-     (list ruby-rspec ruby-term-ansicolor))
+    (propagated-inputs (list ruby-unicode-display-width))
+    (native-inputs (list ruby-rspec))
     (home-page "https://github.com/tj/terminal-table";)
     (synopsis "Simple, feature rich ASCII table generation library")
-    (description
-     "Terminal Table is a fast and simple, yet feature rich
+    (description "Terminal Table is a fast and simple, yet feature rich
 table generator written in Ruby.  It supports ASCII and
 Unicode formatted tables.")
     (license license:expat)))

Reply via email to