libregexp-grammars-perl 1.044-1 source package in Ubuntu

Changelog

libregexp-grammars-perl (1.044-1) unstable; urgency=medium

  * Imported Upstream version 1.042, 1.043 and 1.044
  * Replace (build-)dependency on liblexical-var-perl with
    libb-hooks-parser-perl
  * Bump Debhelper compat level to 9

 -- Salvatore Bonaccorso <email address hidden>  Wed, 16 Dec 2015 07:28:02 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libregexp-grammars-perl_1.044-1.dsc 2.2 KiB c78a2bd73e7a58ce16cf25bfdc44f375a587fc8806372e51b8b6a6b413bfaa2b
libregexp-grammars-perl_1.044.orig.tar.gz 251.3 KiB 28cd9f0f84afc0caafb7b2af9be8fa6fd134a644cc5ea1cec606d8f459dc72e7
libregexp-grammars-perl_1.044-1.debian.tar.xz 3.4 KiB e76536ec17cec73440314951acc4e4d9f08004449a81595a208c5c4c30ce07cd

Available diffs

No changes file available.

Binary packages built by this source

libregexp-grammars-perl: Perl module to add grammatical parsing features to Perl 5.10 regexes

 Regexp::Grammars adds a small number of new regex constructs that can be used
 within Perl 5.10 patterns to implement complete recursive-descent parsing.
 .
 Perl 5.10 already supports recursive=descent matching, via the new
 (?<name>...) and (?&name) constructs. This technique makes it possible
 to use regexes to recognize complex, hierarchical--and even recursive--
 textual structures. The problem is that Perl 5.10 doesn't provide any
 support for extracting that hierarchical data into nested data
 structures. In other words, using Perl 5.10 you can match complex data,
 but not parse it into an internally useful form.
 .
 An additional problem when using Perl 5.10 regexes to match complex
 data formats is that you have to make sure you remember to insert whitespace-
 matching constructs (such as \s*) at every possible position where the
 data might contain ignorable whitespace. This reduces the readability
 of such patterns, and increases the chance of errors (typically caused
 by overlooking a location where whitespace might appear).
 .
 The Regexp::Grammars module solves both those problems.