libpegex-perl 0.70-1 source package in Ubuntu

Changelog

libpegex-perl (0.70-1) unstable; urgency=medium

  * Import upstream version 0.70.

 -- gregor herrmann <email address hidden>  Sun, 25 Nov 2018 17:56:55 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libpegex-perl_0.70-1.dsc 2.2 KiB 2b6db14c80fcf77a452335f475affc05f7a26928ba23707efa8b560d6a0ffdcd
libpegex-perl_0.70.orig.tar.gz 143.8 KiB fd3521321026048f493a88d43ce4b8e054f5d7acfec6a1db32fcaabe4dfda0fd
libpegex-perl_0.70-1.debian.tar.xz 3.2 KiB 689292398c1a424765cec5565865fa8e9c82728d2fdef71213cc1f406215f0ad

Available diffs

No changes file available.

Binary packages built by this source

libpegex-perl: Acmeist PEG Parser Framework

 Pegex is an Acmeist parser framework. It allows you to easily create parsers
 that will work equivalently in lots of programming languages! The inspiration
 for Pegex comes from the parsing engine upon which the postmodern programming
 language Perl 6 is based on. Pegex brings this beauty to the other
 *just*modern languages that have a normal regular expression engine
 available.
 .
 Pegex gets it name by combining Parsing Expression Grammars (PEG), with
 Regular Expessions (Regex). That's actually what Pegex does.
 .
 PEG is the cool new way to elegantly specify recursive descent grammars. The
 Perl 6 language is defined in terms of a self modifying PEG language called
 Perl 6 Rules. Regexes are familiar to programmers of most modern programming
 languages. Pegex defines a simple PEG syntax, where all the terminals are
 regexes. This means that Pegex can be quite fast and powerful.
 .
 Pegex attempts to be the simplest way to define new (or old) Domain Specific
 Languages (DSLs) that need to be used in several programming languages and
 environments. Things like JSON, YAML, Markdown etc. It also great for writing
 parsers/compilers that only need to work in one language.