Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id AB12A1A9239 for ; Fri, 11 Feb 2022 13:43:59 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id C8BB184E56; Fri, 11 Feb 2022 13:43:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0EE4484D4C for ; Fri, 11 Feb 2022 13:43:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id u-T64p69_00k for ; Fri, 11 Feb 2022 13:43:57 +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 2A92384CD9 for ; Fri, 11 Feb 2022 13:43:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 27F5AFB24; Fri, 11 Feb 2022 13:43:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1644587037151250" MIME-Version: 1.0 Date: Fri, 11 Feb 2022 13:43:57 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-unordered-containers To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20220211134357.27F5AFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1644587037151250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Fri Feb 11 13:43:57 UTC 2022 Modified Files: pkgsrc/devel/hs-unordered-containers: Makefile PLIST buildlink3.mk distinfo Log Message: Update to unordered-containers-0.2.16.0 0.2.16.0 * Increase maximum branching factor from 16 to 32 * Tweak union.goDifferentHash * Fix debug mode bounds check in cloneM * Remove some old internal compatibility code 0.2.15.0 * Add security advisory regarding hash collision attacks * Add support for hashable 1.4 * Drop support for GHC < 8 0.2.14.0 * Add HashMap.mapKeys. Thanks, Marco Perone! * Add instances for NFData1 and NFData2. Thanks, Isaac Elliott and Oleg Grenrus! * Fix @since-annotation for compose. Thanks, @Mathnerd314! To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/hs-unordered-containers/Makefile \ pkgsrc/devel/hs-unordered-containers/buildlink3.mk cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/hs-unordered-containers/PLIST cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/hs-unordered-containers/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1644587037151250 Content-Disposition: inline Content-Length: 4841 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-unordered-containers/Makefile diff -u pkgsrc/devel/hs-unordered-containers/Makefile:1.15 pkgsrc/devel/hs-unordered-containers/Makefile:1.16 --- pkgsrc/devel/hs-unordered-containers/Makefile:1.15 Tue Jan 18 02:48:15 2022 +++ pkgsrc/devel/hs-unordered-containers/Makefile Fri Feb 11 13:43:56 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2022/01/18 02:48:15 pho Exp $ +# $NetBSD: Makefile,v 1.16 2022/02/11 13:43:56 pho Exp $ -DISTNAME= unordered-containers-0.2.13.0 -PKGREVISION= 2 +DISTNAME= unordered-containers-0.2.16.0 CATEGORIES= devel MAINTAINER= pho@cielonegro.org Index: pkgsrc/devel/hs-unordered-containers/buildlink3.mk diff -u pkgsrc/devel/hs-unordered-containers/buildlink3.mk:1.15 pkgsrc/devel/hs-unordered-containers/buildlink3.mk:1.16 --- pkgsrc/devel/hs-unordered-containers/buildlink3.mk:1.15 Tue Jan 18 02:48:15 2022 +++ pkgsrc/devel/hs-unordered-containers/buildlink3.mk Fri Feb 11 13:43:56 2022 @@ -1,12 +1,12 @@ -# $NetBSD: buildlink3.mk,v 1.15 2022/01/18 02:48:15 pho Exp $ +# $NetBSD: buildlink3.mk,v 1.16 2022/02/11 13:43:56 pho Exp $ BUILDLINK_TREE+= hs-unordered-containers .if !defined(HS_UNORDERED_CONTAINERS_BUILDLINK3_MK) HS_UNORDERED_CONTAINERS_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.hs-unordered-containers+= hs-unordered-containers>=0.2.13 -BUILDLINK_ABI_DEPENDS.hs-unordered-containers+= hs-unordered-containers>=0.2.13.0nb2 +BUILDLINK_API_DEPENDS.hs-unordered-containers+= hs-unordered-containers>=0.2.16 +BUILDLINK_ABI_DEPENDS.hs-unordered-containers+= hs-unordered-containers>=0.2.16.0 BUILDLINK_PKGSRCDIR.hs-unordered-containers?= ../../devel/hs-unordered-containers .include "../../devel/hs-hashable/buildlink3.mk" Index: pkgsrc/devel/hs-unordered-containers/PLIST diff -u pkgsrc/devel/hs-unordered-containers/PLIST:1.4 pkgsrc/devel/hs-unordered-containers/PLIST:1.5 --- pkgsrc/devel/hs-unordered-containers/PLIST:1.4 Fri Apr 23 06:28:04 2021 +++ pkgsrc/devel/hs-unordered-containers/PLIST Fri Feb 11 13:43:56 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2021/04/23 06:28:04 pho Exp $ +@comment $NetBSD: PLIST,v 1.5 2022/02/11 13:43:56 pho Exp $ lib/unordered-containers-${PKGVERSION}/${HS_VERSION}/package-description lib/unordered-containers-${PKGVERSION}/${HS_VERSION}/package-id lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so @@ -14,9 +14,6 @@ lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hash lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Internal/Strict.dyn_hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Internal/Strict.hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Internal/Strict.p_hi -lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Internal/Unsafe.dyn_hi -lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Internal/Unsafe.hi -lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Internal/Unsafe.p_hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Lazy.dyn_hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Lazy.hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/HashMap/Lazy.p_hi @@ -35,7 +32,6 @@ share/doc/${HS_PLATFORM}/unordered-conta share/doc/${HS_PLATFORM}/unordered-containers-${PKGVERSION}/html/Data-HashMap-Internal-Array.html share/doc/${HS_PLATFORM}/unordered-containers-${PKGVERSION}/html/Data-HashMap-Internal-List.html share/doc/${HS_PLATFORM}/unordered-containers-${PKGVERSION}/html/Data-HashMap-Internal-Strict.html -share/doc/${HS_PLATFORM}/unordered-containers-${PKGVERSION}/html/Data-HashMap-Internal-Unsafe.html share/doc/${HS_PLATFORM}/unordered-containers-${PKGVERSION}/html/Data-HashMap-Internal.html share/doc/${HS_PLATFORM}/unordered-containers-${PKGVERSION}/html/Data-HashMap-Lazy.html share/doc/${HS_PLATFORM}/unordered-containers-${PKGVERSION}/html/Data-HashMap-Strict.html Index: pkgsrc/devel/hs-unordered-containers/distinfo diff -u pkgsrc/devel/hs-unordered-containers/distinfo:1.8 pkgsrc/devel/hs-unordered-containers/distinfo:1.9 --- pkgsrc/devel/hs-unordered-containers/distinfo:1.8 Tue Oct 26 10:15:03 2021 +++ pkgsrc/devel/hs-unordered-containers/distinfo Fri Feb 11 13:43:56 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2021/10/26 10:15:03 nia Exp $ +$NetBSD: distinfo,v 1.9 2022/02/11 13:43:56 pho Exp $ -BLAKE2s (unordered-containers-0.2.13.0.tar.gz) = 1ab38b3ec6ae19a5d264cdafe1b02a54c263df9d98ab7ceeb1a91876d58f7cce -SHA512 (unordered-containers-0.2.13.0.tar.gz) = f32d6e91ba7ef54cc24562e26e8bda147e43b954966bae3f9850b0c57438e5d8af43f7a49106980d1197ff674eca7bb9a50c8895deb0e45588ec123664c6c47d -Size (unordered-containers-0.2.13.0.tar.gz) = 53379 bytes +BLAKE2s (unordered-containers-0.2.16.0.tar.gz) = 1b6a1ca9a24d4fc6a665154cf469e6f402c603e9d74b08d6a895d04abf7d0d43 +SHA512 (unordered-containers-0.2.16.0.tar.gz) = 12b3c3d42498e9fba0545196f57dfa851fe141045aafff26701f6e116ba94d7dbc6e2bba1e5ffe47b2532e468c6f41651dfc058ebd3c76e2a16ebef2689d6652 +Size (unordered-containers-0.2.16.0.tar.gz) = 53325 bytes --_----------=_1644587037151250--