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

Changelog

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

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Repository.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).

  [ gregor herrmann ]
  * Declare compliance with Debian Policy 4.5.0.
  * Set Rules-Requires-Root: no.
  * Drop ancient Breaks.
  * Annotate test-only build dependencies with <!nocheck>.
  * Bump debhelper-compat to 13.
  * Remove check for DEB_BUILD_OPTIONS=nocheck from debian/rules.
    debhelper 13 does this for us.

 -- Jelmer Vernooij <email address hidden>  Thu, 16 Jun 2022 23:45:07 +0100

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

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libparse-recdescent-perl_1.967015+dfsg-3.dsc 2.3 KiB 8b9fe37517d69b46946c9b96bf4365b1771ea82557dd41c47a011f111e200c6d
libparse-recdescent-perl_1.967015+dfsg.orig.tar.gz 127.2 KiB 4eecd54542d1103e360fffc229c2845728dc23303d01b18ea62b85347069ad6e
libparse-recdescent-perl_1.967015+dfsg-3.debian.tar.xz 8.3 KiB cbf3801886e944bac7fffe57547460ccc3d4dbd27f09bd539ac75d9edf2e730d

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