gnu: ruby: Remove graft for 2.4.3.

* gnu/packages/ruby.scm (ruby): Update to 2.4.3.
(ruby-2.4.3): Remove variable.
This commit is contained in:
Marius Bakke 2017-12-19 01:50:19 +01:00
parent 4a158286a6
commit 02f21a874e
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -50,8 +50,7 @@ (define-module (gnu packages ruby)
(define-public ruby
(package
(name "ruby")
(replacement ruby-2.4.3)
(version "2.4.2")
(version "2.4.3")
(source
(origin
(method url-fetch)
@ -60,7 +59,7 @@ (define-public ruby
"/ruby-" version ".tar.xz"))
(sha256
(base32
"0dgp4ypk3smrsbh2c249n5pl6nqhpd2igq9484dbsh81sf08k2kl"))
"0l9bv67dgsphk42lmiskhrnh47hbyj6rfg2rcjx22xivpx07srr3"))
(modules '((guix build utils)))
(snippet `(begin
;; Remove bundled libffi
@ -104,26 +103,6 @@ (define-public ruby
(home-page "https://ruby-lang.org")
(license license:ruby)))
(define-public ruby-2.4.3
(package
(inherit ruby)
(name "ruby")
(version "2.4.3")
(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
"0l9bv67dgsphk42lmiskhrnh47hbyj6rfg2rcjx22xivpx07srr3"))
(modules '((guix build utils)))
(snippet `(begin
;; Remove bundled libffi
(delete-file-recursively "ext/fiddle/libffi-3.2.1")
#t))))))
(define-public ruby-2.3
(package
(inherit ruby)