Skip to content

Commit

Permalink
Update to parsec-3.1.14.0
Browse files Browse the repository at this point in the history
3.1.14.0
* Add parseFromFile to Text.Parsec.Text.Lazy and Text.Parsec.Text
  (#103, #104).
* Clarify Haddock documentation in various places (#105,#101,#102).
* Add support for base-4.13.

3.1.13.0

* Add official support for SafeHaskell.

  NOTE: This is the first version whose SafeHaskell properties have
  become an intentional part of the API contract; previous versions
  were merely accidentally safe-inferred (or not depending on various
  factors; in other words, this was a fragile property). If you rely
  on SafeHaskell to consider module imports from parsec safe, this is
  the first version of parsec which actually guarantees a well-defined
  state; you can declare this requirement by either specifying

    build-depends: parsec >= 3.1.13.0 && < 3.2

  or, starting with cabal-version:2.0, via

    build-depends: parsec ^>= 3.1.13.0

* Drop support for GHC 7.0, GHC 7.2, and GHC 7.4.1; support window
  starts with GHC 7.4.2.

3.1.12.0
* Support limited to GHC 7.0 & GHC 7.2 only
* Add MonadFail instance for ParsecT
* Add Semigroup/Monoid instances for ParsecT (#80,#82)
* Fix space leak in Applicative/Monad interface (#37)
* Add parserTrace and parserTraced combinators for debugging.

3.1.11
* Include README.md in package.

3.1.10
* Most types now have a Typeable instance. Some instances are dropped
  from older versions of GHC (sorry about that!).
* The token-parser now rejects Unicode numeric escape sequences for
  characters outside the Unicode range.
* The token-parser now loses less precision when parsing literal
  doubles.
* Documentation fixes and corrections.
* We no longer test parsec builds on GHC 7.4.
  • Loading branch information
depressed-pho committed Jan 2, 2020
1 parent 5f137c2 commit e9ab430
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 124 deletions.
7 changes: 4 additions & 3 deletions textproc/hs-parsec/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.12 2016/01/10 11:49:11 szptvlfn Exp $
# $NetBSD: Makefile,v 1.13 2020/01/02 14:49:43 pho Exp $

DISTNAME= parsec-3.1.9
PKGREVISION= 2
DISTNAME= parsec-3.1.14.0
CATEGORIES= textproc

MAINTAINER= pho@cielonegro.org
Expand All @@ -11,4 +10,6 @@ LICENSE= modified-bsd
.include "../../mk/haskell.mk"
.include "../../devel/hs-mtl/buildlink3.mk"
.include "../../devel/hs-text/buildlink3.mk"
.include "../../devel/hs-fail/buildlink3.mk"
.include "../../math/hs-semigroups/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
113 changes: 0 additions & 113 deletions textproc/hs-parsec/PLIST

This file was deleted.

8 changes: 5 additions & 3 deletions textproc/hs-parsec/buildlink3.mk
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# $NetBSD: buildlink3.mk,v 1.12 2018/01/07 13:04:33 rillig Exp $
# $NetBSD: buildlink3.mk,v 1.13 2020/01/02 14:49:43 pho Exp $

BUILDLINK_TREE+= hs-parsec

.if !defined(HS_PARSEC_BUILDLINK3_MK)
HS_PARSEC_BUILDLINK3_MK:=

BUILDLINK_API_DEPENDS.hs-parsec+= hs-parsec>=3.1.9
BUILDLINK_ABI_DEPENDS.hs-parsec+= hs-parsec>=3.1.9nb2
BUILDLINK_API_DEPENDS.hs-parsec+= hs-parsec>=3.1.14
BUILDLINK_ABI_DEPENDS.hs-parsec+= hs-parsec>=3.1.14.0
BUILDLINK_PKGSRCDIR.hs-parsec?= ../../textproc/hs-parsec

.include "../../devel/hs-mtl/buildlink3.mk"
.include "../../devel/hs-text/buildlink3.mk"
.include "../../devel/hs-fail/buildlink3.mk"
.include "../../math/hs-semigroups/buildlink3.mk"
.endif # HS_PARSEC_BUILDLINK3_MK

BUILDLINK_TREE+= -hs-parsec
10 changes: 5 additions & 5 deletions textproc/hs-parsec/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.5 2015/11/04 01:59:31 agc Exp $
$NetBSD: distinfo,v 1.6 2020/01/02 14:49:43 pho Exp $

SHA1 (parsec-3.1.9.tar.gz) = 52eb8bf530111a2e92f710d14f0cf6e43eaaf741
RMD160 (parsec-3.1.9.tar.gz) = 366255e648b0b9e20a555e942c71f53014a5a513
SHA512 (parsec-3.1.9.tar.gz) = bc5209813ad0742c68c275f0ecd3e284b6249d2651f75daf16ad9a776003591217eb7d47fdaad88530af90455fe7d3e014c3c1d7d0893482721d4997b23a2d16
Size (parsec-3.1.9.tar.gz) = 29668 bytes
SHA1 (parsec-3.1.14.0.tar.gz) = 373910b997620643be160bf89b03162ca2d8595e
RMD160 (parsec-3.1.14.0.tar.gz) = f7d73b170914498ba47502ae1950bcccd8605600
SHA512 (parsec-3.1.14.0.tar.gz) = db14f77a2d36da5e540be35f0facb7fa61f2c46057b98039bdf16c06fe9865d5ee47e3523a312201665ca133f3f93855b42f0d0a920b8e233ffc8274075c56d3
Size (parsec-3.1.14.0.tar.gz) = 35688 bytes

0 comments on commit e9ab430

Please sign in to comment.