File: control

package info (click to toggle)
libparser-mgc-perl 0.16-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 368 kB
  • sloc: perl: 1,676; makefile: 6; sh: 4
file content (34 lines) | stat: -rw-r--r-- 1,313 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: libparser-mgc-perl
Section: perl
Priority: optional
Build-Depends: cdbs,
 perl,
 libmodule-build-perl,
 debhelper,
 dh-buildinfo,
 libfile-slurp-tiny-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>
Standards-Version: 4.1.4
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libparser-mgc-perl.git
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libparser-mgc-perl
Homepage: https://metacpan.org/release/Parser-MGC
Testsuite: autopkgtest-pkg-perl

Package: libparser-mgc-perl
Architecture: all
Depends: ${cdbs:Depends},
 ${misc:Depends},
 ${perl:Depends}
Recommends: ${cdbs:Recommends}
Suggests: ${cdbs:Suggests}
Description: builder for simple recursive-descent parsers
 Parser::MGC provides a low-level framework for building
 recursive-descent parsers that consume a given input string from left
 to right, returning a parse structure. It takes its name from the
 `m//gc' regexps used to implement the token parsing behaviour.
 .
 It provides a number of token-parsing methods, which each extract a
 grammatical token from the string. It also provides wrapping methods
 that can be used to build up a possibly-recursive grammar structure, by
 applying a structure around other parts of parsing code.