Received: by mail.netbsd.org (Postfix, from userid 605) id 3D1A184E35; Sat, 11 Jan 2020 08:36:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9274A84DE9 for ; Sat, 11 Jan 2020 08:15:59 +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 bKxbcA_yqEUz for ; Sat, 11 Jan 2020 08:15:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0C8DF84D50 for ; Sat, 11 Jan 2020 08:15:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0146EFBF4; Sat, 11 Jan 2020 08:15:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578730558292210" MIME-Version: 1.0 Date: Sat, 11 Jan 2020 08:15:58 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-hint To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20200111081559.0146EFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1578730558292210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Sat Jan 11 08:15:58 UTC 2020 Modified Files: pkgsrc/devel/hs-hint: Makefile buildlink3.mk Log Message: Update to hint-0.9.0.2 0.9.0.2 * Support GHC 8.8 * Drop support for GHC 8.2 0.9.0.1 * Make tests pass with stack 2.1.1 0.9.0 * Support GHC 8.6 * Drop support for GHC 8.0 0.8.0 * Support GHC 8.4 * Drop support for GHC 7.8 and 7.10 * Add runStmt to execute statements in the IO monad and bind new names * Internal changes of temporary files for phantom modules * The files are now called M.hs instead of * Improved cleanup of phantom module source files * ghc 8.4 only: phantom modules are put into a temporary directory * Add typeChecksWithDetails to obtain type-checking errors * Stop GHC from overwriting the Ctrl-C signal handler * Add SetImportsF to allow finer imports control To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/hs-hint/Makefile \ pkgsrc/devel/hs-hint/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578730558292210 Content-Disposition: inline Content-Length: 1757 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-hint/Makefile diff -u pkgsrc/devel/hs-hint/Makefile:1.5 pkgsrc/devel/hs-hint/Makefile:1.6 --- pkgsrc/devel/hs-hint/Makefile:1.5 Thu Jan 2 04:58:07 2020 +++ pkgsrc/devel/hs-hint/Makefile Sat Jan 11 08:15:58 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2020/01/02 04:58:07 pho Exp $ +# $NetBSD: Makefile,v 1.6 2020/01/11 08:15:58 pho Exp $ -DISTNAME= hint-0.7.0 +DISTNAME= hint-0.9.0.2 CATEGORIES= devel MAINTAINER= pho@cielonegro.org @@ -10,6 +10,5 @@ LICENSE= modified-bsd .include "../../mk/haskell.mk" .include "../../devel/hs-exceptions/buildlink3.mk" .include "../../devel/hs-ghc-paths/buildlink3.mk" -.include "../../devel/hs-mtl/buildlink3.mk" .include "../../devel/hs-random/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-hint/buildlink3.mk diff -u pkgsrc/devel/hs-hint/buildlink3.mk:1.5 pkgsrc/devel/hs-hint/buildlink3.mk:1.6 --- pkgsrc/devel/hs-hint/buildlink3.mk:1.5 Thu Jan 2 04:58:07 2020 +++ pkgsrc/devel/hs-hint/buildlink3.mk Sat Jan 11 08:15:58 2020 @@ -1,17 +1,16 @@ -# $NetBSD: buildlink3.mk,v 1.5 2020/01/02 04:58:07 pho Exp $ +# $NetBSD: buildlink3.mk,v 1.6 2020/01/11 08:15:58 pho Exp $ BUILDLINK_TREE+= hs-hint .if !defined(HS_HINT_BUILDLINK3_MK) HS_HINT_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.hs-hint+= hs-hint>=0.7.0 -BUILDLINK_ABI_DEPENDS.hs-hint+= hs-hint>=0.7.0 +BUILDLINK_API_DEPENDS.hs-hint+= hs-hint>=0.9.0 +BUILDLINK_ABI_DEPENDS.hs-hint+= hs-hint>=0.9.0.2 BUILDLINK_PKGSRCDIR.hs-hint?= ../../devel/hs-hint .include "../../devel/hs-exceptions/buildlink3.mk" .include "../../devel/hs-ghc-paths/buildlink3.mk" -.include "../../devel/hs-mtl/buildlink3.mk" .include "../../devel/hs-random/buildlink3.mk" .endif # HS_HINT_BUILDLINK3_MK --_----------=_1578730558292210--