libregexp-optimizer-perl 0.15-2 source package in Ubuntu

Changelog

libregexp-optimizer-perl (0.15-2) unstable; urgency=low

  [ Carlo Segre ]
  * Injected into Debian Perl Group repository and added proper 
    Maintainer:, Uploaders:, Vcx-Svn: and Vcs-Browser: header lines.

  [ gregor herrmann ]
  * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
    (source stanza).

  [ Nathan Handler ]
  * debian/watch: Update to ignore development releases.

  [ gregor herrmann ]
  * Convert to source format 3.0 (quilt).
  * Add /me to Uploaders.
  * Set Standards-Version to 3.9.1; remove version from perl build dependecy.
  * debhelper 7.
  * debian/copyright: DEP5 formatting.
  * Fix hashbang in examples.
  * Add DEP3 header to patch.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Fri,  15 Oct 2010 09:41:48 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Natty
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Natty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libregexp-optimizer-perl_0.15.orig.tar.gz 17.3 KiB 935f7d8ba889ecdc5e9fa3ddd5149183cf3202c4d1ecae9471ad1cb8995624f2
libregexp-optimizer-perl_0.15-2.debian.tar.gz 2.7 KiB c4343a3fe3b849955a855f7d1273f5a89c6425f34c4354682acac7ae884c8698
libregexp-optimizer-perl_0.15-2.dsc 2.0 KiB 797adbb335f9f65c9657b7c799f438404cea6c9674e6542d0e61ec0790029ca1

Available diffs

View changes file

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.