guix-commits
[Top][All Lists]
Advanced

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

04/06: gnu: guile: Add 3.0.0.


From: guix-commits
Subject: 04/06: gnu: guile: Add 3.0.0.
Date: Thu, 16 Jan 2020 12:31:26 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit e7921d5ecb9b9615396e5bbd286f132d97d016cc
Author: Ludovic Courtès <address@hidden>
AuthorDate: Thu Jan 16 16:41:59 2020 +0100

    gnu: guile: Add 3.0.0.
    
    * gnu/packages/guile.scm (guile-3.0): New variable.
    (guile-next): Turn into an alias for GUILE-3.0.
---
 gnu/packages/guile.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 8d3f43e..e940d38 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -283,19 +283,19 @@ without requiring the source code to be rewritten.")
               (base32
                "07p3g0v2ba2vlfbfidqzlgbhnzdx46wh2rgc5gszq1mjyx5bks6r"))))))
 
-(define-public guile-next
-  ;; This is the upcoming Guile 3.0, with JIT support.
+(define-public guile-3.0
+  ;; This is the latest Guile stable version.
   (package
     (inherit guile-2.2)
-    (name "guile-next")
-    (version "2.9.9")
+    (name "guile-next")                           ;to be renamed to "guile"
+    (version "3.0.0")
     (source (origin
               (inherit (package-source guile-2.2))
-              (uri (string-append "ftp://alpha.gnu.org/gnu/guile/guile-";
+              (uri (string-append "ftp://ftp.gnu.org/gnu/guile/guile-";
                                   version ".tar.xz"))
               (sha256
                (base32
-                "0s99zzdzj29fb42q5fwn7vqg9k7y9ppq9vkv4p39zr93z8694wdz"))))
+                "0x8ca6q1qdmk29lh12gj6ngvgn7kp79w42rxfgwrpxm9jmjqs4y9"))))
     (native-search-paths
      (list (search-path-specification
             (variable "GUILE_LOAD_PATH")
@@ -303,9 +303,9 @@ without requiring the source code to be rewritten.")
            (search-path-specification
             (variable "GUILE_LOAD_COMPILED_PATH")
             (files '("lib/guile/3.0/site-ccache"
-                     "share/guile/site/3.0")))))
-    (properties '((ftp-server . "alpha.gnu.org")
-                  (upstream-name . "guile")))))
+                     "share/guile/site/3.0")))))))
+
+(define-public guile-next guile-3.0)
 
 (define* (make-guile-readline guile #:optional (name "guile-readline"))
   (package



reply via email to

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