libregexp-optimizer-perl 0.23-3 source package in Ubuntu

Changelog

libregexp-optimizer-perl (0.23-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libregexp-optimizer-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 08 Dec 2022 00:19:57 +0000

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
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libregexp-optimizer-perl_0.23-3.dsc 2.2 KiB c6cfa05bc4fc3f9fee40a77310bf97b40c54dbc77d3744a990c3dda7c9f827b0
libregexp-optimizer-perl_0.23.orig.tar.gz 7.0 KiB d119b7d4e66aa3c5323ea582c3ee30e5aac076cc49aee3440d99f71b01993606
libregexp-optimizer-perl_0.23-3.debian.tar.xz 5.6 KiB 63c8ab7b27fec628702c1f033cd115b8bb2127e1bcbfceaeeb53365eb017cf49

Available diffs

No changes file available.

Binary packages built by this source

libregexp-optimizer-perl: modules for optimizing regular expressions

 This contains two modules, Regexp::List and Regexp::Optimizer.
 .
 Regexp::List offers a method which turns a list of words into an
 optimized regular expression which matches all words therein.
 The optimized regular expression is much more efficient than a
 simple-minded '|'-concatenation.
 .
 Regexp:Optimizer factors out common suffices/prefices in regular
 expressions (trie optimization). Currently, the user has to optimize
 "foo|far" and "foo|goo" into "f(?:oo|ar)" and "[fg]oo" by hand;
 this module does it automatically.