all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Bruno Victal <mirai@makinata.eu>
To: 64486@debbugs.gnu.org
Cc: Bruno Victal <mirai@makinata.eu>
Subject: [bug#64486] [PATCH 01/22] gnu: Add perl-xs-parse-sublike.
Date: Thu,  6 Jul 2023 07:42:32 +0100	[thread overview]
Message-ID: <bcce075953eea0b39eb5f2d316d974b1ae13aa21.1688625768.git.mirai@makinata.eu> (raw)
In-Reply-To: <cover.1688625218.git.mirai@makinata.eu>

* gnu/packages/perl.scm (perl-xs-parse-sublike): New variable.
---
 gnu/packages/perl.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 15d4f3a9bc..bb9dfa2418 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -37,6 +37,7 @@
 ;;; Copyright © 2023 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
 ;;; Copyright © 2023 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2023 Jake Leporte <jakeleporte@outlook.com>
+;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -11740,6 +11741,27 @@ (define-public perl-xs-parse-keyword
 keyword plugins using the @code{PL_keyword_plugin} hook mechanism.")
     (license (package-license perl))))
 
+(define-public perl-xs-parse-sublike
+  (package
+    (name "perl-xs-parse-sublike")
+    (version "0.18")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/P/PE/PEVANS/XS-Parse-Sublike-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0m2iv6sfkkj6ckx7nprniqrj5qg2qyir8ns8l2rwmqnvxw2pqq16"))))
+    (build-system perl-build-system)
+    (native-inputs (list perl-module-build perl-test2-suite))
+    (home-page "https://metacpan.org/release/XS-Parse-Sublike")
+    (synopsis "XS functions to assist in parsing sub-like syntax")
+    (description "This module provides some XS functions to assist in writing
+parsers for @code{sub}-like syntax, primarily for authors of keyword plugins
+using the @code{PL_keyword_plugin} hook mechanism.")
+    (license (package-license perl))))
+
 (define-public perl-yaml
   (package
     (name "perl-yaml")

base-commit: 2426e51688d479042ea115a634c6be2d8b9f3b99
-- 
2.40.1





  reply	other threads:[~2023-07-06  6:45 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-06  6:40 [bug#64486] [PATCH 00/22] Update licensecheck to 3.3.9 Bruno Victal
2023-07-06  6:42 ` Bruno Victal [this message]
2023-07-06  6:42 ` [bug#64486] [PATCH 02/22] gnu: Add perl-object-pad Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 03/22] gnu: Add perl-feature-compat-class Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 04/22] gnu: Add perl-feature-compat-try Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 05/22] gnu: Add perl-log-any-adapter-screen Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 06/22] gnu: Add perl-file-chdir Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 07/22] gnu: Add perl-test2-tools-command Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 08/22] gnu: Add perl-array-intspan Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 09/22] gnu: Add perl-string-license Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 10/22] gnu: perl-xs-parse-keyword: Update to 0.34 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 11/22] gnu: Add perl-extutils-cchecker Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 12/22] gnu: perl-test2-suite: Update to 0.000155 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 13/22] gnu: perl-test2-suite: Use G-Expressions Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 14/22] gnu: Add perl-string-trim-more Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 15/22] gnu: Add perl-regexp-pattern-defhash Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 16/22] gnu: Add perl-hash-defhash Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 17/22] gnu: Add perl-test-regexp-pattern Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 18/22] gnu: perl-regexp-pattern: Update to 0.2.14 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 19/22] gnu: perl-regexp-pattern-license: Update to 3.11.0 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 20/22] gnu: perl-string-copyright: Update to 0.003014 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 21/22] gnu: licensecheck: Update to 3.3.9 Bruno Victal
2023-07-06  6:42 ` [bug#64486] [PATCH 22/22] gnu: licensecheck: Use G-Expressions. Refactor phases Bruno Victal
2023-10-05 13:29 ` [bug#64486] [PATCH 00/22] Update licensecheck to 3.3.9 Bruno Victal
2023-10-24 15:15 ` [bug#64486] [PATCH v2 " Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 01/22] gnu: Add perl-xs-parse-sublike Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 02/22] gnu: Add perl-object-pad Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 03/22] gnu: Add perl-feature-compat-class Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 04/22] gnu: Add perl-feature-compat-try Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 05/22] gnu: Add perl-log-any-adapter-screen Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 06/22] gnu: Add perl-file-chdir Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 07/22] gnu: Add perl-test2-tools-command Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 08/22] gnu: Add perl-array-intspan Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 09/22] gnu: Add perl-string-license Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 10/22] gnu: perl-xs-parse-keyword: Update to 0.34 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 11/22] gnu: Add perl-extutils-cchecker Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 12/22] gnu: perl-test2-suite: Update to 0.000155 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 13/22] gnu: perl-test2-suite: Use G-Expressions Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 14/22] gnu: Add perl-string-trim-more Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 15/22] gnu: Add perl-regexp-pattern-defhash Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 16/22] gnu: Add perl-hash-defhash Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 17/22] gnu: Add perl-test-regexp-pattern Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 18/22] gnu: perl-regexp-pattern: Update to 0.2.14 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 19/22] gnu: perl-regexp-pattern-license: Update to 3.11.0 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 20/22] gnu: perl-string-copyright: Update to 0.003014 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 21/22] gnu: licensecheck: Update to 3.3.9 Bruno Victal
2023-10-24 15:15   ` [bug#64486] [PATCH v2 22/22] gnu: licensecheck: Use G-Expressions. Refactor phases Bruno Victal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bcce075953eea0b39eb5f2d316d974b1ae13aa21.1688625768.git.mirai@makinata.eu \
    --to=mirai@makinata.eu \
    --cc=64486@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.