guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: ruby: Add ruby 2.5.


From: Christopher Baines
Subject: 01/01: gnu: ruby: Add ruby 2.5.
Date: Fri, 12 Oct 2018 17:13:38 -0400 (EDT)

cbaines pushed a commit to branch staging
in repository guix.

commit 93cae02fb78a140bf5d558acf1f38282ab67d516
Author: Christopher Baines <address@hidden>
Date:   Sat Sep 29 12:13:05 2018 +0100

    gnu: ruby: Add ruby 2.5.
    
    * gnu/packages/ruby.scm (ruby)[version]: Update to 2.5.1.
    [source]: Remove the Ruby 2.4 patch, and update sha256.
    (ruby-2.4): New variable.
---
 gnu/packages/ruby.scm | 25 ++++++++++++++++++++++---
 1 file changed, 22 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 908dfd5..45e4c35 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -54,7 +54,7 @@
 (define-public ruby
   (package
     (name "ruby")
-    (version "2.4.3")
+    (version "2.5.1")
     (source
      (origin
        (method url-fetch)
@@ -63,8 +63,7 @@
                            "/ruby-" version ".tar.xz"))
        (sha256
         (base32
-         "0l9bv67dgsphk42lmiskhrnh47hbyj6rfg2rcjx22xivpx07srr3"))
-       (patches (search-patches "ruby-rubygems-276-for-ruby24.patch"))
+         "0kbm3gkv689d1mb8fh261z8s79d6hw07p0xyk735yfqyskpcasl8"))
        (modules '((guix build utils)))
        (snippet `(begin
                    ;; Remove bundled libffi
@@ -106,6 +105,26 @@ a focus on simplicity and productivity.")
     (home-page "https://www.ruby-lang.org";)
     (license license:ruby)))
 
+(define-public ruby-2.4
+  (package
+    (inherit 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"))
+       (patches (search-patches "ruby-rubygems-276-for-ruby24.patch"))
+       (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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]