GNU bug report logs - #34190
[PATCH] gnu: clojure: Update to 1.10.0.

Previous Next

Package: guix-patches;

Reported by: Mathieu Lirzin <mthl <at> gnu.org>

Date: Thu, 24 Jan 2019 12:50:01 UTC

Severity: normal

Tags: patch

Done: Ricardo Wurmus <rekado <at> elephly.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 34190 in the body.
You can then email your comments to 34190 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#34190; Package guix-patches. (Thu, 24 Jan 2019 12:50:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Mathieu Lirzin <mthl <at> gnu.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 24 Jan 2019 12:50:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Lirzin <mthl <at> gnu.org>
To: guix-patches <at> gnu.org
Cc: Mathieu Lirzin <mthl <at> gnu.org>
Subject: [PATCH] gnu: clojure: Update to 1.10.0.
Date: Thu, 24 Jan 2019 13:48:31 +0100
* gnu/packages/clojure.scm (clojure): Update to 1.10.0.
[source]: Use 'git-fetch'.
---
 gnu/packages/clojure.scm | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
index 1dba4cef87..8112b65278 100644
--- a/gnu/packages/clojure.scm
+++ b/gnu/packages/clojure.scm
@@ -65,15 +65,16 @@
 
     (package
       (name "clojure")
-      (version "1.9.0")
-      (source
-       (origin
-         (method url-fetch)
-         (uri
-          (string-append "https://github.com/clojure/clojure/archive/clojure-"
-                         version ".tar.gz"))
-         (sha256
-          (base32 "0xjbzcw45z32vsn9pifp7ndysjzqswp5ig0jkjpivigh2ckkdzha"))))
+      (version "1.10.0")
+      (source (let ((name+version (string-append name "-" version)))
+                (origin
+                  (method git-fetch)
+                  (uri (git-reference
+                        (url "https://github.com/clojure/clojure")
+                        (commit name+version)))
+                  (file-name (string-append name+version "-checkout"))
+                  (sha256
+                   (base32 "1kcyv2836acs27vi75hvf3r773ahv2nlh9b3j9xa9m9sdanz1h83")))))
       (build-system ant-build-system)
       (arguments
        `(#:imported-modules ((guix build clojure-utils)
-- 
2.20.1





Information forwarded to guix-patches <at> gnu.org:
bug#34190; Package guix-patches. (Thu, 24 Jan 2019 20:36:04 GMT) Full text and rfc822 format available.

Message #8 received at 34190 <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Lirzin <mthl <at> gnu.org>
To: Ricardo Wurmus <rekado <at> elephly.net>
Cc: 34190 <at> debbugs.gnu.org
Subject: Re: [bug#34190] [PATCH] gnu: clojure: Update to 1.10.0.
Date: Thu, 24 Jan 2019 21:35:17 +0100
Hello Ricardo,

Ricardo Wurmus <rekado <at> elephly.net> writes:

>> * gnu/packages/clojure.scm (clojure): Update to 1.10.0.
>> [source]: Use 'git-fetch'.
>> ---
>>  gnu/packages/clojure.scm | 19 ++++++++++---------
>>  1 file changed, 10 insertions(+), 9 deletions(-)
>>
>> diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
>> index 1dba4cef87..8112b65278 100644
>> --- a/gnu/packages/clojure.scm
>> +++ b/gnu/packages/clojure.scm
>> @@ -65,15 +65,16 @@
[...]
>
> This looks good to me.  Thanks!

Thanks for your impressively reliable stewardship!

-- 
Mathieu Lirzin
GPG: F2A3 8D7E EB2B 6640 5761  070D 0ADE E100 9460 4D37




Information forwarded to guix-patches <at> gnu.org:
bug#34190; Package guix-patches. (Fri, 25 Jan 2019 23:59:01 GMT) Full text and rfc822 format available.

Message #11 received at 34190 <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Mathieu Lirzin <mthl <at> gnu.org>
Cc: 34190 <at> debbugs.gnu.org
Subject: Re: [bug#34190] [PATCH] gnu: clojure: Update to 1.10.0.
Date: Thu, 24 Jan 2019 21:10:09 +0100
Hi Mathieu,

> * gnu/packages/clojure.scm (clojure): Update to 1.10.0.
> [source]: Use 'git-fetch'.
> ---
>  gnu/packages/clojure.scm | 19 ++++++++++---------
>  1 file changed, 10 insertions(+), 9 deletions(-)
>
> diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
> index 1dba4cef87..8112b65278 100644
> --- a/gnu/packages/clojure.scm
> +++ b/gnu/packages/clojure.scm
> @@ -65,15 +65,16 @@
>  
>      (package
>        (name "clojure")
> -      (version "1.9.0")
> -      (source
> -       (origin
> -         (method url-fetch)
> -         (uri
> -          (string-append "https://github.com/clojure/clojure/archive/clojure-"
> -                         version ".tar.gz"))
> -         (sha256
> -          (base32 "0xjbzcw45z32vsn9pifp7ndysjzqswp5ig0jkjpivigh2ckkdzha"))))
> +      (version "1.10.0")
> +      (source (let ((name+version (string-append name "-" version)))
> +                (origin
> +                  (method git-fetch)
> +                  (uri (git-reference
> +                        (url "https://github.com/clojure/clojure")
> +                        (commit name+version)))
> +                  (file-name (string-append name+version "-checkout"))
> +                  (sha256
> +                   (base32 "1kcyv2836acs27vi75hvf3r773ahv2nlh9b3j9xa9m9sdanz1h83")))))
>        (build-system ant-build-system)
>        (arguments
>         `(#:imported-modules ((guix build clojure-utils)

This looks good to me.  Thanks!

-- 
Ricardo





Reply sent to Ricardo Wurmus <rekado <at> elephly.net>:
You have taken responsibility. (Tue, 29 Jan 2019 10:47:02 GMT) Full text and rfc822 format available.

Notification sent to Mathieu Lirzin <mthl <at> gnu.org>:
bug acknowledged by developer. (Tue, 29 Jan 2019 10:47:03 GMT) Full text and rfc822 format available.

Message #16 received at 34190-done <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Mathieu Lirzin <mthl <at> gnu.org>
Cc: 34190-done <at> debbugs.gnu.org
Subject: Re: [bug#34190] [PATCH] gnu: clojure: Update to 1.10.0.
Date: Tue, 29 Jan 2019 10:59:54 +0100
Ricardo Wurmus <rekado <at> elephly.net> writes:

> Hi Mathieu,
>
>> * gnu/packages/clojure.scm (clojure): Update to 1.10.0.
>> [source]: Use 'git-fetch'.
[…]
> This looks good to me.  Thanks!

Pushed to “master” with commit 9e532ae22.

--
Ricardo





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 26 Feb 2019 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 32 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.