unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#49016] [PATCH] gnu: moreutils: Remove obsolete source uri.
@ 2021-06-14  7:09 Sergey Trofimov
  2021-06-15 18:19 ` Efraim Flashner
  2021-06-17  5:31 ` Sergey Trofimov
  0 siblings, 2 replies; 4+ messages in thread
From: Sergey Trofimov @ 2021-06-14  7:09 UTC (permalink / raw)
  To: 49016; +Cc: Sergey Trofimov

* gnu/packages/moreutils.scm (moreutils): Remove obsolete origin uri as
it returns 404.
---
 gnu/packages/moreutils.scm | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gnu/packages/moreutils.scm b/gnu/packages/moreutils.scm
index 9e3bf0fc29..63a9ae4d37 100644
--- a/gnu/packages/moreutils.scm
+++ b/gnu/packages/moreutils.scm
@@ -37,9 +37,6 @@
        (uri (list
              (string-append
               "https://git.joeyh.name/index.cgi/moreutils.git/snapshot/"
-              name "-" version ".tar.gz")
-             (string-append
-              "http://drabczyk.org/"
               name "-" version ".tar.gz")))
        (sha256
         (base32 "10c8b4bwnli4gxwvgmgkc5kin1ksrxsnxmigs7y4rrh4aaszdjb0"))))
-- 
2.32.0





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

* [bug#49016] [PATCH] gnu: moreutils: Remove obsolete source uri.
  2021-06-14  7:09 [bug#49016] [PATCH] gnu: moreutils: Remove obsolete source uri Sergey Trofimov
@ 2021-06-15 18:19 ` Efraim Flashner
  2021-06-17  5:31 ` Sergey Trofimov
  1 sibling, 0 replies; 4+ messages in thread
From: Efraim Flashner @ 2021-06-15 18:19 UTC (permalink / raw)
  To: Sergey Trofimov; +Cc: 49016

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

On Mon, Jun 14, 2021 at 09:09:50AM +0200, Sergey Trofimov wrote:
> * gnu/packages/moreutils.scm (moreutils): Remove obsolete origin uri as
> it returns 404.
> ---
>  gnu/packages/moreutils.scm | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/gnu/packages/moreutils.scm b/gnu/packages/moreutils.scm
> index 9e3bf0fc29..63a9ae4d37 100644
> --- a/gnu/packages/moreutils.scm
> +++ b/gnu/packages/moreutils.scm
> @@ -37,9 +37,6 @@
>         (uri (list
>               (string-append
>                "https://git.joeyh.name/index.cgi/moreutils.git/snapshot/"
> -              name "-" version ".tar.gz")
> -             (string-append
> -              "http://drabczyk.org/"
>                name "-" version ".tar.gz")))
>         (sha256
>          (base32 "10c8b4bwnli4gxwvgmgkc5kin1ksrxsnxmigs7y4rrh4aaszdjb0"))))
> -- 
> 2.32.0
> 

Since there's now only one URI left you can also remove the list. Can
you send an updated patch?

Thanks.

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

* [bug#49016] [PATCH] gnu: moreutils: Remove obsolete source uri.
  2021-06-14  7:09 [bug#49016] [PATCH] gnu: moreutils: Remove obsolete source uri Sergey Trofimov
  2021-06-15 18:19 ` Efraim Flashner
@ 2021-06-17  5:31 ` Sergey Trofimov
  2021-06-21 12:20   ` bug#49016: " Efraim Flashner
  1 sibling, 1 reply; 4+ messages in thread
From: Sergey Trofimov @ 2021-06-17  5:31 UTC (permalink / raw)
  To: 49016; +Cc: Sergey Trofimov

* gnu/packages/moreutils.scm (moreutils): Remove obsolete origin uri as
it returns 404.
---
 gnu/packages/moreutils.scm | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/moreutils.scm b/gnu/packages/moreutils.scm
index 9e3bf0fc29..47bda32126 100644
--- a/gnu/packages/moreutils.scm
+++ b/gnu/packages/moreutils.scm
@@ -34,13 +34,9 @@
     (source
      (origin
        (method url-fetch)
-       (uri (list
-             (string-append
-              "https://git.joeyh.name/index.cgi/moreutils.git/snapshot/"
-              name "-" version ".tar.gz")
-             (string-append
-              "http://drabczyk.org/"
-              name "-" version ".tar.gz")))
+       (uri (string-append
+             "https://git.joeyh.name/index.cgi/moreutils.git/snapshot/"
+             name "-" version ".tar.gz"))
        (sha256
         (base32 "10c8b4bwnli4gxwvgmgkc5kin1ksrxsnxmigs7y4rrh4aaszdjb0"))))
     (build-system gnu-build-system)
-- 
2.32.0





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

* bug#49016: [PATCH] gnu: moreutils: Remove obsolete source uri.
  2021-06-17  5:31 ` Sergey Trofimov
@ 2021-06-21 12:20   ` Efraim Flashner
  0 siblings, 0 replies; 4+ messages in thread
From: Efraim Flashner @ 2021-06-21 12:20 UTC (permalink / raw)
  To: Sergey Trofimov; +Cc: 49016-done

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

Thanks. Patch pushed.

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

end of thread, other threads:[~2021-06-21 12:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-14  7:09 [bug#49016] [PATCH] gnu: moreutils: Remove obsolete source uri Sergey Trofimov
2021-06-15 18:19 ` Efraim Flashner
2021-06-17  5:31 ` Sergey Trofimov
2021-06-21 12:20   ` bug#49016: " Efraim Flashner

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).