Received: by mail.netbsd.org (Postfix, from userid 605) id CC85C84DFA; Thu, 2 Jan 2020 14:49:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 55A3384D8B for ; Thu, 2 Jan 2020 14:49:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id PgMvVV5I8JWf for ; Thu, 2 Jan 2020 14:49:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 821EB84D60 for ; Thu, 2 Jan 2020 14:49:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0503DFA97; Thu, 2 Jan 2020 14:49:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577976583175010" MIME-Version: 1.0 Date: Thu, 2 Jan 2020 14:49:43 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/textproc/hs-parsec To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20200102144944.0503DFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1577976583175010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Thu Jan 2 14:49:43 UTC 2020 Modified Files: pkgsrc/textproc/hs-parsec: Makefile buildlink3.mk distinfo Removed Files: pkgsrc/textproc/hs-parsec: PLIST Log Message: Update to parsec-3.1.14.0 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. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/textproc/hs-parsec/Makefile \ pkgsrc/textproc/hs-parsec/buildlink3.mk cvs rdiff -u -r1.1 -r0 pkgsrc/textproc/hs-parsec/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/hs-parsec/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577976583175010 Content-Disposition: inline Content-Length: 2994 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/hs-parsec/Makefile diff -u pkgsrc/textproc/hs-parsec/Makefile:1.12 pkgsrc/textproc/hs-parsec/Makefile:1.13 --- pkgsrc/textproc/hs-parsec/Makefile:1.12 Sun Jan 10 11:49:11 2016 +++ pkgsrc/textproc/hs-parsec/Makefile Thu Jan 2 14:49:43 2020 @@ -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 @@ -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" Index: pkgsrc/textproc/hs-parsec/buildlink3.mk diff -u pkgsrc/textproc/hs-parsec/buildlink3.mk:1.12 pkgsrc/textproc/hs-parsec/buildlink3.mk:1.13 --- pkgsrc/textproc/hs-parsec/buildlink3.mk:1.12 Sun Jan 7 13:04:33 2018 +++ pkgsrc/textproc/hs-parsec/buildlink3.mk Thu Jan 2 14:49:43 2020 @@ -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 Index: pkgsrc/textproc/hs-parsec/distinfo diff -u pkgsrc/textproc/hs-parsec/distinfo:1.5 pkgsrc/textproc/hs-parsec/distinfo:1.6 --- pkgsrc/textproc/hs-parsec/distinfo:1.5 Wed Nov 4 01:59:31 2015 +++ pkgsrc/textproc/hs-parsec/distinfo Thu Jan 2 14:49:43 2020 @@ -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 --_----------=_1577976583175010--