File: control

package info (click to toggle)
libregexp-optimizer-perl 0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 112 kB
  • ctags: 8
  • sloc: perl: 181; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,414 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Source: libregexp-optimizer-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Carlo Segre <segre@debian.org>,
           gregor herrmann <gregoa@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl,
                     libregexp-assemble-perl,
                     libtest-pod-perl,
                     libtest-pod-coverage-perl
Standards-Version: 3.9.4
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libregexp-optimizer-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libregexp-optimizer-perl.git
Homepage: https://metacpan.org/release/Regexp-Optimizer/

Package: libregexp-optimizer-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libregexp-assemble-perl
Description: 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.