diff options
author | James Richardson <james@jamestechnotes.com> | 2017-06-03 14:37:54 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-06-07 15:06:34 +0200 |
commit | 4679dd6967c21e21c740cd88e17191b8e2aac5ee (patch) | |
tree | 87d1793761be814be908384f1024da69acc56b25 /tests | |
parent | fe4e0b0ae7ecd87272cc0f5b5e9c0802e7aeb39f (diff) | |
download | guix-4679dd6967c21e21c740cd88e17191b8e2aac5ee.tar guix-4679dd6967c21e21c740cd88e17191b8e2aac5ee.tar.gz |
import: cpan: Update CPAN importer to use MetaCPAN v1 API.
* guix/import/cpan.scm (module->dist-name, cpan-fetch): Use metacpan.org
URLs.
* tests/cpan.scm ("cpan->guix-package"): Adjust accordingly.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cpan.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cpan.scm b/tests/cpan.scm index 8b588517c9..de865b22be 100644 --- a/tests/cpan.scm +++ b/tests/cpan.scm @@ -74,10 +74,10 @@ (mock ((guix http-client) http-fetch (lambda (url . rest) (match url - ("https://api.metacpan.org/release/Foo-Bar" + ("https://fastapi.metacpan.org/v1/release/Foo-Bar" (values (open-input-string test-json) (string-length test-json))) - ("https://api.metacpan.org/module/Test::Script?fields=distribution" + ("https://fastapi.metacpan.org/v1/module/Test::Script?fields=distribution" (let ((result "{ \"distribution\" : \"Test-Script\" }")) (values (open-input-string result) (string-length result)))) |