From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55214) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ewprx-0006WO-OF for guix-patches@gnu.org; Fri, 16 Mar 2018 09:58:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ewpru-0000qj-Lu for guix-patches@gnu.org; Fri, 16 Mar 2018 09:58:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57283) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ewpru-0000qX-IW for guix-patches@gnu.org; Fri, 16 Mar 2018 09:58:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ewpru-0004dO-8S for guix-patches@gnu.org; Fri, 16 Mar 2018 09:58:02 -0400 Subject: [bug#30835] [PATCH 1/3] guix import elpa: use https in download URLs Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55073) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ewprV-0006Ic-LD for guix-patches@gnu.org; Fri, 16 Mar 2018 09:57:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ewprS-0000JO-I0 for guix-patches@gnu.org; Fri, 16 Mar 2018 09:57:37 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:40257) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ewprS-0000IQ-CO for guix-patches@gnu.org; Fri, 16 Mar 2018 09:57:34 -0400 From: Konrad Hinsen Date: Fri, 16 Mar 2018 14:53:09 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain 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: 30835@debbugs.gnu.org --- guix/import/elpa.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm index 45a419217..7f76a13ad 100644 --- a/guix/import/elpa.scm +++ b/guix/import/elpa.scm @@ -69,9 +69,9 @@ NAMES (strings)." (define* (elpa-url #:optional (repo 'gnu)) "Retrun the URL of REPO." (let ((elpa-archives - '((gnu . "http://elpa.gnu.org/packages") - (melpa-stable . "http://stable.melpa.org/packages") - (melpa . "http://melpa.org/packages")))) + '((gnu . "https://elpa.gnu.org/packages") + (melpa-stable . "https://stable.melpa.org/packages") + (melpa . "https://melpa.org/packages")))) (assq-ref elpa-archives repo))) (define* (elpa-fetch-archive #:optional (repo 'gnu)) -- 2.16.2