happy 1.19.8-1 source package in Ubuntu

Changelog

happy (1.19.8-1) unstable; urgency=medium

  * New upstream release (Closes: #876605)

 -- Ilias Tsitsimpis <email address hidden>  Tue, 24 Oct 2017 00:46:34 +0300

Upload details

Uploaded by:
Debian Haskell Group
Uploaded to:
Sid
Original maintainer:
Debian Haskell Group
Architectures:
any
Section:
haskell
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe devel

Downloads

File Size SHA-256 Checksum
happy_1.19.8-1.dsc 2.1 KiB d5308276746cef39c66ccce1926a52afd81ae369701095644da5bd72c9e0f9e5
happy_1.19.8.orig.tar.gz 175.6 KiB 4df739965d559e48a9b0044fa6140241c07e8f3c794c6c0a6323024fd7f0d3a0
happy_1.19.8-1.debian.tar.xz 8.5 KiB cacc9fec341b920364becabe9a4891d465c7a292cab870604685b41efbcac74a

Available diffs

No changes file available.

Binary packages built by this source

happy: Parser generator for Haskell

 Happy is a parser generator system for Haskell, similar to the tool `yacc' for
 C. Like `yacc', it takes a file containing an annotated BNF specification of a
 grammar and produces a Haskell module containing a parser for the grammar.
 .
 Happy is flexible: you can have several Happy parsers in the same program, and
 several entry points to a single grammar. Happy can work in conjunction with a
 lexical analyser supplied by the user (either hand-written or generated by
 another program), or it can parse a stream of characters directly (but this
 isn't practical in most cases).