Received: by mail.netbsd.org (Postfix, from userid 605) id 59C5E84E08; Mon, 30 Mar 2020 16:40:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D4D7D84E04 for ; Mon, 30 Mar 2020 16:40:26 +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 AWMY4xsxi2zr for ; Mon, 30 Mar 2020 16:40:26 +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 4862F84D32 for ; Mon, 30 Mar 2020 16:40:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3EDE9FB27; Mon, 30 Mar 2020 16:40:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158558642657680" MIME-Version: 1.0 Date: Mon, 30 Mar 2020 16:40:26 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20200330164026.3EDE9FB27@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. --_----------=_158558642657680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Mon Mar 30 16:40:26 UTC 2020 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/hs-hashtables: DESCR Makefile buildlink3.mk distinfo Log Message: hs-hashtables: Import version 1.2.3.4 To generate a diff of this commit: cvs rdiff -u -r1.3075 -r1.3076 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/hs-hashtables/DESCR \ pkgsrc/devel/hs-hashtables/Makefile \ pkgsrc/devel/hs-hashtables/buildlink3.mk \ pkgsrc/devel/hs-hashtables/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158558642657680 Content-Disposition: inline Content-Length: 3051 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3075 pkgsrc/devel/Makefile:1.3076 --- pkgsrc/devel/Makefile:1.3075 Mon Mar 30 16:39:47 2020 +++ pkgsrc/devel/Makefile Mon Mar 30 16:40:25 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3075 2020/03/30 16:39:47 riastradh Exp $ +# $NetBSD: Makefile,v 1.3076 2020/03/30 16:40:25 riastradh Exp $ # COMMENT= Development utilities @@ -540,6 +540,7 @@ SUBDIR+= hs-generic-deriving SUBDIR+= hs-ghc-mtl SUBDIR+= hs-ghc-paths SUBDIR+= hs-hashable +SUBDIR+= hs-hashtables SUBDIR+= hs-haskell-lexer SUBDIR+= hs-haskell-src-exts SUBDIR+= hs-hint Added files: Index: pkgsrc/devel/hs-hashtables/DESCR diff -u /dev/null pkgsrc/devel/hs-hashtables/DESCR:1.1 --- /dev/null Mon Mar 30 16:40:26 2020 +++ pkgsrc/devel/hs-hashtables/DESCR Mon Mar 30 16:40:26 2020 @@ -0,0 +1,4 @@ +This package provides a couple of different implementations of mutable +hash tables in the ST monad, as well as a typeclass abstracting their +common operations, and a set of wrappers to use the hash tables in the +IO monad. Index: pkgsrc/devel/hs-hashtables/Makefile diff -u /dev/null pkgsrc/devel/hs-hashtables/Makefile:1.1 --- /dev/null Mon Mar 30 16:40:26 2020 +++ pkgsrc/devel/hs-hashtables/Makefile Mon Mar 30 16:40:26 2020 @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2020/03/30 16:40:26 riastradh Exp $ + +DISTNAME= hashtables-1.2.3.4 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_HASKELL_HACKAGE:=hashtables-${PKGVERSION_NOREV}/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/gregorycollins/hashtables +COMMENT= Mutable hash tables in the ST monad +LICENSE= modified-bsd + +.include "../../mk/haskell.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-hashtables/buildlink3.mk diff -u /dev/null pkgsrc/devel/hs-hashtables/buildlink3.mk:1.1 --- /dev/null Mon Mar 30 16:40:26 2020 +++ pkgsrc/devel/hs-hashtables/buildlink3.mk Mon Mar 30 16:40:26 2020 @@ -0,0 +1,13 @@ +# $NetBSD: buildlink3.mk,v 1.1 2020/03/30 16:40:26 riastradh Exp $ + +BUILDLINK_TREE+= hs-hashtables + +.if !defined(HS_HASHTABLES_BUILDLINK3_MK) +HS_HASHTABLES_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.hs-hashtables+= hs-hashtables>=1.2.3.4 +BUILDLINK_ABI_DEPENDS.hs-hashtables+= hs-hashtables>=1.2.3.4 +BUILDLINK_PKGSRCDIR.hs-hashtables?= ../../devel/hs-hashtables +.endif # HS_HASHTABLES_BUILDLINK3_MK + +BUILDLINK_TREE+= -hs-hashtables Index: pkgsrc/devel/hs-hashtables/distinfo diff -u /dev/null pkgsrc/devel/hs-hashtables/distinfo:1.1 --- /dev/null Mon Mar 30 16:40:26 2020 +++ pkgsrc/devel/hs-hashtables/distinfo Mon Mar 30 16:40:26 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/03/30 16:40:26 riastradh Exp $ + +SHA1 (hashtables-1.2.3.4.tar.gz) = ade732dc6025394ddeab7e1293f39d1d71a57ba0 +RMD160 (hashtables-1.2.3.4.tar.gz) = a85658260d2b41bea9a717e08ed3983c601dff0d +SHA512 (hashtables-1.2.3.4.tar.gz) = 4723540f930edd1d5fd5cf58eadf7ed24fcd7761b90f303d559bc617737ec30cee2e9571ecced61fd369a933ae95b4386e48b122b876e73d0ad4bb65df16b76e +Size (hashtables-1.2.3.4.tar.gz) = 58458 bytes --_----------=_158558642657680--