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 740A21A9239 for ; Sat, 12 Feb 2022 05:17:24 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A69C484E74; Sat, 12 Feb 2022 05:17:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DF96D84D17 for ; Sat, 12 Feb 2022 05:17:22 +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 uOOZJ2S5WOGA for ; Sat, 12 Feb 2022 05:17:22 +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 3B52884D10 for ; Sat, 12 Feb 2022 05:17:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 38A70FB24; Sat, 12 Feb 2022 05:17:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1644643042122920" MIME-Version: 1.0 Date: Sat, 12 Feb 2022 05:17:22 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/textproc/hs-lucid To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20220212051722.38A70FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1644643042122920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Sat Feb 12 05:17:22 UTC 2022 Modified Files: pkgsrc/textproc/hs-lucid: Makefile buildlink3.mk distinfo Added Files: pkgsrc/textproc/hs-lucid/patches: patch-lucid.cabal Log Message: Update to lucid-2.11.0 2.11.0 * Change internal attributes to Seq Attribute. This preserves ordering. Attributes are merged in a left-biased way, preserving the key order as first encountered. 2.9.13 * Change internal attributes representation from HashMap to Map. This introduces stable ordering, at a negligible performance cost for realistic element sizes. This may affect some test suites. * doctype no longer accepts attributes. You can use with with doctypeHtml now, if needed. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/hs-lucid/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/hs-lucid/buildlink3.mk \ pkgsrc/textproc/hs-lucid/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/hs-lucid/patches/patch-lucid.cabal Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1644643042122920 Content-Disposition: inline Content-Length: 3277 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/hs-lucid/Makefile diff -u pkgsrc/textproc/hs-lucid/Makefile:1.5 pkgsrc/textproc/hs-lucid/Makefile:1.6 --- pkgsrc/textproc/hs-lucid/Makefile:1.5 Tue Jan 18 02:48:27 2022 +++ pkgsrc/textproc/hs-lucid/Makefile Sat Feb 12 05:17:21 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2022/01/18 02:48:27 pho Exp $ +# $NetBSD: Makefile,v 1.6 2022/02/12 05:17:21 pho Exp $ -DISTNAME= lucid-2.9.12.1 -PKGREVISION= 2 +DISTNAME= lucid-2.11.0 CATEGORIES= textproc MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/textproc/hs-lucid/buildlink3.mk diff -u pkgsrc/textproc/hs-lucid/buildlink3.mk:1.4 pkgsrc/textproc/hs-lucid/buildlink3.mk:1.5 --- pkgsrc/textproc/hs-lucid/buildlink3.mk:1.4 Tue Jan 18 02:48:27 2022 +++ pkgsrc/textproc/hs-lucid/buildlink3.mk Sat Feb 12 05:17:21 2022 @@ -1,12 +1,12 @@ -# $NetBSD: buildlink3.mk,v 1.4 2022/01/18 02:48:27 pho Exp $ +# $NetBSD: buildlink3.mk,v 1.5 2022/02/12 05:17:21 pho Exp $ BUILDLINK_TREE+= hs-lucid .if !defined(HS_LUCID_BUILDLINK3_MK) HS_LUCID_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.hs-lucid+= hs-lucid>=2.9.12 -BUILDLINK_ABI_DEPENDS.hs-lucid+= hs-lucid>=2.9.12.1nb2 +BUILDLINK_API_DEPENDS.hs-lucid+= hs-lucid>=2.11.0 +BUILDLINK_ABI_DEPENDS.hs-lucid+= hs-lucid>=2.11.0 BUILDLINK_PKGSRCDIR.hs-lucid?= ../../textproc/hs-lucid .include "../../devel/hs-blaze-builder/buildlink3.mk" Index: pkgsrc/textproc/hs-lucid/distinfo diff -u pkgsrc/textproc/hs-lucid/distinfo:1.4 pkgsrc/textproc/hs-lucid/distinfo:1.5 --- pkgsrc/textproc/hs-lucid/distinfo:1.4 Tue Oct 26 11:22:01 2021 +++ pkgsrc/textproc/hs-lucid/distinfo Sat Feb 12 05:17:21 2022 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2021/10/26 11:22:01 nia Exp $ +$NetBSD: distinfo,v 1.5 2022/02/12 05:17:21 pho Exp $ -BLAKE2s (lucid-2.9.12.1.tar.gz) = 04b209f11f66ba86eaa45e41d7fa2b611b52db33ea4b513e768cf9eedc2a7dbf -SHA512 (lucid-2.9.12.1.tar.gz) = 2572047a2711ae26b3e736ac73acb5c154d7493d47323853fda0503fa75ded35df9d7819f43879583b097718ee90235c71d8c9839c4a89ceecaa8a830b077651 -Size (lucid-2.9.12.1.tar.gz) = 19988 bytes +BLAKE2s (lucid-2.11.0.tar.gz) = af7e9f6d3f2fa799e74a8ec45796563e2e8f95071386debc52efd3e8ef386040 +SHA512 (lucid-2.11.0.tar.gz) = bdd3a1beaf787ad28858bd738b7ad6cb440e98ef8134abceb6def7a3f03a9df2a26d50b85532775d5250f9ad48a6b26b9fcc61fa7c4948c5c8639fe5dfea6e6f +Size (lucid-2.11.0.tar.gz) = 21302 bytes +SHA1 (patch-lucid.cabal) = 73562dc2199701f37ddb19b794d47f5e2855e423 Added files: Index: pkgsrc/textproc/hs-lucid/patches/patch-lucid.cabal diff -u /dev/null pkgsrc/textproc/hs-lucid/patches/patch-lucid.cabal:1.1 --- /dev/null Sat Feb 12 05:17:22 2022 +++ pkgsrc/textproc/hs-lucid/patches/patch-lucid.cabal Sat Feb 12 05:17:22 2022 @@ -0,0 +1,15 @@ +$NetBSD: patch-lucid.cabal,v 1.1 2022/02/12 05:17:22 pho Exp $ + +Fix build with GHC 9.2 + +--- lucid.cabal.orig 2021-11-09 15:50:26.000000000 +0000 ++++ lucid.cabal +@@ -33,7 +33,7 @@ library + Lucid.Bootstrap + + -- GHC boot libraries +- build-depends: base >=4.8 && <4.16 ++ build-depends: base >=4.8 && <5 + , bytestring >=0.10.6.0 + , containers >=0.5.6.2 + , transformers >=0.4.2.0 --_----------=_1644643042122920--