Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 8F8F17A210 for ; Mon, 20 Mar 2017 12:23:54 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3AE2B85637; Mon, 20 Mar 2017 12:23:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BDAC48562C for ; Mon, 20 Mar 2017 12:23:53 +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 zuErjWv4C9cx for ; Mon, 20 Mar 2017 12:23:53 +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 4FB48855D4 for ; Mon, 20 Mar 2017 12:23:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4CC6BFBE4; Mon, 20 Mar 2017 12:23:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1490012633257250" MIME-Version: 1.0 Date: Mon, 20 Mar 2017 12:23:53 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170320122353.4CC6BFBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1490012633257250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Mar 20 12:23:53 UTC 2017 Modified Files: pkgsrc/net/go-net: Makefile pkgsrc/security/go-crypto: Makefile Log Message: Mark go-net and go-crypto as BROKEN, since they DEPEND on each other. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/net/go-net/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/go-crypto/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1490012633257250 Content-Disposition: inline Content-Length: 1741 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/go-net/Makefile diff -u pkgsrc/net/go-net/Makefile:1.13 pkgsrc/net/go-net/Makefile:1.14 --- pkgsrc/net/go-net/Makefile:1.13 Thu Mar 16 19:14:19 2017 +++ pkgsrc/net/go-net/Makefile Mon Mar 20 12:23:53 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2017/03/16 19:14:19 bsiegert Exp $ +# $NetBSD: Makefile,v 1.14 2017/03/20 12:23:53 wiz Exp $ DISTNAME= go-net-20170308 CATEGORIES= net @@ -14,6 +14,8 @@ LICENSE= modified-bsd GO_SRCPATH= golang.org/x/net GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG}* +BROKEN= Depends on go-crypto, which depends on this package. + .include "../../mk/bsd.prefs.mk" PLIST_VARS+= notsunos @@ -25,6 +27,6 @@ PLIST.notsunos= yes .endif .include "../../textproc/go-text/buildlink3.mk" -.include "../../security/go-crypto/buildlink3.mk" +#.include "../../security/go-crypto/buildlink3.mk" .include "../../lang/go/go-package.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/go-crypto/Makefile diff -u pkgsrc/security/go-crypto/Makefile:1.7 pkgsrc/security/go-crypto/Makefile:1.8 --- pkgsrc/security/go-crypto/Makefile:1.7 Thu Mar 16 19:27:36 2017 +++ pkgsrc/security/go-crypto/Makefile Mon Mar 20 12:23:53 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2017/03/16 19:27:36 bsiegert Exp $ +# $NetBSD: Makefile,v 1.8 2017/03/20 12:23:53 wiz Exp $ DISTNAME= go-crypto-0.0.20170317 CATEGORIES= security @@ -15,6 +15,8 @@ WRKSRC= ${WRKDIR} GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG}* GO_SRCPATH= golang.org/x/crypto -.include "../../net/go-net/buildlink3.mk" +BROKEN= Depends on go-net, which depends on this package. + +#.include "../../net/go-net/buildlink3.mk" .include "../../lang/go/go-package.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1490012633257250--