From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 17 17:26:44 2022 Received: (at submit) by debbugs.gnu.org; 17 Oct 2022 21:26:44 +0000 Received: from localhost ([127.0.0.1]:50282 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okXdD-00012l-PR for submit@debbugs.gnu.org; Mon, 17 Oct 2022 17:26:44 -0400 Received: from lists.gnu.org ([209.51.188.17]:37730) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okXdC-00012e-5M for submit@debbugs.gnu.org; Mon, 17 Oct 2022 17:26:42 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:59078) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1okXdB-0005Yt-Kr for guix-patches@gnu.org; Mon, 17 Oct 2022 17:26:41 -0400 Received: from box.euandre.org ([46.101.160.115]:45567) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1okXd8-0004oc-Vz for guix-patches@gnu.org; Mon, 17 Oct 2022 17:26:41 -0400 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 74042FC4B2; Mon, 17 Oct 2022 18:26:06 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1666041967; bh=dSOoMsNLuMM45TABeC05/q32WrKeVwYsxPmaSfugTQo=; h=From:To:Cc:Subject:Date:From; b=hRukDFgFRSINDmiihI2G2LuQDYYxLljbLkFof9fZ76TUf4O9K85G2qIUaIVmsq7j2 CsD1eSjJ4MVD4Z81tEDURhP1rpigGoVR1fxdC9M1thXHi88EF1pf0xw9HZY0udJJ5X GYTWRpUjL6Nz8PMvlUpybq9aZCXBZGlSoGDA6MNNS5JlHZ6C3qfbakmdTN7MamYhmd s0AaC/vIURmvZUwqOYbKdthLUhtaTz+cpPpY27DISGQd/q1WMvsp1WCyYgc/J0+Yg5 cUSLCwm53Q8/lF/3iI8gdE7qsmp1ymDBiBBnzUGp0Df6OGX5HGOyZrn0t+kDcqHqOs fv2lo4ZdcQFgA== From: EuAndreh To: guix-patches@gnu.org Subject: [PATCH] gnu: Add perl-regexp-grammars. Date: Mon, 17 Oct 2022 18:26:01 -0300 Message-Id: <20221017212601.14227-1-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.euandre.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: EuAndreh X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/perl.scm (perl-regexp-grammars): New variable. --- Formatted with './pre-inst-env guix style'. gnu/packages/perl.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 022ca73429..e111fcd943 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -8843,6 +8843,30 @@ (define-public perl-regexp-common ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD. (license (list (package-license perl) license:x11 license:bsd-3)))) +(define-public perl-regexp-grammars + (package + (name "perl-regexp-grammars") + (version "1.058") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/D/DC/DCONWAY/Regexp-Grammars-" + version ".tar.gz")) + (sha256 + (base32 + "14hwskrmy6ma0k9nr1amrf7wpb1f6jsx7x29kgizlx0n4n7db27a")))) + (build-system perl-build-system) + (native-inputs (list perl-module-build perl-test-pod perl-moose)) + (home-page "https://metacpan.org/release/Regexp-Grammars") + (synopsis "Complete recursive descent parser on Perl's regex engine") + (description + "The @code{Regexp::Grammars} module adds a small number of new +regex constructs that can be used within Perl 5.10 patterns to implement +complete recursive-descent parsing. It allows you to go beyond matching +complex, nested and recursive structures, and allows you to parse and extract +hierarchical data from it.") + (license license:perl-license))) + (define-public perl-regexp-util (package (name "perl-regexp-util") -- 2.38.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 18 06:23:59 2022 Received: (at 58593-done) by debbugs.gnu.org; 18 Oct 2022 10:23:59 +0000 Received: from localhost ([127.0.0.1]:51288 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okjlP-00014N-HG for submit@debbugs.gnu.org; Tue, 18 Oct 2022 06:23:59 -0400 Received: from mira.cbaines.net ([212.71.252.8]:41614) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1okjlN-00014E-CD for 58593-done@debbugs.gnu.org; Tue, 18 Oct 2022 06:23:57 -0400 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:fc93:27fb:8412:c8b7]) by mira.cbaines.net (Postfix) with ESMTPSA id B2FC727BBE9; Tue, 18 Oct 2022 11:23:56 +0100 (BST) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id d1b777cd; Tue, 18 Oct 2022 10:23:55 +0000 (UTC) References: <20221017212601.14227-1-eu@euandre.org> User-agent: mu4e 1.8.9; emacs 28.1 From: Christopher Baines To: EuAndreh Subject: Re: [bug#58593] [PATCH] gnu: Add perl-regexp-grammars. Date: Tue, 18 Oct 2022 11:23:27 +0100 In-reply-to: <20221017212601.14227-1-eu@euandre.org> Message-ID: <87o7u9fn0k.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 58593-done Cc: 58593-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain EuAndreh via Guix-patches via writes: > * gnu/packages/perl.scm (perl-regexp-grammars): New variable. > --- > > Formatted with './pre-inst-env guix style'. > > gnu/packages/perl.scm | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) Thanks, pushed to master as 5595aa9a75f05440ae3c77b9bae282f89b7c47b8. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmNOfrtfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XcL6Q//RhSV1SYe0ZfLULKV+QQt511x+DeOoYTP 8mNgpNkix8TqGktm0tMxG5CfwBEr4ELs2ZYwM7BgaDgqlucZfSTLHhAWxJdz/kxZ NbR2Ib49kbrc7rr1OfLRAK/B3HYLpIapKw4PEHAYNEKH4Huf4P+7ldZ9VLz4Mk/P c6ZPpNbYlbtE+GHkFA5ANRJ0EOWXBHbCE7UeBZJTvYPY+4mUuNN+oHAqIjbt7575 F5bCRsk/hO0VM1KN82h7Nrv1I1T2U4E0aotzi0X1bNK5621bAqbxglHqibWEIxmf dBxY9Vq/Re5wMzIOMI7fn1H2agcJqilcbgYKXJPMUyiTZH/YsYgVlnEGhEJ09axO h+VeX722109gUwJNmi7gOR7FkHxCsnqMWotILsY6vp3H+bezWElDelXvDAgCDTl7 JXimJUbRs3Xy/45PJO8UUcIA0IZ+/QBcoQQ8pU4rjIn81wrr8yRwO6rzQzeEjuqg w0FRBWfZdxEG4iTwOYf3ZaBwrOAgXkJBGWvferOTN96V+DvRoWzrjiffY7BCzPQ0 Z5hIyzkW8mq1jiCVGrIBLzRwKhm7MFiR+/L4siRLuqxj99QmvxE/4AQxL8L4wiCE HUwhwOWN6l8WxRF9VNc19Sft92hbtvpgMibqbhmQGMQAh4pMf09x34TR0t95a2mx IbOdWHK/2P8= =iRXF -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 19:31:07 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 15 Nov 2022 12:24:10 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator