gnu: ruby: Remove ruby-2.3.

No packages in Guix depend on Ruby 2.3, and it was declared as end-of-life on
2019-03-31 by the upstream project.

* gnu/packages/ruby.scm (ruby-2.3): Remove variable.
This commit is contained in:
Christopher Baines 2020-04-01 19:17:40 +01:00
parent bb3685e8d7
commit 7f1401fe59
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -169,25 +169,6 @@ (define-public ruby-2.4
(delete-file-recursively "ext/fiddle/libffi-3.2.1")
#t))))))
(define-public ruby-2.3
(package
(inherit ruby)
(version "2.3.8")
(source
(origin
(method url-fetch)
(uri (string-append "http://cache.ruby-lang.org/pub/ruby/"
(version-major+minor version)
"/ruby-" version ".tar.xz"))
(sha256
(base32
"1zhxbjff08pvbnxvn58krns6q0p6g4977q6ykfn823gxhifn63wi"))
(modules '((guix build utils)))
(snippet `(begin
;; Remove bundled libffi
(delete-file-recursively "ext/fiddle/libffi-3.2.1")
#t))))))
(define-public mruby
(package
(name "mruby")