all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#53966] [PATCH] gnu: udpcast: Update to 20211207.
@ 2022-02-13  5:09 Michael Rohleder
  2022-02-13  9:32 ` Maxime Devos
  2022-02-14  9:57 ` bug#53966: " Nicolas Goaziou
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Rohleder @ 2022-02-13  5:09 UTC (permalink / raw)
  To: 53966; +Cc: Michael Rohleder

* gnu/packages/admin.scm (udpcast): Update to 20211207.
[source]: Remove buildroot.net uri.
---
 gnu/packages/admin.scm | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index daab720be5..525a5fdb69 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -32,7 +32,7 @@
 ;;; Copyright © 2019, 2020, 2021 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
 ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
-;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
+;;; Copyright © 2020, 2021, 2022 Michael Rohleder <mike@rohleder.de>
 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
 ;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
 ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
@@ -4912,23 +4912,20 @@ (define-public runitor
 (define-public udpcast
   (package
     (name "udpcast")
-    (version "20200328")
+    (version "20211207")
     (source
      (origin
        (method url-fetch)
        ;; XXX: Original server is at https://www.udpcast.linux.lu is not
        ;; reliable.
        (uri (list (string-append
-                   "http://sources.buildroot.net/udpcast/udpcast-"
-                   version ".tar.gz")
-                  (string-append
                    "https://fossies.org/linux/privat/udpcast-"
                    version ".tar.gz")
                   (string-append
                    "https://www.udpcast.linux.lu/download/udpcast-"
                    version ".tar.gz")))
        (sha256
-        (base32 "06pj86nbi9hx7abbb0z2c5ynhfq0rv89b7nmy0kq3xz2lsxfw6cw"))))
+        (base32 "0l6hck694szrrvz85nm48rwb7mzvg2z2bwa50v51pkvym3kvxkm3"))))
     (build-system gnu-build-system)
     (native-inputs
      (list autoconf automake m4 perl))
-- 
2.34.0





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

* [bug#53966] [PATCH] gnu: udpcast: Update to 20211207.
  2022-02-13  5:09 [bug#53966] [PATCH] gnu: udpcast: Update to 20211207 Michael Rohleder
@ 2022-02-13  9:32 ` Maxime Devos
  2022-02-13 16:45   ` Michael Rohleder
  2022-02-14  9:57 ` bug#53966: " Nicolas Goaziou
  1 sibling, 1 reply; 4+ messages in thread
From: Maxime Devos @ 2022-02-13  9:32 UTC (permalink / raw)
  To: Michael Rohleder, 53966

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

Michael Rohleder schreef op zo 13-02-2022 om 06:09 [+0100]:
>         ;; XXX: Original server is at https://www.udpcast.linux.lu is
> not
>         ;; reliable.

Do you know in what sense it is unreliable?

>         (uri (list (string-append
> -                   "http://sources.buildroot.net/udpcast/udpcast-"
> -                   version ".tar.gz")
> -                  (string-append
>                     "https://fossies.org/linux/privat/udpcast-"
>                     version ".tar.gz")
>                    (string-append
>                     "https://www.udpcast.linux.lu/download/udpcast-"
>                     version ".tar.gz")))
> 


I noticed the old URI
<https://fossies.org/linux/privat/udpcast-20200328.tar.gz/>
now is a 404.  It seems like old versions are automatically removed,
so the fossies URL would be unreliable (from a reproducibility POV).

The only remaining URL is the www.udpcast.linux.lu URL.  It would be
nice to have more fallbacks, so personally I would keep the
sources.buildroot.net URL, even though it currently 404s, with a
comment like

  ;; At time of writing, sources.buildroot.net only has old versions
  ;; of udpcast, but presumably it will be updated eventually.

YMMV.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

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

* [bug#53966] [PATCH] gnu: udpcast: Update to 20211207.
  2022-02-13  9:32 ` Maxime Devos
@ 2022-02-13 16:45   ` Michael Rohleder
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Rohleder @ 2022-02-13 16:45 UTC (permalink / raw)
  To: Maxime Devos; +Cc: 53966

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

Maxime Devos <maximedevos@telenet.be> writes:
> Michael Rohleder schreef op zo 13-02-2022 om 06:09 [+0100]:
>>         ;; XXX: Original server is at https://www.udpcast.linux.lu is
>> not
>>         ;; reliable.
>
> Do you know in what sense it is unreliable?

No.

>>         (uri (list (string-append
>> -                   "http://sources.buildroot.net/udpcast/udpcast-"
>> -                   version ".tar.gz")
>> -                  (string-append
>>                     "https://fossies.org/linux/privat/udpcast-"
>>                     version ".tar.gz")
>>                    (string-append
>>                     "https://www.udpcast.linux.lu/download/udpcast-"
>>                     version ".tar.gz")))
>> 
>
>
> I noticed the old URI
> <https://fossies.org/linux/privat/udpcast-20200328.tar.gz/>
> now is a 404.  It seems like old versions are automatically removed,
> so the fossies URL would be unreliable (from a reproducibility POV).

https://fossies.org/linux/privat/udpcast-20211207.tar.gz
seems to be available, so we have 2 uris.

>
> The only remaining URL is the www.udpcast.linux.lu URL.  It would be
> nice to have more fallbacks, so personally I would keep the
> sources.buildroot.net URL, even though it currently 404s, with a
> comment like
>
>   ;; At time of writing, sources.buildroot.net only has old versions
>   ;; of udpcast, but presumably it will be updated eventually.
>
> YMMV.

Ok.

-- 
C makes it easy for you to shoot yourself in the foot.  C++ makes that
harder, but when you do, it blows away your whole leg. - Bjorne Stroustrup

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

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

* bug#53966: [PATCH] gnu: udpcast: Update to 20211207.
  2022-02-13  5:09 [bug#53966] [PATCH] gnu: udpcast: Update to 20211207 Michael Rohleder
  2022-02-13  9:32 ` Maxime Devos
@ 2022-02-14  9:57 ` Nicolas Goaziou
  1 sibling, 0 replies; 4+ messages in thread
From: Nicolas Goaziou @ 2022-02-14  9:57 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 53966-done

Hello,

Michael Rohleder <mike@rohleder.de> writes:

> * gnu/packages/admin.scm (udpcast): Update to 20211207.
> [source]: Remove buildroot.net uri.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2022-02-14  9:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-13  5:09 [bug#53966] [PATCH] gnu: udpcast: Update to 20211207 Michael Rohleder
2022-02-13  9:32 ` Maxime Devos
2022-02-13 16:45   ` Michael Rohleder
2022-02-14  9:57 ` bug#53966: " Nicolas Goaziou

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.