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

Changelog

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

  [ gregor herrmann ]
  * Strip trailing slash from metacpan URLs.

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * Remove Carlo Segre from Uploaders. Thanks for your work!

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Bump debhelper from deprecated 8 to 12.
  * Set debhelper-compat version in Build-Depends.

 -- Jelmer Vernooij <email address hidden>  Fri, 17 Jun 2022 09:25:10 +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

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libregexp-optimizer-perl_0.23-2.dsc 2.2 KiB ecdb24af9291eea21bf1c1d9632fc8946b3a760db99f62477eaa806d796f41e3
libregexp-optimizer-perl_0.23.orig.tar.gz 7.0 KiB d119b7d4e66aa3c5323ea582c3ee30e5aac076cc49aee3440d99f71b01993606
libregexp-optimizer-perl_0.23-2.debian.tar.xz 5.5 KiB 62f287d018f0021614d2b77af98bdeed3331954d12a3b564d1808ccfa73bfa6c

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.