From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH] import: utils: Remove dependency on (json) module. Date: Sat, 15 Oct 2016 19:53:30 +0300 Message-ID: <8760otwo39.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45501) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bvSDJ-00063V-D1 for guix-devel@gnu.org; Sat, 15 Oct 2016 12:53:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bvSDF-0003nu-68 for guix-devel@gnu.org; Sat, 15 Oct 2016 12:53:36 -0400 Received: from mail-lf0-x22e.google.com ([2a00:1450:4010:c07::22e]:33827) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1bvSDE-0003nN-UF for guix-devel@gnu.org; Sat, 15 Oct 2016 12:53:33 -0400 Received: by mail-lf0-x22e.google.com with SMTP id b81so216377684lfe.1 for ; Sat, 15 Oct 2016 09:53:32 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Commit fbe9c1012820 introduced unneeded dependency on (json) module, i.e. 'guile-json' is a hard dependency of Guix now. Was it an accident, or do I miss anything? --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-import-utils-Remove-dependency-on-json-module.patch >From cb529053b90cd4067fb6cb9a256b1ce3bd2a24f7 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Sat, 15 Oct 2016 19:41:35 +0300 Subject: [PATCH] import: utils: Remove dependency on (json) module. This fixes a regression introduced by commit fbe9c1012820ab72f022a6ec958c35b431ae7a74. * guix/import/utils.scm: Remove unused (json) module. --- guix/import/utils.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/guix/import/utils.scm b/guix/import/utils.scm index e4059ca..057c2d9 100644 --- a/guix/import/utils.scm +++ b/guix/import/utils.scm @@ -26,7 +26,6 @@ #:use-module (guix utils) #:use-module (ice-9 match) #:use-module (ice-9 regex) - #:use-module (json) #:use-module (srfi srfi-1) #:export (factorize-uri -- 2.9.2 --=-=-=--