GNU bug report logs -
#27225
[PATCH] artwork: Use a descriptive name for the source directory.
Previous Next
Reported by: Leo Famulari <leo <at> famulari.name>
Date: Sat, 3 Jun 2017 23:55:02 UTC
Severity: normal
Tags: patch
Done: Leo Famulari <leo <at> famulari.name>
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 27225 in the body.
You can then email your comments to 27225 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#27225
; Package
guix-patches
.
(Sat, 03 Jun 2017 23:55:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Leo Famulari <leo <at> famulari.name>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 03 Jun 2017 23:55:04 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/artwork.scm (%artwork-repository): Set a descriptive file-name and
use the full commit hash when fetching.
---
gnu/artwork.scm | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/gnu/artwork.scm b/gnu/artwork.scm
index 94c89143a..204845bd6 100644
--- a/gnu/artwork.scm
+++ b/gnu/artwork.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo <at> gnu.org>
+;;; Copyright © 2017 Leo Famulari <leo <at> famulari.name>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -28,13 +29,15 @@
;;; Code:
(define %artwork-repository
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
- (commit "6998d30")))
- (sha256
- (base32
- "0k7j3pj9s3zqiqmfkapypssvzx3f12yr0cc2rbzxqfii0b4clp1j"))))
+ (let ((commit "6998d30425289b087c64f63e7415df2241e591db"))
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
+ (commit commit)))
+ (file-name (string-append "guix-artwork-" (string-take commit 7) "-checkout"))
+ (sha256
+ (base32
+ "0k7j3pj9s3zqiqmfkapypssvzx3f12yr0cc2rbzxqfii0b4clp1j")))))
;;; artwork.scm ends here
--
2.13.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#27225
; Package
guix-patches
.
(Tue, 06 Jun 2017 23:13:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 27225 <at> debbugs.gnu.org (full text, mbox):
Leo Famulari <leo <at> famulari.name> skribis:
> * gnu/artwork.scm (%artwork-repository): Set a descriptive file-name and
> use the full commit hash when fetching.
Good idea, thank you!
Ludo’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#27225
; Package
guix-patches
.
(Wed, 07 Jun 2017 09:58:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 27225 <at> debbugs.gnu.org (full text, mbox):
Leo Famulari (2017-06-03 19:54 -0400) wrote:
> * gnu/artwork.scm (%artwork-repository): Set a descriptive file-name and
> use the full commit hash when fetching.
> ---
> gnu/artwork.scm | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/gnu/artwork.scm b/gnu/artwork.scm
> index 94c89143a..204845bd6 100644
> --- a/gnu/artwork.scm
> +++ b/gnu/artwork.scm
> @@ -1,5 +1,6 @@
> ;;; GNU Guix --- Functional package management for GNU
> ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo <at> gnu.org>
> +;;; Copyright © 2017 Leo Famulari <leo <at> famulari.name>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -28,13 +29,15 @@
> ;;; Code:
>
> (define %artwork-repository
> - (origin
> - (method git-fetch)
> - (uri (git-reference
> - (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
> - (commit "6998d30")))
> - (sha256
> - (base32
> - "0k7j3pj9s3zqiqmfkapypssvzx3f12yr0cc2rbzxqfii0b4clp1j"))))
> + (let ((commit "6998d30425289b087c64f63e7415df2241e591db"))
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "git://git.savannah.gnu.org/guix/guix-artwork.git")
> + (commit commit)))
> + (file-name (string-append "guix-artwork-" (string-take commit 7) "-checkout"))
As for me, this line is too long, I would make it:
(file-name (string-append "guix-artwork-" (string-take commit 7)
"-checkout"))
> + (sha256
> + (base32
> + "0k7j3pj9s3zqiqmfkapypssvzx3f12yr0cc2rbzxqfii0b4clp1j")))))
>
> ;;; artwork.scm ends here
--
Alex
Reply sent
to
Leo Famulari <leo <at> famulari.name>
:
You have taken responsibility.
(Wed, 07 Jun 2017 20:00:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Leo Famulari <leo <at> famulari.name>
:
bug acknowledged by developer.
(Wed, 07 Jun 2017 20:00:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 27225-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Wed, Jun 07, 2017 at 12:56:56PM +0300, Alex Kost wrote:
> Leo Famulari (2017-06-03 19:54 -0400) wrote:
> > * gnu/artwork.scm (%artwork-repository): Set a descriptive file-name and
> > use the full commit hash when fetching.
> > + (file-name (string-append "guix-artwork-" (string-take commit 7) "-checkout"))
>
> As for me, this line is too long, I would make it:
>
> (file-name (string-append "guix-artwork-" (string-take commit 7)
> "-checkout"))
Oops! Fixed before pushing as 94db92f78ec9c849f9c8da05d4d35356909f9fbe.
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 06 Jul 2017 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 8 years and 64 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.