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 BC79D1A9239 for ; Fri, 11 Feb 2022 13:00:40 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E349C84E57; Fri, 11 Feb 2022 13:00:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 261BF84D4C for ; Fri, 11 Feb 2022 13:00:39 +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 YGOpsmTlixlf for ; Fri, 11 Feb 2022 13:00:38 +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 4D03E84CE3 for ; Fri, 11 Feb 2022 13:00:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 46918FB24; Fri, 11 Feb 2022 13:00:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1644584438109740" MIME-Version: 1.0 Date: Fri, 11 Feb 2022 13:00:38 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-hashable To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20220211130038.46918FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1644584438109740 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:00:38 UTC 2022 Modified Files: pkgsrc/devel/hs-hashable: Makefile PLIST buildlink3.mk distinfo Removed Files: pkgsrc/devel/hs-hashable/patches: patch-hashable.cabal Log Message: Update to hashable-1.4.0.2 Version 1.4.0.2 * Restore older GHC support * Support GHC-9.0.2 Version 1.4.0.1 * text-2.0 compatibility Version 1.4.0.0 * Eq is now a superclass of Hashable. Also Eq1 is a superclass of Hashable1 and Eq2 is a superclass of Hashable2 when exists. * Remove Hashable1 Fixed instance * Remove Hashable1 Semi.Min/Max/... instances as they don't have Eq1 instance. Version 1.3.5.0 * Add Solo instance (base-4.15+, GHC-9+) Version 1.3.4.1 * Fix compilation on 32 bit platforms * Fix Tree instance Version 1.3.4.0 * Text and ByteString hashes include length. This fixes a variant of https://github.com/haskell-unordered-containers/hashable/issues/74 for texts and bytestrings. https://github.com/haskell-unordered-containers/hashable/pull/223 * Use correct prime in combine. This should improve the hash quality of compound structures on 64bit systems. https://github.com/haskell-unordered-containers/hashable/pull/224 * Add instance for types in containers package https://github.com/haskell-unordered-containers/hashable/pull/226 * Change Int, Int64 and Word64 hashWithSalt slightly. https://github.com/haskell-unordered-containers/hashable/pull/227 Version 1.3.3.0 * Text hashing uses 64-bit FNV prime * Don't truncate Text hashvalues on 64bit Windows: https://github.com/haskell-unordered-containers/hashable/pull/211 Version 1.3.2.0 * Add Hashable (Fixed a) for base <4.7 versions. * Add documentation: * hashable is not a stable hash * hashWithSalt may return negative values * there is time-compat with Hashable instances for time types. * Add random-initial-seed flag causing the initial seed to be randomized on each start of an executable using hashable. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/hs-hashable/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/hs-hashable/PLIST cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/hs-hashable/buildlink3.mk cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/hs-hashable/distinfo cvs rdiff -u -r1.1 -r0 pkgsrc/devel/hs-hashable/patches/patch-hashable.cabal Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1644584438109740 Content-Disposition: inline Content-Length: 3983 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-hashable/Makefile diff -u pkgsrc/devel/hs-hashable/Makefile:1.17 pkgsrc/devel/hs-hashable/Makefile:1.18 --- pkgsrc/devel/hs-hashable/Makefile:1.17 Tue Jan 18 02:48:08 2022 +++ pkgsrc/devel/hs-hashable/Makefile Fri Feb 11 13:00:37 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2022/01/18 02:48:08 pho Exp $ +# $NetBSD: Makefile,v 1.18 2022/02/11 13:00:37 pho Exp $ -DISTNAME= hashable-1.3.1.0 -PKGREVISION= 3 +DISTNAME= hashable-1.4.0.2 CATEGORIES= devel MAINTAINER= pho@cielonegro.org Index: pkgsrc/devel/hs-hashable/PLIST diff -u pkgsrc/devel/hs-hashable/PLIST:1.4 pkgsrc/devel/hs-hashable/PLIST:1.5 --- pkgsrc/devel/hs-hashable/PLIST:1.4 Fri Apr 23 04:50:04 2021 +++ pkgsrc/devel/hs-hashable/PLIST Fri Feb 11 13:00:37 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2021/04/23 04:50:04 pho Exp $ +@comment $NetBSD: PLIST,v 1.5 2022/02/11 13:00:37 pho Exp $ lib/hashable-${PKGVERSION}/${HS_VERSION}/package-description lib/hashable-${PKGVERSION}/${HS_VERSION}/package-id lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable.dyn_hi @@ -13,9 +13,15 @@ lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hash lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Generic/Instances.dyn_hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Generic/Instances.hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Generic/Instances.p_hi +lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Imports.dyn_hi +lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Imports.hi +lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Imports.p_hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Lifted.dyn_hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Lifted.hi lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/Lifted.p_hi +lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/LowLevel.dyn_hi +lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/LowLevel.hi +lib/${HS_PLATFORM}/${HS_PKGID}/Data/Hashable/LowLevel.p_hi lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}.a lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}_p.a lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so Index: pkgsrc/devel/hs-hashable/buildlink3.mk diff -u pkgsrc/devel/hs-hashable/buildlink3.mk:1.15 pkgsrc/devel/hs-hashable/buildlink3.mk:1.16 --- pkgsrc/devel/hs-hashable/buildlink3.mk:1.15 Tue Jan 18 02:48:08 2022 +++ pkgsrc/devel/hs-hashable/buildlink3.mk Fri Feb 11 13:00:37 2022 @@ -1,12 +1,12 @@ -# $NetBSD: buildlink3.mk,v 1.15 2022/01/18 02:48:08 pho Exp $ +# $NetBSD: buildlink3.mk,v 1.16 2022/02/11 13:00:37 pho Exp $ BUILDLINK_TREE+= hs-hashable .if !defined(HS_HASHABLE_BUILDLINK3_MK) HS_HASHABLE_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.hs-hashable+= hs-hashable>=1.3.1 -BUILDLINK_ABI_DEPENDS.hs-hashable+= hs-hashable>=1.3.1.0nb3 +BUILDLINK_API_DEPENDS.hs-hashable+= hs-hashable>=1.4.0 +BUILDLINK_ABI_DEPENDS.hs-hashable+= hs-hashable>=1.4.0.2 BUILDLINK_PKGSRCDIR.hs-hashable?= ../../devel/hs-hashable .endif # HS_HASHABLE_BUILDLINK3_MK Index: pkgsrc/devel/hs-hashable/distinfo diff -u pkgsrc/devel/hs-hashable/distinfo:1.10 pkgsrc/devel/hs-hashable/distinfo:1.11 --- pkgsrc/devel/hs-hashable/distinfo:1.10 Mon Jan 17 05:06:55 2022 +++ pkgsrc/devel/hs-hashable/distinfo Fri Feb 11 13:00:37 2022 @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.10 2022/01/17 05:06:55 pho Exp $ +$NetBSD: distinfo,v 1.11 2022/02/11 13:00:37 pho Exp $ -BLAKE2s (hashable-1.3.1.0.tar.gz) = 8e33caaeea3ce9d6da6f466e67ff14e68a67e39cd08bb957f742fd1cc64b18a7 -SHA512 (hashable-1.3.1.0.tar.gz) = dc74815d9c4cbf6b5562d04843f5234d7378265f2796c8f9980ecc639a03e01c8d4a0a27ed6bb31207df537d7774d910b9fec216a8832377e09e827aabf58751 -Size (hashable-1.3.1.0.tar.gz) = 21424 bytes -SHA1 (patch-hashable.cabal) = deaeb9523af9aab400289e1d054908862a07fc18 +BLAKE2s (hashable-1.4.0.2.tar.gz) = fdebfb9fb7af543a961c0ae986f581b5f03f2958eb7d3fdb31415a5d716add5b +SHA512 (hashable-1.4.0.2.tar.gz) = a8cc2b7cafa8f18d9a74490d2dff7edf12901b7c40ca0c1881af579695135c1ca7629347d34d0c7dc662078d7669d5d6234bd889c1f77f344297942243fe7dda +Size (hashable-1.4.0.2.tar.gz) = 25528 bytes --_----------=_1644584438109740--