diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-11 15:53:20 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-11 17:22:31 +0200 |
commit | 9aba9b127840a116c806a2cbac901cf8077abcd0 (patch) | |
tree | 27ab0f7bf6c212c0a8ba911532f904945351eb27 /guix/import | |
parent | ab45b38feada5bf4721c8f1018b9cc9d7250069e (diff) |
Migrate search.cpan.org home pages to metacpan.org.
The venerable search.cpan.org has retired[0].
[0]: https://log.perl.org/2018/05/goodbye-search-dot-cpan-dot-org.html
* guix/import/cpan.scm (cpan-home): Generate metacpan.org home page URIs.
Update all previously generated ones in (gnu packages) to their
canonical new homes.
Diffstat (limited to 'guix/import')
-rw-r--r-- | guix/import/cpan.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/import/cpan.scm b/guix/import/cpan.scm index 08bed8767c..d0ff64ed05 100644 --- a/guix/import/cpan.scm +++ b/guix/import/cpan.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co> -;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -117,7 +117,7 @@ or #f on failure. MODULE should be e.g. \"Test::Script\"" (json-fetch-alist (string-append "https://fastapi.metacpan.org/v1/release/" name))) (define (cpan-home name) - (string-append "http://search.cpan.org/dist/" name "/")) + (string-append "https://metacpan.org/release/" name)) (define (cpan-source-url meta) "Return the download URL for a module's source tarball." |