From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:59469) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3SdX-00027I-HU for guix-patches@gnu.org; Mon, 11 Mar 2019 17:39:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h3SdV-0006Kf-Ga for guix-patches@gnu.org; Mon, 11 Mar 2019 17:39:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54248) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h3SdS-0006K1-AD for guix-patches@gnu.org; Mon, 11 Mar 2019 17:39:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h3SdS-0005rR-3v for guix-patches@gnu.org; Mon, 11 Mar 2019 17:39:02 -0400 Subject: [bug#34729] [PATCH v2 core-updates] gnu: libgit2: Avoid Python. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190304110442.5876-1-dannym@scratchpost.org> <20190304114120.6987-1-dannym@scratchpost.org> Date: Mon, 11 Mar 2019 22:38:07 +0100 In-Reply-To: <20190304114120.6987-1-dannym@scratchpost.org> (Danny Milosavljevic's message of "Mon, 4 Mar 2019 12:41:20 +0100") Message-ID: <875zspt7ls.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Danny Milosavljevic Cc: 34729@debbugs.gnu.org Hi Danny, AFAICS changes to libgit2 can go to master. Danny Milosavljevic skribis: > * gnu/packages/patches/libgit2-avoid-python.patch: New file. > * gnu/local.mk (dist_patch_DATA): Add it. > * gnu/packages/version-control.scm (libgit2)[source]: Use it. > [inputs]: Remove python. > [native-inputs]: Add guile-2.2. So the goal is to remove Python from libgit2=E2=80=99s *build-time* dependencies, right? (Python is not a run-time dependency for libgit2 according to =E2=80=98guix size libgit2=E2=80=99.) Can you explain a bit m= ore? :-) > +--- orig/libgit2-0.27.7/tests/generate.scm 1970-01-01 01:00:00.000000000= +0100 > ++++ libgit2-0.27.7/tests/generate.scm 2019-03-04 12:18:00.688040975 +0100 > +@@ -0,0 +1,277 @@ > ++;; -*- geiser-scheme-implementation: guile -*- > ++ > ++;;; Implementation: Danny Milosavljevic > ++;;; Based on: Implementation in Python by Vicent Marti. > ++;;; License: ISC, like the original generate.py in clar. This is really cool, but at the same time I feel like we=E2=80=99d rather h= ave a compelling reason to start maintaining a parallel implementation of their test suite machinery. WDYT? Thanks, Ludo=E2=80=99.