Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7F7FE84FEE for ; Tue, 31 Oct 2023 02:50:02 +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 KA-S8XxaUEDc for ; Tue, 31 Oct 2023 02:50:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DC1E684EEE for ; Tue, 31 Oct 2023 02:50:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D0530FADC; Tue, 31 Oct 2023 02:50:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169872060150470" MIME-Version: 1.0 Date: Tue, 31 Oct 2023 02:50:01 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-pointed To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20231031025001.D0530FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169872060150470 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Tue Oct 31 02:50:01 UTC 2023 Modified Files: pkgsrc/devel/hs-pointed: Makefile PLIST Log Message: devel/hs-pointed: Fix build with GHC 9.6 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/hs-pointed/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/hs-pointed/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169872060150470 Content-Disposition: inline Content-Length: 2656 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-pointed/Makefile diff -u pkgsrc/devel/hs-pointed/Makefile:1.5 pkgsrc/devel/hs-pointed/Makefile:1.6 --- pkgsrc/devel/hs-pointed/Makefile:1.5 Mon Oct 9 04:54:26 2023 +++ pkgsrc/devel/hs-pointed/Makefile Tue Oct 31 02:50:01 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2023/10/09 04:54:26 pho Exp $ +# $NetBSD: Makefile,v 1.6 2023/10/31 02:50:01 pho Exp $ DISTNAME= pointed-5.0.4 PKGREVISION= 2 @@ -8,6 +8,9 @@ MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Pointed and copointed data LICENSE= modified-bsd +HASKELL_UNRESTRICT_DEPENDENCIES+= \ + semigroupoids + .include "../../devel/hs-data-default-class/buildlink3.mk" .include "../../math/hs-comonad/buildlink3.mk" .include "../../math/hs-kan-extensions/buildlink3.mk" Index: pkgsrc/devel/hs-pointed/PLIST diff -u pkgsrc/devel/hs-pointed/PLIST:1.2 pkgsrc/devel/hs-pointed/PLIST:1.3 --- pkgsrc/devel/hs-pointed/PLIST:1.2 Sun Jan 29 15:56:11 2023 +++ pkgsrc/devel/hs-pointed/PLIST Tue Oct 31 02:50:01 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2023/01/29 15:56:11 pho Exp $ +@comment $NetBSD: PLIST,v 1.3 2023/10/31 02:50:01 pho Exp $ lib/pointed-${PKGVERSION}/${HS_VERSION}/package-description lib/pointed-${PKGVERSION}/${HS_VERSION}/package-id ${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so @@ -10,14 +10,16 @@ lib/${HS_PLATFORM}/${HS_PKGID}/Data/Poin ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID}/Data/Pointed.p_hi lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}.a ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}_p.a -${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/LICENSE +share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/LICENSE ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/Data-Copointed.html ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/Data-Pointed.html ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/doc-index.html +${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/doc-index.json ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/haddock-bundle.min.js ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/index.html ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/linuwial.css ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/meta.json ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/pointed.haddock ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/quick-jump.css +${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/quick-jump.min.js ${PLIST.doc}share/doc/${HS_PLATFORM}/pointed-${PKGVERSION}/html/synopsis.png --_----------=_169872060150470--