[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: ruby: Replace with ruby-2.4.3 [fixes CVE-2017-17405].
From: |
Ben Woodcroft |
Subject: |
04/04: gnu: ruby: Replace with ruby-2.4.3 [fixes CVE-2017-17405]. |
Date: |
Thu, 14 Dec 2017 22:58:08 -0500 (EST) |
benwoodcroft pushed a commit to branch master
in repository guix.
commit 86637f18bec9566973e78bf417a63426b47287b5
Author: Ben Woodcroft <address@hidden>
Date: Fri Dec 15 13:47:57 2017 +1000
gnu: ruby: Replace with ruby-2.4.3 [fixes CVE-2017-17405].
* gnu/packages/ruby.scm (ruby-2.4.3): New variable.
(ruby)[replacement]: New field.
---
gnu/packages/ruby.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 91378ca..34387e5 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -49,6 +49,7 @@
(define-public ruby
(package
(name "ruby")
+ (replacement ruby-2.4.3)
(version "2.4.2")
(source
(origin
@@ -102,6 +103,26 @@ a focus on simplicity and productivity.")
(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)