emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#30125: closed ([PATCH] gnu: clojure: Update to 1.9


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#30125: closed ([PATCH] gnu: clojure: Update to 1.9.0.)
Date: Tue, 16 Jan 2018 14:49:02 +0000

Your message dated Tue, 16 Jan 2018 15:48:36 +0100
with message-id <address@hidden>
and subject line Re: [bug#30125] [PATCH] gnu: clojure: Update to 1.9.0.
has caused the debbugs.gnu.org bug report #30125,
regarding [PATCH] gnu: clojure: Update to 1.9.0.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
30125: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=30125
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: clojure: Update to 1.9.0. Date: Mon, 15 Jan 2018 22:52:59 +0800 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)
Hi,

This patch updates clojure to its latest version. Btw, I manage to build
instaparse (a context free grammar parser generator written in clojure)
by hand. I think I understand how to compile (small) clojure project
now. (I think it is still hopoless for me to try to compile leiningen
from strach though...) Maybe I will send a patch when I have time. Maybe
next month...

>From a16d703080c99243f96d4650555425d5ab449653 Mon Sep 17 00:00:00 2001
From: Alex Vong <address@hidden>
Date: Mon, 15 Jan 2018 22:30:10 +0800
Subject: [PATCH] gnu: clojure: Update to 1.9.0.

* gnu/packages/java.scm (clojure): Update to 1.9.0. Add "core-specs-alpha-src"
and "spec-alpha-src". Remove "java-classpath-src" and "tools-reader-src".
---
 gnu/packages/java.scm | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 598249aa8..2a0636ab2 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -5,7 +5,7 @@
 ;;; Copyright © 2017 Carlo Zancanaro <address@hidden>
 ;;; Copyright © 2017 Julien Lepiller <address@hidden>
 ;;; Copyright © 2017 Thomas Danckaert <address@hidden>
-;;; Copyright © 2016, 2017 Alex Vong <address@hidden>
+;;; Copyright © 2016, 2017, 2018 Alex Vong <address@hidden>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -1833,15 +1833,15 @@ IcedTea build harness.")
                         (snippet remove-archives)))))
     (package
       (name "clojure")
-      (version "1.8.0")
+      (version "1.9.0")
       (source
        (origin
          (method url-fetch)
          (uri
-          (string-append "http://repo1.maven.org/maven2/org/clojure/clojure/";
-                         version "/clojure-" version ".zip"))
+          (string-append "https://github.com/clojure/clojure/archive/clojure-";
+                         version ".tar.gz"))
          (sha256
-          (base32 "1nip095fz5c492sw15skril60i1vd21ibg6szin4jcvyy3xr6cym"))
+          (base32 "0xjbzcw45z32vsn9pifp7ndysjzqswp5ig0jkjpivigh2ckkdzha"))
          (modules '((guix build utils)))
          (snippet remove-archives)))
       (build-system ant-build-system)
@@ -1871,12 +1871,12 @@ IcedTea build harness.")
                         (error "failed to unpack tarball" name)))
                   (copy-recursively (string-append name "/src/main/clojure/")
                                     "src/clj/"))
-                '("data-generators-src"
-                  "java-classpath-src"
+                '("core-specs-alpha-src"
+                  "data-generators-src"
+                  "spec-alpha-src"
                   "test-check-src"
                   "test-generative-src"
-                  "tools-namespace-src"
-                  "tools-reader-src"))
+                  "tools-namespace-src"))
                #t))
            ;; The javadoc target is not built by default.
            (add-after 'build 'build-doc
@@ -1908,14 +1908,18 @@ IcedTea build harness.")
                  #t))))))
       ;; The native-inputs below are needed to run the tests.
       (native-inputs
-       `(("data-generators-src"
+       `(("core-specs-alpha-src"
+          ,(submodule "core.specs.alpha/archive/core.specs.alpha-"
+                      "0.1.24"
+                      "0v2a0svf1ar2y42ajxwsjr7zmm5j7pp2zwrd2jh3k7xzd1p9x1fv"))
+         ("data-generators-src"
           ,(submodule "data.generators/archive/data.generators-"
                       "0.1.2"
                       "0kki093jp4ckwxzfnw8ylflrfqs8b1i1wi9iapmwcsy328dmgzp1"))
-         ("java-classpath-src"
-          ,(submodule "java.classpath/archive/java.classpath-"
-                      "0.2.3"
-                      "0sjymly9xh1lkvwn5ygygpsfwz4dabblnlq0c9bx76rkvq62fyng"))
+         ("spec-alpha-src"
+          ,(submodule "spec.alpha/archive/spec.alpha-"
+                      "0.1.143"
+                      "00alf0347licdn773w2jarpllyrbl52qz4d8mw61anjksacxylzz"))
          ("test-check-src"
           ,(submodule "test.check/archive/test.check-"
                       "0.9.0"
@@ -1927,11 +1931,7 @@ IcedTea build harness.")
          ("tools-namespace-src"
           ,(submodule "tools.namespace/archive/tools.namespace-"
                       "0.2.11"
-                      "10baak8v0hnwz2hr33bavshm7y49mmn9zsyyms1dwjz45p5ymhy0"))
-         ("tools-reader-src"
-          ,(submodule "tools.reader/archive/tools.reader-"
-                      "1.0.0"
-                      
"1lafblmmj4hkg0aqrf19qkdw9wdcsh3qxmn6cbkmnzbhffpyv2lv"))))
+                      
"10baak8v0hnwz2hr33bavshm7y49mmn9zsyyms1dwjz45p5ymhy0"))))
       (home-page "https://clojure.org/";)
       (synopsis "Lisp dialect running on the JVM")
       (description "Clojure is a dynamic, general-purpose programming language,
-- 
2.15.1

Cheers,
Alex

--- End Message ---
--- Begin Message --- Subject: Re: [bug#30125] [PATCH] gnu: clojure: Update to 1.9.0. Date: Tue, 16 Jan 2018 15:48:36 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)
Hi Alex,

Alex Vong <address@hidden> skribis:

> This patch updates clojure to its latest version. Btw, I manage to build
> instaparse (a context free grammar parser generator written in clojure)
> by hand. I think I understand how to compile (small) clojure project
> now. (I think it is still hopoless for me to try to compile leiningen
> from strach though...) Maybe I will send a patch when I have time. Maybe
> next month...

Sounds promising.  :-)

> From a16d703080c99243f96d4650555425d5ab449653 Mon Sep 17 00:00:00 2001
> From: Alex Vong <address@hidden>
> Date: Mon, 15 Jan 2018 22:30:10 +0800
> Subject: [PATCH] gnu: clojure: Update to 1.9.0.
>
> * gnu/packages/java.scm (clojure): Update to 1.9.0. Add "core-specs-alpha-src"
> and "spec-alpha-src". Remove "java-classpath-src" and "tools-reader-src".

Applied, thank you!

Ludo’.


--- End Message ---

reply via email to

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