File: control

package info (click to toggle)
libparse-recdescent-perl 1.967009%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 748 kB
  • ctags: 778
  • sloc: perl: 6,738; sh: 48; makefile: 13; ansic: 9
file content (33 lines) | stat: -rw-r--r-- 1,618 bytes parent folder | download
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
Source: libparse-recdescent-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl,
 libtest-pod-perl,
 libtest-warn-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonathan Yu <jawnsy@cpan.org>, gregor herrmann <gregoa@debian.org>,
 Florian Schlichting <fschlich@zedat.fu-berlin.de>
Standards-Version: 3.9.3
Homepage: http://search.cpan.org/dist/Parse-RecDescent/
Vcs-Git: git://git.debian.org/pkg-perl/packages/libparse-recdescent-perl.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libparse-recdescent-perl.git

Package: libparse-recdescent-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}
Breaks: libmail-imapclient-perl (<< 3.30-2), libcss-perl (<< 1.08-1+nmu2)
Description: Perl module to create and use recursive-descent parsers
 Parse::RecDescent incrementally generates top-down recursive-descent text
 parsers from simple yacc-like grammar specifications. It provides:
 .
   * Regular expressions or literal strings as terminals (tokens)
   * Multiple (non-contiguous) productions for any rule
   * Repeated, optional and alternate sub-rules within productions
   * Late-bound (run-time dispatched) sub-rules
   * Full access to Perl within actions specified as part of the grammar
   * Simple automated error reporting during parser generation and parsing
   * The ability to commit to, uncommit to, or reject particular productions
     during a parse
   * Incremental extension of the parsing grammar (even during a parse)
   * The ability to retrieve the generated parsing code