neotoma 1.7.4+dfsg-4 source package in Ubuntu

Changelog

neotoma (1.7.4+dfsg-4) unstable; urgency=medium

  * Update Standards-Version: 4.6.2 (no changes needed)
  * Update lintian overrides
  * Update years in debian/copyright

 -- Philipp Huebner <email address hidden>  Tue, 26 Dec 2023 15:47:27 +0100

Upload details

Uploaded by:
Debian Erlang Packagers
Uploaded to:
Sid
Original maintainer:
Debian Erlang Packagers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
neotoma_1.7.4+dfsg-4.dsc 2.0 KiB c18b0ca9d00f51e2475f0185593228b5f0effc0db34a53f844eb3c89354ad3cb
neotoma_1.7.4+dfsg.orig.tar.gz 18.7 KiB 72a6b5720a78df0f614ac037de2cfebcf0d11e8b436a1a6986c26804bf241628
neotoma_1.7.4+dfsg-4.debian.tar.xz 2.9 KiB 58b1edde8a44839b6584a59ef158efef1b0929580a3dc36a8ba0529110640b36

Available diffs

No changes file available.

Binary packages built by this source

erlang-neotoma: parser generator for Erlang

 Neotoma is a packrat parser-generator for Erlang for Parsing
 Expression Grammars (PEGs). It consists of a parsing-combinator
 library with memoization routines, a parser for PEGs, and a utility
 to generate parsers from PEGs. It is inspired by treetop, a Ruby
 library with similar aims, and parsec, the parser-combinator library
 for Haskell.
 .
 Features include:
  - Simple, declarative parsers generated from even simpler grammars.
  - Fully integrated, single-pass lexical and syntactic analysis (a
    feature of PEGs).
  - Packrat-style memoization, boasting parse-time bound linearly to
    the input size (at the expense of memory usage).
  - In-place semantic analysis/transformation, supporting single-pass
    end-to-end in some applications.
  - Erlang code-generation for the lexical/syntactic analysis piece,
    with the option of semantic analysis/transformation inline, or in
    a separate module.
  - Line/column number tracking for easy resolution of parsing
    errors.