happy 1.19.11-1build3 source package in Ubuntu

Changelog

happy (1.19.11-1build3) focal; urgency=medium

  * No-change rebuild with fixed binutils on arm64.

 -- Matthias Klose <email address hidden>  Sat, 08 Feb 2020 11:03:05 +0000

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Focal
Original maintainer:
Debian Haskell Group
Architectures:
any
Section:
devel
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe devel

Downloads

File Size SHA-256 Checksum
happy_1.19.11.orig.tar.gz 177.3 KiB 9094d19ed0db980a34f1ffd58e64c7df9b4ecb3beed22fd9b9739044a8d45f77
happy_1.19.11-1build3.debian.tar.xz 9.0 KiB e7014c3783dc1ff5a5e595b2b38efc899b91851d3077942fea8b242ab23545b0
happy_1.19.11-1build3.dsc 2.1 KiB df1fa4299b4e0b0f0e9743e1d212522901038f8a7981626cfbe6a775c3af75d4

Available diffs

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