- Update to 0.5

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-06-03 21:31:15 +00:00
parent 635da13fbd
commit 13a20a957c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298169
6 changed files with 19 additions and 20 deletions

View file

@ -6,8 +6,7 @@
#
PORTNAME= json
PORTVERSION= 0.4.4
PORTREVISION= 3
PORTVERSION= 0.5
CATEGORIES= converters haskell
MAINTAINER= haskell@FreeBSD.org
@ -16,7 +15,8 @@ COMMENT= Support for serialising Haskell to and from JSON
LICENSE= BSD
CABAL_SETUP= Setup.hs
USE_CABAL= mtl syb
USE_CABAL= mtl syb>=0.3.3
CONFIGURE_ARGS+= --flags="split-base generic -parsec -pretty -mapdict"

View file

@ -1,2 +1,2 @@
SHA256 (cabal/json-0.4.4.tar.gz) = 010157c267e156489771a3a9466f9de74393d9bc82053c1463af8a55caaf5880
SIZE (cabal/json-0.4.4.tar.gz) = 22181
SHA256 (cabal/json-0.5.tar.gz) = d419bf7d1dd07dcccdc9b40b98a077cdfb5248d1685f929ec1e59f4b01de4b8a
SIZE (cabal/json-0.5.tar.gz) = 22724

View file

@ -1,10 +1,8 @@
JSON (JavaScript Object Notation) is a lightweight data-interchange
format. It is easy for humans to read and write. It is easy for
machines to parse and generate. It is based on a subset of the
JavaScript Programming Language, Standard ECMA-262 3rd Edition -
December 1999.
JSON (JavaScript Object Notation) is a lightweight data-interchange format.
It is easy for humans to read and write. It is easy for machines to parse
and generate. It is based on a subset of the JavaScript Programming
Language, Standard ECMA-262 3rd Edition - December 1999. This library
provides a parser and pretty printer for converting between Haskell values
and JSON.
This library provides a parser and pretty printer for converting
between Haskell values and JSON.
WWW: http://hackage.haskell.org/package/json
WWW: http://hackage.haskell.org/package/json

View file

@ -6,15 +6,16 @@
#
PORTNAME= MemoTrie
PORTVERSION= 0.4.10
PORTREVISION= 1
PORTVERSION= 0.5
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Trie-based memo functions for Haskell
COMMENT= Trie-based memo functions
LICENSE= BSD
FILE_LICENSE= COPYING
USE_CABAL= void
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View file

@ -1,2 +1,2 @@
SHA256 (cabal/MemoTrie-0.4.10.tar.gz) = 7322b0512bb048220da38601f9b6a14b9a3f6d624b51cc9f21202a3d065679c2
SIZE (cabal/MemoTrie-0.4.10.tar.gz) = 6032
SHA256 (cabal/MemoTrie-0.5.tar.gz) = 6ebd135c50999bb0cd5e1086c3a212bcbddcd45f741791b7fd2c7acd58c1761e
SIZE (cabal/MemoTrie-0.5.tar.gz) = 6182

View file

@ -1,4 +1,4 @@
Haskell MemoTrie provides a basis for memoized functions over some
domains, using tries. It is based on some code got from Spencer Janssen.
WWW: http://haskell.org/haskellwiki/MemoTrie
WWW: http://haskell.org/haskellwiki/MemoTrie