libregexp-optimizer-perl 0.15-3 source package in Ubuntu
Changelog
libregexp-optimizer-perl (0.15-3) unstable; urgency=medium [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ gregor herrmann ] * New patch perl5.14.patch: handles changed behaviour in regexp stringification. (Closes: #636517) * Don't install README* anymore. * debian/copyright: update license stanzas and packaging copyright. * Switch to debhelper compatibility level 8. * Set Standards-Version to 3.9.2 (no changes). * Set urgency to medium (RC bug fix, perl 5.14 transition). -- gregor herrmann <email address hidden> Wed, 16 Nov 2011 18:34:31 +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 | Published | Component | Section | |
---|---|---|---|---|
Precise | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libregexp-optimizer-perl_0.15-3.dsc | 2.1 KiB | 190da59669c7996c75824bc10388025cd138dd3bc234ac7c1c8ce2b80dbb09fc |
libregexp-optimizer-perl_0.15.orig.tar.gz | 17.3 KiB | 935f7d8ba889ecdc5e9fa3ddd5149183cf3202c4d1ecae9471ad1cb8995624f2 |
libregexp-optimizer-perl_0.15-3.debian.tar.gz | 3.4 KiB | 1a0013bc3ad27cc656682aaea19842542ae4005992e46f88b372e31d4eb6014f |
Available diffs
- diff from 0.15-2 (in Ubuntu) to 0.15-3 (2.1 KiB)
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.