gnu: ruby: Update to 2.4.2.

* gnu/packages/ruby.scm (ruby): Update to 2.4.2.
[replacement]: Remove field.
(ruby-2.4.2): Remove variable.
This commit is contained in:
Efraim Flashner 2017-10-01 22:07:45 +03:00
parent 0b7f9806db
commit de429a9342
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351

View File

@ -7,6 +7,7 @@
;;; Copyright © 2015, 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
;;; Copyright © 2017 ng0 <contact.ng0@cryptolab.net>
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@ -49,8 +50,7 @@
(define-public ruby
(package
(name "ruby")
(replacement ruby-2.4.2)
(version "2.4.0")
(version "2.4.2")
(source
(origin
(method url-fetch)
@ -59,7 +59,7 @@
"/ruby-" version ".tar.xz"))
(sha256
(base32
"141nnsdk2q83c23p5kl404id8gy1ap261gin48rbjj5sbksgx1rs"))
"0dgp4ypk3smrsbh2c249n5pl6nqhpd2igq9484dbsh81sf08k2kl"))
(modules '((guix build utils)))
(snippet `(begin
;; Remove bundled libffi
@ -103,26 +103,6 @@ a focus on simplicity and productivity.")
(home-page "https://ruby-lang.org")
(license license:ruby)))
(define-public ruby-2.4.2
(package
(inherit ruby)
(name "ruby")
(version "2.4.2")
(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
"0dgp4ypk3smrsbh2c249n5pl6nqhpd2igq9484dbsh81sf08k2kl"))
(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)