guix-patches
[Top][All Lists]
Advanced

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

bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL.


From: Ethan R. Jones
Subject: bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL.
Date: Wed, 10 May 2017 22:41:37 -0400

---
 gnu/packages/password-utils.scm | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 9daacd871..1f563b31d 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -197,8 +197,14 @@ passwords that could be guessed by crack by filtering them 
out, at source.")
     (source (origin
               (method url-fetch)
               (uri (list
-                    (string-append "https://fedorahosted.org/releases/l/i/";
-                                   name "/" name "-" version ".tar.bz2")
+                    (string-append "https://github.com/";
+                                   name
+                                   "/"
+                                   name
+                                   "/releases/download/"
+                                   name  "-" version
+                                   "/"
+                                   name "-" version ".tar.bz2")
                     (string-append "https://launchpad.net/libpwquality/trunk/";
                                    version "/+download/"
                                    name "-" version ".tar.bz2")))
@@ -212,7 +218,8 @@ passwords that could be guessed by crack by filtering them 
out, at source.")
     (inputs
      `(("cracklib" ,cracklib)))
     (synopsis "Password quality checker")
-    (home-page "https://fedorahosted.org/libpwquality/";)
+    ;; Fedorahosted was retired, there's no known home page currently.
+    (home-page "https://github.com/libpwquality/libpwquality";)
     (description
      "Libpwquality is a library for password quality checking and generation of
 random passwords that pass the checks.")
-- 
2.12.2






reply via email to

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