From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH 02/13] gnu: python: Add sqlite input. Date: Fri, 21 Nov 2014 10:28:24 +0100 Message-ID: <8761e89a2v.fsf@gnu.org> References: <1416548468-28421-1-git-send-email-bavier@member.fsf.org> <1416548468-28421-3-git-send-email-bavier@member.fsf.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45069) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrkW1-0008Cf-5L for guix-devel@gnu.org; Fri, 21 Nov 2014 04:28:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XrkVu-0004Hi-9i for guix-devel@gnu.org; Fri, 21 Nov 2014 04:28:33 -0500 Received: from hera.aquilenet.fr ([2a01:474::1]:35156) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrkVu-0004Gj-2z for guix-devel@gnu.org; Fri, 21 Nov 2014 04:28:26 -0500 In-Reply-To: <1416548468-28421-3-git-send-email-bavier@member.fsf.org> (Eric Bavier's message of "Thu, 20 Nov 2014 23:40:57 -0600") 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Eric Bavier Cc: guix-devel@gnu.org, Eric Bavier Eric Bavier skribis: > * gnu/packages/patches/python-sqlite-3.8.4-test-fix.patch, > gnu/packages/patches/python2-sqlite-3.8.4-test-fix.patch: New patches. > * gnu-system.am (dist_patch_DATA): Add them. > * gnu/packages/python.scm (python-2)[source]: Add patch. > [inputs]: Add sqlite. > (python)[source]: Add patch. [...] > @@ -167,6 +171,7 @@ > `(("bzip2" ,bzip2) > ("gdbm" ,gdbm) > ("libffi" ,libffi) ; for ctypes > + ("sqlite" ,(@ (gnu packages databases) sqlite)) ; prevent circula= r refs Unfortunately, that doesn=E2=80=99t prevent anything: it=E2=80=99s roughly = equivalent to having #:use-module (gnu packages databases). However, maybe the circular dependency is not a problem here. Does =E2=80=9Cmake clean-go && make=E2=80=9D succeed? Thanks, Ludo=E2=80=99.