Received: by mail.netbsd.org (Postfix, from userid 605) id 059C884F4B; Mon, 22 Aug 2022 10:17:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3E96484F27 for ; Mon, 22 Aug 2022 10:17:40 +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 byYSad3TtF2R for ; Mon, 22 Aug 2022 10:17:39 +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 B4B1F84E6E for ; Mon, 22 Aug 2022 10:17:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AC59BFB1A; Mon, 22 Aug 2022 10:17:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1661163459111770" MIME-Version: 1.0 Date: Mon, 22 Aug 2022 10:17:39 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/hs-hashtables To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220822101739.AC59BFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1661163459111770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Aug 22 10:17:39 UTC 2022 Modified Files: pkgsrc/devel/hs-hashtables: distinfo Added Files: pkgsrc/devel/hs-hashtables/patches: patch-hashtables.cabal Log Message: hs-hashtables: allow building with hs-vector 0.14. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/hs-hashtables/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/devel/hs-hashtables/patches/patch-hashtables.cabal Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1661163459111770 Content-Disposition: inline Content-Length: 1616 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-hashtables/distinfo diff -u pkgsrc/devel/hs-hashtables/distinfo:1.5 pkgsrc/devel/hs-hashtables/distinfo:1.6 --- pkgsrc/devel/hs-hashtables/distinfo:1.5 Sat Feb 12 04:48:07 2022 +++ pkgsrc/devel/hs-hashtables/distinfo Mon Aug 22 10:17:39 2022 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.5 2022/02/12 04:48:07 pho Exp $ +$NetBSD: distinfo,v 1.6 2022/08/22 10:17:39 wiz Exp $ BLAKE2s (hashtables-1.3.tar.gz) = fbd7cec05a1bd3df818a1e74adc3061986f22e0b84af9f2190a05b3bd2aa5279 SHA512 (hashtables-1.3.tar.gz) = 7fb82e7c45c13d7bde8a216fb678d20bbd4c970f7860cbc2f08fb5524324f6b9584e1b5d397bdcb3fdbf53928758b608986167bb2bc2f1adae6feb3b0dd94444 Size (hashtables-1.3.tar.gz) = 58599 bytes +SHA1 (patch-hashtables.cabal) = c1f036d205b25321abd5cd5ad8c30968146b27dc Added files: Index: pkgsrc/devel/hs-hashtables/patches/patch-hashtables.cabal diff -u /dev/null pkgsrc/devel/hs-hashtables/patches/patch-hashtables.cabal:1.1 --- /dev/null Mon Aug 22 10:17:39 2022 +++ pkgsrc/devel/hs-hashtables/patches/patch-hashtables.cabal Mon Aug 22 10:17:39 2022 @@ -0,0 +1,15 @@ +$NetBSD: patch-hashtables.cabal,v 1.1 2022/08/22 10:17:39 wiz Exp $ + +Allow building with hs-vector 0.14 + +--- hashtables.cabal.orig 2001-09-09 01:46:40.000000000 +0000 ++++ hashtables.cabal +@@ -194,7 +194,7 @@ Library + Build-depends: base >= 4.7 && <5, + hashable >= 1.4 && < 1.5, + primitive, +- vector >= 0.7 && <0.13 ++ vector >= 0.7 && <0.14 + + if flag(portable) + cpp-options: -DNO_C_SEARCH -DPORTABLE --_----------=_1661163459111770--