guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 6e42c7d4a057a4d6f37afe13a0b4392a87bc92ea
Author: gemmaro <[email protected]>
AuthorDate: Sun Aug 30 09:50:13 2026 +0900
gnu: Remove ruby-psych-3.
* gnu/packages/ruby-xyz.scm (ruby-psych-3): Delete variable.
Signed-off-by: Liliana Marie Prikler <[email protected]>
Merges: guix/guix#10694
---
gnu/packages/ruby-xyz.scm | 29 -----------------------------
1 file changed, 29 deletions(-)
diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index 7f8246939a2..35057b3858e 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -8025,35 +8025,6 @@ from the YAML format.")
(home-page "https://github.com/ruby/psych")
(license license:expat))))
-(define-public ruby-psych-3
- (package
- (inherit ruby-psych)
- (version "3.3.4")
- (source (origin
- (method git-fetch) ;for tests
- (uri (git-reference
- (url "https://github.com/ruby/psych")
- (commit (string-append "v" version))))
- (file-name (git-file-name "ruby-psych" version))
- (sha256
- (base32
- "11f7bxbhaj5697izap7hfbiln6lfk5cks78a498mkyhs2ylhl0fc"))))
- (arguments
- (substitute-keyword-arguments arguments
- ((#:phases phases '%standard-phases)
- #~(modify-phases #$phases
- (add-after 'unpack 'fix-deprecated-syntax
- (lambda _
- (substitute* "test/psych/test_yaml.rb"
- (("Regexp\\.new\\('',0,'n'\\)")
- "Regexp.new('',Regexp::NOENCODING)"))))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "rake" "test"))))))))
- (native-inputs (modify-inputs native-inputs
- (append ruby-bigdecimal)))))
-
(define-public ruby-utils
(package
(name "ruby-utils")