Received: by mail.netbsd.org (Postfix, from userid 605) id 0291384DE7; Tue, 31 Dec 2019 13:55:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7F54B84CEA for ; Tue, 31 Dec 2019 13:55:48 +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 L4DbtvLAcmrk for ; Tue, 31 Dec 2019 13:55:47 +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 DE5C384CE7 for ; Tue, 31 Dec 2019 13:55:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DBAC4FA97; Tue, 31 Dec 2019 13:55:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577800547247500" MIME-Version: 1.0 Date: Tue, 31 Dec 2019 13:55:47 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/math/hs-nats To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20191231135547.DBAC4FA97@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. --_----------=_1577800547247500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Tue Dec 31 13:55:47 UTC 2019 Modified Files: pkgsrc/math/hs-nats: DESCR Makefile buildlink3.mk distinfo Removed Files: pkgsrc/math/hs-nats: PLIST Log Message: Update to nats-1.1.2 1.1.2 [2018-02-06] * Don't enable Safe on GHC 7.2. 1.1.1 * Backported a more efficient Binary instance for Nat * Allow binary-0.8 1.1 * Backported Lift instances. 1.0 * Make nats a compat-package since Numeric.Natural moved to base-4.8.0.0. 0.2.1 * Better readsPrec handling when you try to feed it a negative number. Note it is a failed parse rather than an error. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/hs-nats/DESCR cvs rdiff -u -r1.10 -r1.11 pkgsrc/math/hs-nats/Makefile \ pkgsrc/math/hs-nats/buildlink3.mk cvs rdiff -u -r1.1 -r0 pkgsrc/math/hs-nats/PLIST cvs rdiff -u -r1.3 -r1.4 pkgsrc/math/hs-nats/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577800547247500 Content-Disposition: inline Content-Length: 3059 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/hs-nats/DESCR diff -u pkgsrc/math/hs-nats/DESCR:1.1 pkgsrc/math/hs-nats/DESCR:1.2 --- pkgsrc/math/hs-nats/DESCR:1.1 Wed May 28 22:01:27 2014 +++ pkgsrc/math/hs-nats/DESCR Tue Dec 31 13:55:47 2019 @@ -1 +1,4 @@ Natural numbers. + +This is a compatibility package for old packages that still depends on +"nats". The module Numeric.Natural is now a part of the base package. Index: pkgsrc/math/hs-nats/Makefile diff -u pkgsrc/math/hs-nats/Makefile:1.10 pkgsrc/math/hs-nats/Makefile:1.11 --- pkgsrc/math/hs-nats/Makefile:1.10 Sun Jan 10 11:49:10 2016 +++ pkgsrc/math/hs-nats/Makefile Tue Dec 31 13:55:47 2019 @@ -1,13 +1,16 @@ -# $NetBSD: Makefile,v 1.10 2016/01/10 11:49:10 szptvlfn Exp $ +# $NetBSD: Makefile,v 1.11 2019/12/31 13:55:47 pho Exp $ -DISTNAME= nats-0.2 -PKGREVISION= 8 +DISTNAME= nats-1.1.2 CATEGORIES= math MAINTAINER= pho@cielonegro.org COMMENT= Haskell 98 natural numbers LICENSE= modified-bsd +# This package becomes essentially blank when built with GHC >= +# 7.10. Haddock complains when there are no input files. +HASKELL_ENABLE_HADDOCK_DOCUMENTATION= no + .include "../../mk/haskell.mk" .include "../../devel/hs-hashable/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/hs-nats/buildlink3.mk diff -u pkgsrc/math/hs-nats/buildlink3.mk:1.10 pkgsrc/math/hs-nats/buildlink3.mk:1.11 --- pkgsrc/math/hs-nats/buildlink3.mk:1.10 Sun Jan 10 11:49:10 2016 +++ pkgsrc/math/hs-nats/buildlink3.mk Tue Dec 31 13:55:47 2019 @@ -1,12 +1,12 @@ -# $NetBSD: buildlink3.mk,v 1.10 2016/01/10 11:49:10 szptvlfn Exp $ +# $NetBSD: buildlink3.mk,v 1.11 2019/12/31 13:55:47 pho Exp $ BUILDLINK_TREE+= hs-nats .if !defined(HS_NATS_BUILDLINK3_MK) HS_NATS_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.hs-nats+= hs-nats>=0.2 -BUILDLINK_ABI_DEPENDS.hs-nats+= hs-nats>=0.2nb8 +BUILDLINK_API_DEPENDS.hs-nats+= hs-nats>=1.1.2 +BUILDLINK_ABI_DEPENDS.hs-nats+= hs-nats>=1.1.2 BUILDLINK_PKGSRCDIR.hs-nats?= ../../math/hs-nats .include "../../devel/hs-hashable/buildlink3.mk" Index: pkgsrc/math/hs-nats/distinfo diff -u pkgsrc/math/hs-nats/distinfo:1.3 pkgsrc/math/hs-nats/distinfo:1.4 --- pkgsrc/math/hs-nats/distinfo:1.3 Tue Nov 3 23:33:35 2015 +++ pkgsrc/math/hs-nats/distinfo Tue Dec 31 13:55:47 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2015/11/03 23:33:35 agc Exp $ +$NetBSD: distinfo,v 1.4 2019/12/31 13:55:47 pho Exp $ -SHA1 (nats-0.2.tar.gz) = 5bb6c02e59608e7f46fa957ad55ae6701e266250 -RMD160 (nats-0.2.tar.gz) = 031eabf10cf66b28fbfe76cc4283c422f1472a1d -SHA512 (nats-0.2.tar.gz) = 419f2b4f938b7d590f45a25be163e25f29d47ec0fe7cf5d1f69cb9624c5617dfc25a0b14daf1b31ac590c021120eb5cd93bdf902d27136e3019e30ce2b5d3188 -Size (nats-0.2.tar.gz) = 4740 bytes +SHA1 (nats-1.1.2.tar.gz) = f51474cdd408286f846ff200de08faade3d9affd +RMD160 (nats-1.1.2.tar.gz) = 22fd69f162b4a7dc87b2755ad89a88ee12ee35c6 +SHA512 (nats-1.1.2.tar.gz) = 596f11e98fe57893279ddd1f5af11a12e747e0d5e87000c7e20d0f5c2da0f0be9a6b8d19c8d5759716a7fb9a3e77d0e999380af3d5a350fe32a5492dc6077450 +Size (nats-1.1.2.tar.gz) = 7776 bytes --_----------=_1577800547247500--