bisonc++ 6.01.00-1 source package in Ubuntu

Changelog

bisonc++ (6.01.00-1) unstable; urgency=medium

  [ Frank B. Brokken ]
  * Upstream removed the std:: prefixes in front of thread_local from
    generated code.
  * Upstream removed a superfluous Yodl macro (Closes: bug #887731).
  * Update 'compat' and 'control' for DH 11
  * Bump Standards-Version to 4.1.3

  [ tony mancill ]
  * Update debian/rules to use the DH sequencer.

 -- tony mancill <email address hidden>  Sat, 20 Jan 2018 11:17:05 -0800

Upload details

Uploaded by:
Frank B. Brokken
Uploaded to:
Sid
Original maintainer:
Frank B. Brokken
Architectures:
any all
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe devel

Downloads

File Size SHA-256 Checksum
bisonc++_6.01.00-1.dsc 2.1 KiB 8b6c3e38d363777aea4f75e375a79e9a63958b9570522b47e1d7d38a8ad64981
bisonc++_6.01.00.orig.tar.gz 488.9 KiB 4adfe113e8e02e5bf4999b1841e524e091f6deb8b12aa4852e93974a65650312
bisonc++_6.01.00-1.debian.tar.xz 12.0 KiB f987a43ec3e5792c02a9325a88d628c387784ced86e5cbb5570e60db1e2314a6

Available diffs

No changes file available.

Binary packages built by this source

bisonc++: No summary available for bisonc++ in ubuntu cosmic.

No description available for bisonc++ in ubuntu cosmic.

bisonc++-dbgsym: debug symbols for bisonc++
bisonc++-doc: Bison-style parser generator for C++ documentation

 Bisonc++ was designed after `bison++', created by Alain Coetmeur. Bisonc++
 adds to bison++ a cleaner class-design, using a base-class to communicate
 lexical tokens to a lexical scanner.
 .
 Since bisonc++ generates the parser class as well as the parsing
 function. The class can easily be provided with additional members without
 needing polymorphic functions. Consequently, classes generated by bisonc++
 have no virtual members and actually have but one public member: parse(),
 replacing the old-style bison and bison++ yyparse() function.
 .
 Bisonc++ offers many options, among which an option to define classes
 generated by bisonc++ in a separate namespace. This allows developers to
 define additional symbols, even outside of the class generated by bisonc++,
 without encountering name-collision problems. With bisonc++, artificial means
 to prevent name-collisions, like bison and bison++'s yy-convention are not
 required anymore when using bisonc++. Bisonc++ merely generates C++ code. If
 C code is required, bison should be used. Bisonc++'s grammar requirements are
 highly compatible with bison's requirements, so converting a bison grammar
 into a bisonc++ grammar should be fairly simple.
 .
 In addition to the bisonc++ parser generator itself and several skeleton
 files, the package contains an extensive man-page, a full manual rewritten
 after the original bison manual, and several examples.
 .
 Some history: Bisonc++ versions 0.98 is a complete rewrite of an LALR(1)
 parser generator, as described in Aho, Sethi and Ullman's (1986) book
 `Compilers' (a.k.a. the `Dragon Book'). Version 0.98 was completed in May
 2005. Another major rewrite was completed one year later, May 2006, resulting
 in version 1.00.
 .
 This package provides the supplemental documentation for Bisonc++.