Received: by mail.netbsd.org (Postfix, from userid 605) id AB61084D7E; Sat, 14 Sep 2019 17:09:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 345A384CDF for ; Sat, 14 Sep 2019 17:09:12 +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 sDIEtgkA6DIA for ; Sat, 14 Sep 2019 17:09:11 +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 83D3B84D3B for ; Sat, 14 Sep 2019 17:09:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7DBDCFBF4; Sat, 14 Sep 2019 17:09:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156848095135190" MIME-Version: 1.0 Date: Sat, 14 Sep 2019 17:09:11 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/www/py-werkzeug-docs To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20190914170911.7DBDCFBF4@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. --_----------=_156848095135190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Sat Sep 14 17:09:11 UTC 2019 Modified Files: pkgsrc/www/py-werkzeug-docs: Makefile Log Message: py-werkzeug-docs: note py-werkzeug dependency Fix bulk builds by noting this depends on py-werkzeug. (While here, convert other BUILD_DEPENDS to TOOL_DEPENDS.) To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/www/py-werkzeug-docs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_156848095135190 Content-Disposition: inline Content-Length: 1184 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-werkzeug-docs/Makefile diff -u pkgsrc/www/py-werkzeug-docs/Makefile:1.11 pkgsrc/www/py-werkzeug-docs/Makefile:1.12 --- pkgsrc/www/py-werkzeug-docs/Makefile:1.11 Thu May 23 12:00:48 2019 +++ pkgsrc/www/py-werkzeug-docs/Makefile Sat Sep 14 17:09:11 2019 @@ -1,11 +1,12 @@ -# $NetBSD: Makefile,v 1.11 2019/05/23 12:00:48 adam Exp $ +# $NetBSD: Makefile,v 1.12 2019/09/14 17:09:11 gutteridge Exp $ PKGNAME= ${PYPKGPREFIX}-werkzeug-docs-${DISTNAME:C/[^-]*-//} COMMENT= Python WSGI Utility Library (HTML documentation) -BUILD_DEPENDS+= ${PYPKGPREFIX}-pallets-sphinx-themes-[0-9]*:../../textproc/py-pallets-sphinx-themes -BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx>=1.2.3nb1:../../textproc/py-sphinx -BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx-issues-[0-9]*:../../textproc/py-sphinx-issues +TOOL_DEPENDS+= ${PYPKGPREFIX}-pallets-sphinx-themes-[0-9]*:../../textproc/py-pallets-sphinx-themes +TOOL_DEPENDS+= ${PYPKGPREFIX}-sphinx>=1.2.3nb1:../../textproc/py-sphinx +TOOL_DEPENDS+= ${PYPKGPREFIX}-sphinx-issues-[0-9]*:../../textproc/py-sphinx-issues +TOOL_DEPENDS+= ${PYPKGPREFIX}-werkzeug-[0-9]*:../../www/py-werkzeug USE_TOOLS+= gmake NO_CONFIGURE= yes --_----------=_156848095135190--