From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41236) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hnjVU-0004NX-Ep for guix-patches@gnu.org; Wed, 17 Jul 2019 08:58:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hnjVS-0007BK-88 for guix-patches@gnu.org; Wed, 17 Jul 2019 08:58:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hnjVR-0007B9-U0 for guix-patches@gnu.org; Wed, 17 Jul 2019 08:58:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hnjVR-0002P7-Rl for guix-patches@gnu.org; Wed, 17 Jul 2019 08:58:01 -0400 Subject: [bug#36623] [PATCH] gnu: gdal: add python support Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190712213247.23250-1-arne_bab@web.de> <5E0BF317-99AC-43D9-9E30-1528A1A61DAA@lepiller.eu> <87pnmdr60f.fsf@web.de> Date: Wed, 17 Jul 2019 14:57:04 +0200 In-Reply-To: <87pnmdr60f.fsf@web.de> (Arne Babenhauserheide's message of "Sat, 13 Jul 2019 23:14:56 +0200") Message-ID: <87blxsddjz.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: Arne Babenhauserheide Cc: 36623@debbugs.gnu.org Hello! Complementing Julien=E2=80=99s feedback=E2=80=A6 Arne Babenhauserheide skribis: > From 5f8b1dc1bb5ce7b061bcca10174f9330cf89696c Mon Sep 17 00:00:00 2001 > From: Arne Babenhauserheide > Date: Sat, 11 May 2019 15:16:22 +0200 > Subject: [PATCH] gnu: gdal: add python support > > * gnu/packages/geo.scm (gdal): add python support > --- > gnu/packages/geo.scm | 29 +++++++++++++++++++++++++++-- > 1 file changed, 27 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm > index 4cccd97643..a6942d2a45 100644 > --- a/gnu/packages/geo.scm > +++ b/gnu/packages/geo.scm > @@ -537,6 +537,8 @@ development.") > (build-system gnu-build-system) > (arguments > `(#:tests? #f > + ;; validating runpath does not work yet for Python, so skip this = phase. > + #:validate-runpath? #f What happens when you let the =E2=80=98validate-runpath=E2=80=99 phase run? Thanks, Ludo=E2=80=99.