From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:40449) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hX3g4-0007SK-Ab for guix-patches@gnu.org; Sat, 01 Jun 2019 09:04:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hX3g2-0007ND-DC for guix-patches@gnu.org; Sat, 01 Jun 2019 09:04:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52166) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hX3g2-0007Mz-7o for guix-patches@gnu.org; Sat, 01 Jun 2019 09:04:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hX3g2-0005bC-1h for guix-patches@gnu.org; Sat, 01 Jun 2019 09:04:02 -0400 Subject: bug#35946: [PATCH] gnu: Add txr Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190528090058.6044-1-glv@posteo.net> Date: Sat, 01 Jun 2019 15:03:05 +0200 In-Reply-To: <20190528090058.6044-1-glv@posteo.net> (Guillaume LE VAILLANT's message of "Tue, 28 May 2019 11:00:58 +0200") Message-ID: <87blzhh306.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Guillaume LE VAILLANT Cc: 35946-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Guillaume, Guillaume LE VAILLANT skribis: > * gnu/packages/lisp.scm (txr): New variable. > * gnu/packages/patches/txr-shell.patch: New file. Applied with the following minor changes. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/local.mk b/gnu/local.mk index 3a199f82f8..03a8818e78 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1317,6 +1317,7 @@ dist_patch_DATA = \ %D%/packages/patches/totem-meson-easy-codec.patch \ %D%/packages/patches/tuxpaint-stamps-path.patch \ %D%/packages/patches/twinkle-include-qregexpvalidator.patch \ + %D%/packages/patches/txr-shell.patch \ %D%/packages/patches/u-boot-fix-mkimage-header-verification.patch \ %D%/packages/patches/unzip-CVE-2014-8139.patch \ %D%/packages/patches/unzip-CVE-2014-8140.patch \ diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 52b832f948..dfc58d469f 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -5367,5 +5367,5 @@ extraction language referred to as the TXR Pattern Language (sometimes just used for everything from \"one liner\" data transformation tasks at the command line, to data scanning and extracting scripts, to full application development in a wide-range of areas.") - (home-page "https://nongnu.org/txr") - (license bsd-2))) + (home-page "https://nongnu.org/txr/") + (license license:bsd-2))) --=-=-=--