Received: by mail.netbsd.org (Postfix, from userid 605) id 7E61F84E77; Sat, 11 Jan 2020 08:36:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BA1B184EAA for ; Sat, 11 Jan 2020 08:32:25 +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 0O1jgdeQRSAc for ; Sat, 11 Jan 2020 08:32:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 42C0384E38 for ; Sat, 11 Jan 2020 08:32:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 40712FBF4; Sat, 11 Jan 2020 08:32:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578731545142680" MIME-Version: 1.0 Date: Sat, 11 Jan 2020 08:32:25 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-either To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20200111083225.40712FBF4@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. --_----------=_1578731545142680 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:32:25 UTC 2020 Modified Files: pkgsrc/devel/hs-either: Makefile buildlink3.mk Log Message: Remove dependency on devel/hs-mtl mtl is now a part of GHC. Also hs-semigroups is no longer required as of GHC 8. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/hs-either/Makefile \ pkgsrc/devel/hs-either/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578731545142680 Content-Disposition: inline Content-Length: 1822 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-either/Makefile diff -u pkgsrc/devel/hs-either/Makefile:1.1 pkgsrc/devel/hs-either/Makefile:1.2 --- pkgsrc/devel/hs-either/Makefile:1.1 Fri Jan 3 05:21:34 2020 +++ pkgsrc/devel/hs-either/Makefile Sat Jan 11 08:32:25 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2020/01/03 05:21:34 pho Exp $ +# $NetBSD: Makefile,v 1.2 2020/01/11 08:32:25 pho Exp $ DISTNAME= either-5.0.1.1 CATEGORIES= devel @@ -9,8 +9,6 @@ LICENSE= modified-bsd .include "../../mk/haskell.mk" .include "../../math/hs-bifunctors/buildlink3.mk" -.include "../../devel/hs-mtl/buildlink3.mk" .include "../../math/hs-profunctors/buildlink3.mk" .include "../../math/hs-semigroupoids/buildlink3.mk" -.include "../../math/hs-semigroups/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-either/buildlink3.mk diff -u pkgsrc/devel/hs-either/buildlink3.mk:1.1 pkgsrc/devel/hs-either/buildlink3.mk:1.2 --- pkgsrc/devel/hs-either/buildlink3.mk:1.1 Fri Jan 3 05:21:34 2020 +++ pkgsrc/devel/hs-either/buildlink3.mk Sat Jan 11 08:32:25 2020 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.1 2020/01/03 05:21:34 pho Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2020/01/11 08:32:25 pho Exp $ BUILDLINK_TREE+= hs-either @@ -7,13 +7,11 @@ HS_EITHER_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.hs-either+= hs-either>=5.0.1 BUILDLINK_ABI_DEPENDS.hs-either+= hs-either>=5.0.1.1 -BUILDLINK_PKGSRCDIR.hs-either?= ../../devel/hs-either +BUILDLINK_PKGSRCDIR.hs-either?= ../../devel/hs-either .include "../../math/hs-bifunctors/buildlink3.mk" -.include "../../devel/hs-mtl/buildlink3.mk" .include "../../math/hs-profunctors/buildlink3.mk" .include "../../math/hs-semigroupoids/buildlink3.mk" -.include "../../math/hs-semigroups/buildlink3.mk" .endif # HS_EITHER_BUILDLINK3_MK BUILDLINK_TREE+= -hs-either --_----------=_1578731545142680--