all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#58456] [PATCH] gnu: entr: Update to 5.2.
@ 2022-10-11 21:05 jgart via Guix-patches via
  2022-10-11 21:08 ` [bug#58456] [PATCH v2] " jgart via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-10-11 21:05 UTC (permalink / raw)
  To: 58456; +Cc: jgart

* gnu/packages/entr.scm (entr): Update to 5.2.
---
 gnu/packages/entr.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/entr.scm b/gnu/packages/entr.scm
index 29fd5b7db6..b74a00fec3 100644
--- a/gnu/packages/entr.scm
+++ b/gnu/packages/entr.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
 ;;; Copyright © 2021 Solene Rapenne <solene@perso.pw>
+;;; Copyright © 2022 jgart <jgart@dismail.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -34,14 +35,14 @@ (define-module (gnu packages entr)
 (define-public entr
   (package
     (name "entr")
-    (version "4.9")
+    (version "5.2")
     (source (origin
               (method url-fetch)
-              (uri (string-append "http://entrproject.org/code/entr-"
+              (uri (string-append "https://eradman.com/entrproject/code/entr-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "18h58k69f0qmqkknbcnhm5dz7mv5gr2blcq88qr62vz4zg9a8mp2"))))
+                "1063b33bqggyqd0h7cvcvznpgiy9s2zqkdsc1q622xdh8sfk0zi3"))))
     (build-system gnu-build-system)
     (arguments
      `(#:test-target "test"
@@ -67,7 +68,7 @@ (define-public entr
              #t)))))
     (inputs
      (list bash coreutils ncurses))
-    (home-page "http://entrproject.org/")
+    (home-page "https://eradman.com/entrproject/")
     (synopsis "Run arbitrary commands when files change")
     (description
      "entr is a zero-configuration tool with no external build or run-time
-- 
2.38.0





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

* [bug#58456] [PATCH v2] gnu: entr: Update to 5.2.
  2022-10-11 21:05 [bug#58456] [PATCH] gnu: entr: Update to 5.2 jgart via Guix-patches via
@ 2022-10-11 21:08 ` jgart via Guix-patches via
  2022-10-13 11:47   ` bug#58456: " Christopher Baines
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-10-11 21:08 UTC (permalink / raw)
  To: 58456; +Cc: jgart

* gnu/packages/entr.scm (entr): Update to 5.2.
[source]: Update uri.
[home-page]: Update home-page.

v2 updates the commit msg with more infos. thnx!
---
 gnu/packages/entr.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/entr.scm b/gnu/packages/entr.scm
index 29fd5b7db6..b74a00fec3 100644
--- a/gnu/packages/entr.scm
+++ b/gnu/packages/entr.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
 ;;; Copyright © 2021 Solene Rapenne <solene@perso.pw>
+;;; Copyright © 2022 jgart <jgart@dismail.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -34,14 +35,14 @@ (define-module (gnu packages entr)
 (define-public entr
   (package
     (name "entr")
-    (version "4.9")
+    (version "5.2")
     (source (origin
               (method url-fetch)
-              (uri (string-append "http://entrproject.org/code/entr-"
+              (uri (string-append "https://eradman.com/entrproject/code/entr-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "18h58k69f0qmqkknbcnhm5dz7mv5gr2blcq88qr62vz4zg9a8mp2"))))
+                "1063b33bqggyqd0h7cvcvznpgiy9s2zqkdsc1q622xdh8sfk0zi3"))))
     (build-system gnu-build-system)
     (arguments
      `(#:test-target "test"
@@ -67,7 +68,7 @@ (define-public entr
              #t)))))
     (inputs
      (list bash coreutils ncurses))
-    (home-page "http://entrproject.org/")
+    (home-page "https://eradman.com/entrproject/")
     (synopsis "Run arbitrary commands when files change")
     (description
      "entr is a zero-configuration tool with no external build or run-time
-- 
2.38.0





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

* bug#58456: [PATCH v2] gnu: entr: Update to 5.2.
  2022-10-11 21:08 ` [bug#58456] [PATCH v2] " jgart via Guix-patches via
@ 2022-10-13 11:47   ` Christopher Baines
  0 siblings, 0 replies; 3+ messages in thread
From: Christopher Baines @ 2022-10-13 11:47 UTC (permalink / raw)
  To: jgart; +Cc: 58456-done

[-- Attachment #1: Type: text/plain, Size: 403 bytes --]


jgart via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/entr.scm (entr): Update to 5.2.
> [source]: Update uri.
> [home-page]: Update home-page.
>
> v2 updates the commit msg with more infos. thnx!
> ---
>  gnu/packages/entr.scm | 9 +++++----
>  1 file changed, 5 insertions(+), 4 deletions(-)

Thanks, I've pushed this to master as
10d429f2fce321d8285684503094694ec3979865.

Chris

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

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

end of thread, other threads:[~2022-10-13 11:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-11 21:05 [bug#58456] [PATCH] gnu: entr: Update to 5.2 jgart via Guix-patches via
2022-10-11 21:08 ` [bug#58456] [PATCH v2] " jgart via Guix-patches via
2022-10-13 11:47   ` bug#58456: " Christopher Baines

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.