all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#40253] [PATCH] gnu: neofetch: update to 7.0.0
@ 2020-03-27 15:51 Michael Rohleder
  2020-03-27 20:44 ` Leo Famulari
  2020-03-28 17:50 ` [bug#40253] close Michael Rohleder
  0 siblings, 2 replies; 3+ messages in thread
From: Michael Rohleder @ 2020-03-27 15:51 UTC (permalink / raw)
  To: 40253


[-- Attachment #1.1: Type: text/plain, Size: 53 bytes --]

* gnu/packages/admin.scm (neofetch): update to 7.0.0

[-- Attachment #1.2: [PATCH] * gnu/packages/admin.scm (neofetch): update to 7.0.0 --]
[-- Type: text/x-patch, Size: 3423 bytes --]

From 8ccb90034ea1aee54b51232b48748b937848aa19 Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike@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@posteo.net>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2020 Michael Rohleder <mike@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


[-- Attachment #1.3: Type: text/plain, Size: 58 bytes --]

-- 
Press any key to continue or any other key to quit.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#40253] [PATCH] gnu: neofetch: update to 7.0.0
  2020-03-27 15:51 [bug#40253] [PATCH] gnu: neofetch: update to 7.0.0 Michael Rohleder
@ 2020-03-27 20:44 ` Leo Famulari
  2020-03-28 17:50 ` [bug#40253] close Michael Rohleder
  1 sibling, 0 replies; 3+ messages in thread
From: Leo Famulari @ 2020-03-27 20:44 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 40253

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@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).

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#40253] close
  2020-03-27 15:51 [bug#40253] [PATCH] gnu: neofetch: update to 7.0.0 Michael Rohleder
  2020-03-27 20:44 ` Leo Famulari
@ 2020-03-28 17:50 ` Michael Rohleder
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Rohleder @ 2020-03-28 17:50 UTC (permalink / raw)
  To: 40253-done

close 40253

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-03-30  2:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-27 15:51 [bug#40253] [PATCH] gnu: neofetch: update to 7.0.0 Michael Rohleder
2020-03-27 20:44 ` Leo Famulari
2020-03-28 17:50 ` [bug#40253] close Michael Rohleder

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.