Received: by mail.netbsd.org (Postfix, from userid 605) id 1AD7484EB1; Thu, 26 Jan 2023 03:26:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4CD7284E5F for ; Thu, 26 Jan 2023 03:26:35 +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 MAweaJeg1Ebc for ; Thu, 26 Jan 2023 03:26:34 +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 C22BB84C13 for ; Thu, 26 Jan 2023 03:26:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BBCC1FA90; Thu, 26 Jan 2023 03:26:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1674703594201450" MIME-Version: 1.0 Date: Thu, 26 Jan 2023 03:26:34 +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: <20230126032634.BBCC1FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1674703594201450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Thu Jan 26 03:26:34 UTC 2023 Modified Files: pkgsrc/devel/hs-hashable: Makefile buildlink3.mk Log Message: devel/hs-hashable: Fix build with GHC 9.2 To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/hs-hashable/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/hs-hashable/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1674703594201450 Content-Disposition: inline Content-Length: 1548 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.22 pkgsrc/devel/hs-hashable/Makefile:1.23 --- pkgsrc/devel/hs-hashable/Makefile:1.22 Wed Jan 25 09:24:45 2023 +++ pkgsrc/devel/hs-hashable/Makefile Thu Jan 26 03:26:34 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2023/01/25 09:24:45 pho Exp $ +# $NetBSD: Makefile,v 1.23 2023/01/26 03:26:34 pho Exp $ DISTNAME= hashable-1.4.2.0 CATEGORIES= devel @@ -7,5 +7,6 @@ MAINTAINER= pho@cielonegro.org COMMENT= Class for types that can be converted to a hash value LICENSE= modified-bsd +.include "../../devel/hs-data-array-byte/buildlink3.mk" # Only required on GHC < 9.4 .include "../../mk/haskell.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-hashable/buildlink3.mk diff -u pkgsrc/devel/hs-hashable/buildlink3.mk:1.19 pkgsrc/devel/hs-hashable/buildlink3.mk:1.20 --- pkgsrc/devel/hs-hashable/buildlink3.mk:1.19 Wed Jan 25 09:24:45 2023 +++ pkgsrc/devel/hs-hashable/buildlink3.mk Thu Jan 26 03:26:34 2023 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.19 2023/01/25 09:24:45 pho Exp $ +# $NetBSD: buildlink3.mk,v 1.20 2023/01/26 03:26:34 pho Exp $ BUILDLINK_TREE+= hs-hashable @@ -8,6 +8,8 @@ HS_HASHABLE_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.hs-hashable+= hs-hashable>=1.4.2 BUILDLINK_ABI_DEPENDS.hs-hashable+= hs-hashable>=1.4.2.0 BUILDLINK_PKGSRCDIR.hs-hashable?= ../../devel/hs-hashable + +.include "../../devel/hs-data-array-byte/buildlink3.mk" .endif # HS_HASHABLE_BUILDLINK3_MK BUILDLINK_TREE+= -hs-hashable --_----------=_1674703594201450--