guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: datefudge: Add a backup source URI.


From: guix-commits
Subject: branch master updated: gnu: datefudge: Add a backup source URI.
Date: Fri, 17 Dec 2021 12:43:01 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d080368  gnu: datefudge: Add a backup source URI.
d080368 is described below

commit d080368cb5159613a1ff6611e55e09b62977383e
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Fri Dec 17 12:16:09 2021 -0500

    gnu: datefudge: Add a backup source URI.
    
    This tarball disappeared upstream.
    
    * gnu/packages/time.scm (datefudge)[source]: Add backup URI.
---
 gnu/packages/time.scm | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm
index 728f5eb..97de548 100644
--- a/gnu/packages/time.scm
+++ b/gnu/packages/time.scm
@@ -465,6 +465,8 @@ datetime type.")
 (define-public datefudge
   (package
     (name "datefudge")
+    ;; XXX When updating this package, make sure to do something about the
+    ;; archive.org backup URI.
     (version "1.23")
     (source (origin
               ;; Source code is available from
@@ -472,9 +474,17 @@ datetime type.")
               ;; for bootstrapping reasons, we do not rely on 'git-fetch' here
               ;; (since Git -> GnuTLS -> datefudge).
               (method url-fetch)
-              (uri (string-append
-                    "mirror://debian/pool/main/d/datefudge/datefudge_"
-                    version ".tar.xz"))
+              (uri (list
+                     ;; For some reason this tarball was removed from Debian's
+                     ;; servers. Remove this archive.org URL when updating
+                     ;; datefudge, or add the new tarball to archive.org and
+                     ;; update the URL.
+                     (string-append
+                       "https://archive.org/download/datefudge_"; version
+                       ".tar_202112/" "datefudge_" version ".tar.xz")
+                     (string-append
+                      "mirror://debian/pool/main/d/datefudge/datefudge_"
+                      version ".tar.xz")))
               (sha256
                (base32
                 "0ifnlb0mc8qc2kb5042pbz0ns6rwcb7201di8wyrsphl0yhnhxiv"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]