guix-commits
[Top][All Lists]
Advanced

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

01/01: import: cpan: Use tls to query api.metacpan.org.


From: Eric Bavier
Subject: 01/01: import: cpan: Use tls to query api.metacpan.org.
Date: Tue, 30 Aug 2016 18:21:58 +0000 (UTC)

bavier pushed a commit to branch master
in repository guix.

commit 7a62263ee50c9e2894ea0e746b89f04e3b6484c3
Author: ng0 <address@hidden>
Date:   Tue Aug 30 12:57:47 2016 +0000

    import: cpan: Use tls to query api.metacpan.org.
    
    * guix/import/cpan.scm (module->dist-name, cpan-fetch-module): Use tls
    for api.metacpan.org.
    
    Signed-off-by: Eric Bavier <address@hidden>
---
 guix/import/cpan.scm |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/import/cpan.scm b/guix/import/cpan.scm
index 213a155..5b7c475 100644
--- a/guix/import/cpan.scm
+++ b/guix/import/cpan.scm
@@ -83,7 +83,7 @@
   "Return the base distribution module for a given module.  E.g. the 'ok'
 module is distributed with 'Test::Simple', so (module->dist-name \"ok\") would
 return \"Test-Simple\""
-  (assoc-ref (json-fetch (string-append "http://api.metacpan.org/module/";
+  (assoc-ref (json-fetch (string-append "https://api.metacpan.org/module/";
                                         module))
              "distribution"))
 
@@ -91,7 +91,7 @@ return \"Test-Simple\""
   "Return an alist representation of the CPAN metadata for the perl module 
MODULE,
 or #f on failure.  MODULE should be e.g. \"Test::Script\""
   ;; This API always returns the latest release of the module.
-  (json-fetch (string-append "http://api.metacpan.org/release/";
+  (json-fetch (string-append "https://api.metacpan.org/release/";
                              ;; XXX: The 'release' api requires the "release"
                              ;; name of the package.  This substitution seems
                              ;; reasonably consistent across packages.



reply via email to

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