happy 1.19.0-1 source package in Ubuntu

Changelog

happy (1.19.0-1) unstable; urgency=low


  * Fix Vcs-Darcs url: http://darcs.debian.org/ instead of
    http://darcs.debian.org/darcs/
  * New upstream release

 -- Joachim Breitner <email address hidden>  Wed, 18 Sep 2013 19:11:12 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe devel

Downloads

File Size SHA-256 Checksum
happy_1.19.0-1.dsc 1.4 KiB ecfd6cd0a87c6627ede7128b175e89ce9b5e8456df78e1fe5000f07869a28784
happy_1.19.0.orig.tar.gz 155.7 KiB df1cc00dee75681e6bf8c94c44e84fe9505a660cb2533d9a26f1879c192113de
happy_1.19.0-1.debian.tar.gz 8.6 KiB 3080a8510b41c5a27304b092220491e359d4a752fee182808e41be1df7945a75

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).