Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 792A685A49 for ; Wed, 25 Oct 2023 16:51:10 +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 uH8cZSiMgoo1 for ; Wed, 25 Oct 2023 16:51:10 +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 EB6FC84F22 for ; Wed, 25 Oct 2023 16:51:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DF330FADC; Wed, 25 Oct 2023 16:51:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1698252669285420" MIME-Version: 1.0 Date: Wed, 25 Oct 2023 16:51:09 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-data-array-byte To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20231025165109.DF330FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1698252669285420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Wed Oct 25 16:51:09 UTC 2023 Modified Files: pkgsrc/devel/hs-data-array-byte: Makefile PLIST Log Message: devel/hs-data-array-byte: Fix build with GHC 9.6 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/hs-data-array-byte/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/hs-data-array-byte/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1698252669285420 Content-Disposition: inline Content-Length: 1567 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-data-array-byte/Makefile diff -u pkgsrc/devel/hs-data-array-byte/Makefile:1.3 pkgsrc/devel/hs-data-array-byte/Makefile:1.4 --- pkgsrc/devel/hs-data-array-byte/Makefile:1.3 Mon Oct 9 04:54:10 2023 +++ pkgsrc/devel/hs-data-array-byte/Makefile Wed Oct 25 16:51:09 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2023/10/09 04:54:10 pho Exp $ +# $NetBSD: Makefile,v 1.4 2023/10/25 16:51:09 pho Exp $ DISTNAME= data-array-byte-0.1.0.1 PKGREVISION= 2 @@ -8,8 +8,9 @@ MAINTAINER= pho@cielonegro.org COMMENT= Compatibility layer for Data.Array.Byte LICENSE= modified-bsd -# NOTE: This package is only needed on GHC < 9.4. The lack of PLIST is -# intentional, as it becomes empty when it's built with GHC >= 9.4. +HASKELL_UNRESTRICT_DEPENDENCIES= \ + base \ + template-haskell .include "../../mk/haskell.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-data-array-byte/PLIST diff -u pkgsrc/devel/hs-data-array-byte/PLIST:1.1 pkgsrc/devel/hs-data-array-byte/PLIST:1.2 --- pkgsrc/devel/hs-data-array-byte/PLIST:1.1 Mon Oct 9 04:55:03 2023 +++ pkgsrc/devel/hs-data-array-byte/PLIST Wed Oct 25 16:51:09 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2023/10/09 04:55:03 pho Exp $ +@comment $NetBSD: PLIST,v 1.2 2023/10/25 16:51:09 pho Exp $ lib/data-array-byte-${PKGVERSION}/${HS_VERSION}/package-description lib/data-array-byte-${PKGVERSION}/${HS_VERSION}/package-id -${PLIST.doc}share/doc/${HS_PLATFORM}/data-array-byte-${PKGVERSION}/LICENSE +share/doc/${HS_PLATFORM}/data-array-byte-${PKGVERSION}/LICENSE --_----------=_1698252669285420--