libparse-recdescent-perl 1.967009+dfsg-2 source package in Ubuntu

Changelog

libparse-recdescent-perl (1.967009+dfsg-2) unstable; urgency=low

  [ Salvatore Bonaccorso ]
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ gregor herrmann ]
  * Update debian/repack.stub.

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend

  [ gregor herrmann ]
  * Add patch to make builds reproducible. Thanks to Reiner Herrmann for
    the bug report and the patch. (Closes: #778575)
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 3.9.6.
  * Mark package as autopkgtest-able.
  * Explicitly build-depend on libmodule-build-perl.

 -- gregor herrmann <email address hidden>  Fri, 01 May 2015 17:03:19 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libparse-recdescent-perl_1.967009+dfsg-2.dsc 2.4 KiB d8cf522d8a6734933f408bcc350c9d7c1d45ca0aabcaf8481b302d823f2b8253
libparse-recdescent-perl_1.967009+dfsg.orig.tar.gz 120.5 KiB 0731fa507d52378e41312547c073b3803536fc6497a52216b603e218700d123c
libparse-recdescent-perl_1.967009+dfsg-2.debian.tar.xz 8.8 KiB 77a67536d730eea4c26cc56605bcd82580dbfffa707498144818590ae124ff7d

No changes file available.

Binary packages built by this source

libparse-recdescent-perl: 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