libparse-recdescent-perl 1.967015+dfsg-1 source package in Ubuntu

Changelog

libparse-recdescent-perl (1.967015+dfsg-1) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * Switch repackaging framework to Files-Excluded method.
  * Remove Jonathan Yu from Uploaders. Thanks for your work!

  [ Florian Schlichting ]
  * New upstream version 1.967015+dfsg
  * Add upstream metadata
  * Declare compliance with Debian Policy 4.1.0

 -- Florian Schlichting <email address hidden>  Sat, 16 Sep 2017 23:03:04 +0200

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

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libparse-recdescent-perl_1.967015+dfsg-1.dsc 2.3 KiB c3df81a3d1cce5b12cab0e6cf729c27ae4aa8ce73b31ad5abbdc688823b90452
libparse-recdescent-perl_1.967015+dfsg.orig.tar.gz 127.2 KiB 4eecd54542d1103e360fffc229c2845728dc23303d01b18ea62b85347069ad6e
libparse-recdescent-perl_1.967015+dfsg-1.debian.tar.xz 8.1 KiB 934106204cff1c90ac81d5fd16e6a1ad96697e5db81863b77fc99ff16a3f33b3

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