Received: by mail.netbsd.org (Postfix, from userid 605) id BA82384E4E; Mon, 6 Jan 2020 11:51:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 42D6284DA0 for ; Mon, 6 Jan 2020 11:51:05 +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 l4YirJxUdInI for ; Mon, 6 Jan 2020 11:51:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C2D5884D9F for ; Mon, 6 Jan 2020 11:51:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C082EFA97; Mon, 6 Jan 2020 11:51:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578311464105020" MIME-Version: 1.0 Date: Mon, 6 Jan 2020 11:51:04 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/hs-uuid-types To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20200106115104.C082EFA97@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. --_----------=_1578311464105020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Mon Jan 6 11:51:04 UTC 2020 Modified Files: pkgsrc/devel/hs-uuid-types: Makefile buildlink3.mk Log Message: Add missing dependency on devel/hs-random To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/hs-uuid-types/Makefile \ pkgsrc/devel/hs-uuid-types/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578311464105020 Content-Disposition: inline Content-Length: 1484 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/hs-uuid-types/Makefile diff -u pkgsrc/devel/hs-uuid-types/Makefile:1.1 pkgsrc/devel/hs-uuid-types/Makefile:1.2 --- pkgsrc/devel/hs-uuid-types/Makefile:1.1 Wed Jan 1 02:08:38 2020 +++ pkgsrc/devel/hs-uuid-types/Makefile Mon Jan 6 11:51:04 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2020/01/01 02:08:38 pho Exp $ +# $NetBSD: Makefile,v 1.2 2020/01/06 11:51:04 pho Exp $ DISTNAME= uuid-types-1.0.3 CATEGORIES= devel @@ -9,5 +9,6 @@ LICENSE= modified-bsd .include "../../mk/haskell.mk" .include "../../devel/hs-hashable/buildlink3.mk" +.include "../../devel/hs-random/buildlink3.mk" .include "../../devel/hs-text/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/hs-uuid-types/buildlink3.mk diff -u pkgsrc/devel/hs-uuid-types/buildlink3.mk:1.1 pkgsrc/devel/hs-uuid-types/buildlink3.mk:1.2 --- pkgsrc/devel/hs-uuid-types/buildlink3.mk:1.1 Wed Jan 1 02:08:38 2020 +++ pkgsrc/devel/hs-uuid-types/buildlink3.mk Mon Jan 6 11:51:04 2020 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.1 2020/01/01 02:08:38 pho Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2020/01/06 11:51:04 pho Exp $ BUILDLINK_TREE+= hs-uuid-types @@ -10,6 +10,7 @@ BUILDLINK_ABI_DEPENDS.hs-uuid-types+= hs BUILDLINK_PKGSRCDIR.hs-uuid-types?= ../../devel/hs-uuid-types .include "../../devel/hs-hashable/buildlink3.mk" +.include "../../devel/hs-random/buildlink3.mk" .include "../../devel/hs-text/buildlink3.mk" .endif # HS_UUID_TYPES_BUILDLINK3_MK --_----------=_1578311464105020--