From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50533) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8e4F-0000z3-Ej for guix-patches@gnu.org; Wed, 10 May 2017 22:43:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8e4E-0005T7-Br for guix-patches@gnu.org; Wed, 10 May 2017 22:43:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34711) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8e4E-0005Su-8b for guix-patches@gnu.org; Wed, 10 May 2017 22:43:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d8e4D-0005Hw-Sr for guix-patches@gnu.org; Wed, 10 May 2017 22:43:01 -0400 Subject: bug#26872: [PATCH 1/4] gnu: libpwquality: fix source URL. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50399) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8e3w-0000qR-H9 for guix-patches@gnu.org; Wed, 10 May 2017 22:42:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8e3s-0005Hq-It for guix-patches@gnu.org; Wed, 10 May 2017 22:42:44 -0400 Received: from mail-qk0-x242.google.com ([2607:f8b0:400d:c09::242]:35970) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8e3s-0005Hb-DO for guix-patches@gnu.org; Wed, 10 May 2017 22:42:40 -0400 Received: by mail-qk0-x242.google.com with SMTP id y128so2024725qka.3 for ; Wed, 10 May 2017 19:42:40 -0700 (PDT) From: "Ethan R. Jones" Date: Wed, 10 May 2017 22:41:37 -0400 Message-Id: <20170511024140.1852-1-doubleplusgood23@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26872@debbugs.gnu.org Cc: "Ethan R. Jones" --- 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