GNU bug report logs - #40253
[PATCH] gnu: neofetch: update to 7.0.0

Previous Next

Package: guix-patches;

Reported by: Michael Rohleder <mike <at> rohleder.de>

Date: Fri, 27 Mar 2020 15:52:02 UTC

Severity: normal

Tags: patch

Done: Jakub Kądziołka <kuba <at> kadziolka.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 40253 in the body.
You can then email your comments to 40253 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#40253; Package guix-patches. (Fri, 27 Mar 2020 15:52:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Michael Rohleder <mike <at> rohleder.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 27 Mar 2020 15:52:02 GMT) Full text and rfc822 format available.

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

From: Michael Rohleder <mike <at> rohleder.de>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: neofetch: update to 7.0.0
Date: Fri, 27 Mar 2020 16:51:31 +0100
[Message part 1 (text/plain, inline)]
* gnu/packages/admin.scm (neofetch): update to 7.0.0
[0001-gnu-packages-admin.scm-neofetch-update-to-7.0.0.patch (text/x-patch, inline)]
From 8ccb90034ea1aee54b51232b48748b937848aa19 Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike <at> rohleder.de>
Date: Fri, 27 Mar 2020 16:46:40 +0100
Subject: [PATCH] * gnu/packages/admin.scm (neofetch): update to 7.0.0

---
 gnu/packages/admin.scm | 50 +++++++++++++++++++++---------------------
 1 file changed, 25 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 4d3425d039..b2b5111458 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -31,6 +31,7 @@
 ;;; Copyright © 2019 Guillaume Le Vaillant <glv <at> posteo.net>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe <at> gmail.com>
 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust <at> gmail.com>
+;;; Copyright © 2020 Michael Rohleder <mike <at> rohleder.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2927,35 +2928,34 @@ tool for remote execution and deployment.")
     (license license:bsd-2)))
 
 (define-public neofetch
-  (let ((commit "501d6b7594296d9eac8943140f8581daf555873d"))
-    (package
-      (name "neofetch")
-      (version (git-version "6.1.0" "1" commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/dylanaraps/neofetch")
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "1h5md9jimyc6z4d7w66j27hn8qghzyxgpkh5h9dclzxpp5cs8whb"))))
-      (build-system gnu-build-system)
-      (arguments
-       `(#:tests? #f                      ; there are no tests
-         #:make-flags
-         (list (string-append "PREFIX=" %output))
-         #:phases
-         (modify-phases %standard-phases
-           (delete 'configure))))         ; no configure script
-      (home-page "https://github.com/dylanaraps/neofetch")
-      (synopsis "System information script")
-      (description "Neofetch is a command-line system information tool written in
+  (package
+    (name "neofetch")
+    (version "7.0.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/dylanaraps/neofetch")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0xc0fdc7n5bhqirh83agqiy8r14l14zwca07czvj8vgnsnfybslr"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f                      ; there are no tests
+       #:make-flags
+       (list (string-append "PREFIX=" %output))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))         ; no configure script
+    (home-page "https://github.com/dylanaraps/neofetch")
+    (synopsis "System information script")
+    (description "Neofetch is a command-line system information tool written in
 Bash.  Neofetch displays information about your system next to an image, your OS
 logo, or any ASCII file of your choice.  The main purpose of Neofetch is to be
 used in screenshots to show other users what operating system or distribution
 you are running, what theme or icon set you are using, etc.")
-      (license license:expat))))
+    (license license:expat)))
 
 (define-public screenfetch
   (package
-- 
2.26.0

[Message part 3 (text/plain, inline)]
-- 
Press any key to continue or any other key to quit.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#40253; Package guix-patches. (Fri, 27 Mar 2020 20:45:02 GMT) Full text and rfc822 format available.

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

From: Leo Famulari <leo <at> famulari.name>
To: Michael Rohleder <mike <at> rohleder.de>
Cc: 40253 <at> debbugs.gnu.org
Subject: Re: [bug#40253] [PATCH] gnu: neofetch: update to 7.0.0
Date: Fri, 27 Mar 2020 16:44:28 -0400
On Fri, Mar 27, 2020 at 04:51:31PM +0100, Michael Rohleder wrote:
> * gnu/packages/admin.scm (neofetch): update to 7.0.0

> From 8ccb90034ea1aee54b51232b48748b937848aa19 Mon Sep 17 00:00:00 2001
> From: Michael Rohleder <mike <at> rohleder.de>
> Date: Fri, 27 Mar 2020 16:46:40 +0100
> Subject: [PATCH] * gnu/packages/admin.scm (neofetch): update to 7.0.0

Thanks! Pushed as 816bce684c2fd5cc1908e27fde2891ecdf25e378 after fixing
cosmetic issues with the commit message (capitalization and
punctuation).




bug closed, send any further explanations to 40253 <at> debbugs.gnu.org and Michael Rohleder <mike <at> rohleder.de> Request was from Jakub Kądziołka <kuba <at> kadziolka.net> to control <at> debbugs.gnu.org. (Mon, 30 Mar 2020 02:36:47 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#40253; Package guix-patches. (Mon, 30 Mar 2020 02:36:55 GMT) Full text and rfc822 format available.

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

From: "Michael Rohleder" <mike <at> rohleder.de>
To: 40253-done <at> debbugs.gnu.org
Subject: close
Date: Sat, 28 Mar 2020 18:50:50 +0100
close 40253




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 27 Apr 2020 11:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 358 days ago.

Previous Next


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