happy 1.19.11-1build1 source package in Ubuntu

Changelog

happy (1.19.11-1build1) eoan; urgency=medium

  * Rebuild against new GHC abi.

 -- Gianfranco Costamagna <email address hidden>  Sat, 07 Sep 2019 17:39:35 +0200

Upload details

Uploaded by:
Gianfranco Costamagna
Uploaded to:
Eoan
Original maintainer:
Debian Haskell Group
Architectures:
any
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
happy_1.19.11.orig.tar.gz 177.3 KiB 9094d19ed0db980a34f1ffd58e64c7df9b4ecb3beed22fd9b9739044a8d45f77
happy_1.19.11-1build1.debian.tar.xz 8.9 KiB 40a7e5cefdc9984333fbae81a39e6252a0835a5776acc95f62095126fd0c3187
happy_1.19.11-1build1.dsc 2.1 KiB 94b3448473bb56fb4af90e8656bb381a7f1d1801807275f5e785c53e288cca70

View changes file

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