Received: by mail.netbsd.org (Postfix, from userid 605) id 23D4084F03; Thu, 8 Sep 2022 04:46:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5E03484F00 for ; Thu, 8 Sep 2022 04:46:42 +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 9fnYUnFpXe4d for ; Thu, 8 Sep 2022 04:46:41 +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 C561384CE3 for ; Thu, 8 Sep 2022 04:46:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C2AAFFA90; Thu, 8 Sep 2022 04:46:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1662612401285850" MIME-Version: 1.0 Date: Thu, 8 Sep 2022 04:46:41 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/lang/purescript To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20220908044641.C2AAFFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1662612401285850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Thu Sep 8 04:46:41 UTC 2022 Modified Files: pkgsrc/lang/purescript: Makefile Log Message: lang/purescript/Makefile: Make use of HASKELL_UNRESTRICTED_DEPENDENCIES To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/purescript/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1662612401285850 Content-Disposition: inline Content-Length: 2420 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/purescript/Makefile diff -u pkgsrc/lang/purescript/Makefile:1.7 pkgsrc/lang/purescript/Makefile:1.8 --- pkgsrc/lang/purescript/Makefile:1.7 Wed Sep 7 06:50:53 2022 +++ pkgsrc/lang/purescript/Makefile Thu Sep 8 04:46:41 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2022/09/07 06:50:53 pho Exp $ +# $NetBSD: Makefile,v 1.8 2022/09/08 04:46:41 pho Exp $ DISTNAME= purescript-0.15.4 PKGNAME= ${DISTNAME} @@ -25,33 +25,31 @@ HASKELL_ENABLE_SHARED_LIBRARY= no # isn't meant to be used as a library. HASKELL_ENABLE_LIBRARY_PROFILING= no +# These constraints can only be solved with GHC 9.2.3 which we haven't +# packaged yet. +HASKELL_UNRESTRICT_DEPENDENCIES+= \ + Cabal \ + base \ + bytestring \ + deepseq \ + filepath \ + parsec \ + stm \ + process +# These constraints can only be solved with older packages than what we +# provide. +HASKELL_UNRESTRICT_DEPENDENCIES+= \ + aeson \ + language-javascript \ + lens \ + memory \ + vector + # purs is built with optparse-applicative, and can generate shell # completion scripts automatically. OPTPARSE_APPLICATIVE_EXECUTABLES+= purs .include "../../devel/hs-optparse-applicative/application.mk" -# Relax version constraints. -SUBST_CLASSES+= cabal -SUBST_STAGE.cabal= post-extract -SUBST_FILES.cabal= purescript.cabal -# These constraints can only be resolved with GHC 9.2.3 which we haven't -# packaged yet. -SUBST_SED.cabal+= -e 's/Cabal >=3.6.3.0 && <3.7/Cabal/' -SUBST_SED.cabal+= -e 's/base >=4.16.2.0 && <4.17/base/' -SUBST_SED.cabal+= -e 's/bytestring >=0.11.3.1 && <0.12/bytestring/' -SUBST_SED.cabal+= -e 's/deepseq >=1.4.6.1 && <1.5/deepseq/' -SUBST_SED.cabal+= -e 's/filepath >=1.4.2.2 && <1.5/filepath/' -SUBST_SED.cabal+= -e 's/parsec >=3.1.15.0 && <3.2/parsec/' -SUBST_SED.cabal+= -e 's/stm >=2.5.0.2 && <2.6/stm/' -SUBST_SED.cabal+= -e 's/process ==1.6.13.1/process/' -# These constraints can only be resolved with older packages than what we -# provide. -SUBST_SED.cabal+= -e 's/aeson >=2.0.3.0 && <2.1/aeson/' -SUBST_SED.cabal+= -e 's/language-javascript ==0.7.0.0/language-javascript/' -SUBST_SED.cabal+= -e 's/lens >=5.1.1 && <5.2/lens/' -SUBST_SED.cabal+= -e 's/memory >=0.17.0 && <0.18/memory/' -SUBST_SED.cabal+= -e 's/vector >=0.12.3.1 && <0.13/vector/' - # lib:purescript .include "../../converters/hs-aeson/buildlink3.mk" .include "../../converters/hs-aeson-better-errors/buildlink3.mk" --_----------=_1662612401285850--