Received: by mail.netbsd.org (Postfix, from userid 605) id E2FAD84DAF; Wed, 1 Jan 2020 04:23:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6A41D84CF7 for ; Wed, 1 Jan 2020 04:23:35 +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 jKXXEVLYDp-A for ; Wed, 1 Jan 2020 04:23:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 93B6384C85 for ; Wed, 1 Jan 2020 04:23:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 82C83FA97; Wed, 1 Jan 2020 04:23:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15778526146860" MIME-Version: 1.0 Date: Wed, 1 Jan 2020 04:23:34 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-exceptions To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20200101042334.82C83FA97@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. --_----------=_15778526146860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Wed Jan 1 04:23:34 UTC 2020 Modified Files: pkgsrc/devel/hs-exceptions: Makefile buildlink3.mk distinfo Removed Files: pkgsrc/devel/hs-exceptions: PLIST Log Message: Update to exceptions-0.10.4 0.10.4 [2019.12.26] * Allow building with template-haskell-2.16.*. * Only depend on transformers-compat on old versions of GHC. 0.10.3 [2019.08.27] * MonadThrow instance for the strict ST monad. 0.10.2 [2019.05.02] * Allow building with base-4.13/template-haskell-2.15. 0.10.1 [2019.03.26] * Define a MonadFail instance for CatchT. * Allow QuickCheck-2.13 in the test suite. 0.10.0 * Fix a regression in 0.9.0 whereby the non-IO effects in bracket's use action were not visible to the release action, and the non-IO effects in the release action were not visible after the bracket call. * The type of generalBracket was changed in order to restore those non-IO effects, so if you are a library author that provides a MonadMask instance, you will need to update your implementation of this method. * Add MonadMask instance for MaybeT * Add onError function whose action also runs on errors which are not exceptions, such as a Nothing or a Left. 0.9.0 * Add generalBracket to the MonadMask typeclass, allowing more valid instances. * Note that functions such as bracket and finally are now based off of generalBracket, so if you are a library author that provides a MonadMask instance, you will need to provide an implementation of this method. * Add MonadMask instances for ExceptT and ErrorT 0.8.3 * MonadCatch and MonadMask instances for Either SomeException 0.8.1 * Support for throwing in the template-haskell Q monad * Support for transformers 0.5 0.8.0.1 * Resolved warnings on GHC 7.10 and with transformers 0.4. 0.8 * Use transformers-compat to allow support for ExceptT even on older transformers versions. 0.7 * stm support To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/hs-exceptions/Makefile \ pkgsrc/devel/hs-exceptions/buildlink3.mk cvs rdiff -u -r1.1 -r0 pkgsrc/devel/hs-exceptions/PLIST cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/hs-exceptions/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15778526146860 Content-Disposition: inline Content-Length: 3088 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-exceptions/Makefile diff -u pkgsrc/devel/hs-exceptions/Makefile:1.3 pkgsrc/devel/hs-exceptions/Makefile:1.4 --- pkgsrc/devel/hs-exceptions/Makefile:1.3 Sun Nov 23 12:52:32 2014 +++ pkgsrc/devel/hs-exceptions/Makefile Wed Jan 1 04:23:34 2020 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2014/11/23 12:52:32 szptvlfn Exp $ +# $NetBSD: Makefile,v 1.4 2020/01/01 04:23:34 pho Exp $ -DISTNAME= exceptions-0.6.1 -PKGREVISION= 2 +DISTNAME= exceptions-0.10.4 CATEGORIES= devel MAINTAINER= szptvlfn@NetBSD.org @@ -10,5 +9,6 @@ LICENSE= modified-bsd .include "../../mk/haskell.mk" .include "../../devel/hs-mtl/buildlink3.mk" -.include "../../devel/hs-transformers/buildlink3.mk" +.include "../../devel/hs-stm/buildlink3.mk" +.include "../../devel/hs-fail/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-exceptions/buildlink3.mk diff -u pkgsrc/devel/hs-exceptions/buildlink3.mk:1.3 pkgsrc/devel/hs-exceptions/buildlink3.mk:1.4 --- pkgsrc/devel/hs-exceptions/buildlink3.mk:1.3 Sun Nov 23 12:52:32 2014 +++ pkgsrc/devel/hs-exceptions/buildlink3.mk Wed Jan 1 04:23:34 2020 @@ -1,16 +1,17 @@ -# $NetBSD: buildlink3.mk,v 1.3 2014/11/23 12:52:32 szptvlfn Exp $ +# $NetBSD: buildlink3.mk,v 1.4 2020/01/01 04:23:34 pho Exp $ BUILDLINK_TREE+= hs-exceptions .if !defined(HS_EXCEPTIONS_BUILDLINK3_MK) HS_EXCEPTIONS_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.hs-exceptions+= hs-exceptions>=0.6.1 -BUILDLINK_ABI_DEPENDS.hs-exceptions+= hs-exceptions>=0.6.1nb2 +BUILDLINK_API_DEPENDS.hs-exceptions+= hs-exceptions>=0.10.4 +BUILDLINK_ABI_DEPENDS.hs-exceptions+= hs-exceptions>=0.10.4 BUILDLINK_PKGSRCDIR.hs-exceptions?= ../../devel/hs-exceptions .include "../../devel/hs-mtl/buildlink3.mk" -.include "../../devel/hs-transformers/buildlink3.mk" +.include "../../devel/hs-stm/buildlink3.mk" +.include "../../devel/hs-fail/buildlink3.mk" .endif # HS_EXCEPTIONS_BUILDLINK3_MK BUILDLINK_TREE+= -hs-exceptions Index: pkgsrc/devel/hs-exceptions/distinfo diff -u pkgsrc/devel/hs-exceptions/distinfo:1.2 pkgsrc/devel/hs-exceptions/distinfo:1.3 --- pkgsrc/devel/hs-exceptions/distinfo:1.2 Tue Nov 3 03:27:32 2015 +++ pkgsrc/devel/hs-exceptions/distinfo Wed Jan 1 04:23:34 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2015/11/03 03:27:32 agc Exp $ +$NetBSD: distinfo,v 1.3 2020/01/01 04:23:34 pho Exp $ -SHA1 (exceptions-0.6.1.tar.gz) = b28165332ae633a622cfe49f4df59b826db1f040 -RMD160 (exceptions-0.6.1.tar.gz) = 46e27be5a1f41c48a92ffe7976ce5655313ffd30 -SHA512 (exceptions-0.6.1.tar.gz) = 92413cfa9fccd877303ec4f100c4ac94d3e30df0563600733a940c3a3ee9d4e1e934bd6d09774faed684c8ea9821b8c44cf501cc44fe8c834dd19e2efbed5070 -Size (exceptions-0.6.1.tar.gz) = 11392 bytes +SHA1 (exceptions-0.10.4.tar.gz) = f0e512c639ba31dcd37875702d718ecd4bf009fe +RMD160 (exceptions-0.10.4.tar.gz) = bcf1a2ba174d645297b54dcb438b044f4f6424d1 +SHA512 (exceptions-0.10.4.tar.gz) = 3df1edb4abab8e2e2dbd7387809d9768efca36c6840225ce33bee8679a4efdcf86d28beafb54a9a40e512163e4d088f94e788341bf614869bbdbd9d701bca4a2 +Size (exceptions-0.10.4.tar.gz) = 20819 bytes --_----------=_15778526146860--