1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00

- Update to 1.18.9

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-03 21:46:01 +00:00
parent 6e5f13d01b
commit 0d0ba2d687
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298195
3 changed files with 7 additions and 21 deletions

View File

@ -5,16 +5,15 @@
# $FreeBSD$
PORTNAME= happy
PORTVERSION= 1.18.6
PORTREVISION= 1
PORTVERSION= 1.18.9
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= An LALR(1) parser generator for the functional language Haskell
COMMENT= Happy is a parser generator for Haskell
LICENSE= BSD
USE_CABAL= mtl
USE_CABAL= mtl>=1.0
XMLDOCS= doc/happy:html
USE_AUTOTOOLS= autoconf:env

View File

@ -1,2 +1,2 @@
SHA256 (cabal/happy-1.18.6.tar.gz) = 840c8fb6b9795faa4fae3c3bf3fb28ad403bc6891002dc703007870823b7cd60
SIZE (cabal/happy-1.18.6.tar.gz) = 158096
SHA256 (cabal/happy-1.18.9.tar.gz) = 7d34c512b8aecbc135f6b4c43bc18044ff50ae6d5afdd0d2570228dccecb618a
SIZE (cabal/happy-1.18.9.tar.gz) = 158476

View File

@ -1,16 +1,3 @@
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 a parser generator system for Haskell.
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).
As of version 1.5, Happy is capable of parsing full Haskell. We have a
Haskell parser that uses Happy, which will shortly be part of the
library collection distributed with GHC.
WWW: http://www.haskell.org/happy/
WWW: http://www.haskell.org/happy/