Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 71ECC84E55 for ; Wed, 6 Sep 2023 11:50:02 +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 JODBy7oJGnzq for ; Wed, 6 Sep 2023 11:50:02 +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 C054B84D13 for ; Wed, 6 Sep 2023 11:50:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BDCC3FBDB; Wed, 6 Sep 2023 11:50:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169400100191110" MIME-Version: 1.0 Date: Wed, 6 Sep 2023 11:50:01 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/py-httpbin To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230906115001.BDCC3FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169400100191110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Sep 6 11:50:01 UTC 2023 Modified Files: pkgsrc/www/py-httpbin: Makefile Log Message: py-httpbin: fix spelling of TOOL_DEPENDS, fixing the build To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/www/py-httpbin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169400100191110 Content-Disposition: inline Content-Length: 1064 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-httpbin/Makefile diff -u pkgsrc/www/py-httpbin/Makefile:1.14 pkgsrc/www/py-httpbin/Makefile:1.15 --- pkgsrc/www/py-httpbin/Makefile:1.14 Tue Aug 29 06:48:32 2023 +++ pkgsrc/www/py-httpbin/Makefile Wed Sep 6 11:50:01 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2023/08/29 06:48:32 adam Exp $ +# $NetBSD: Makefile,v 1.15 2023/09/06 11:50:01 wiz Exp $ DISTNAME= httpbin-0.10.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -10,8 +10,8 @@ HOMEPAGE= https://github.com/psf/httpbin COMMENT= HTTP Request and Response Service LICENSE= mit -TOOLDEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools -TOOLDEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-brotlicffi-[0-9]*:../../archivers/py-brotlicffi DEPENDS+= ${PYPKGPREFIX}-decorator-[0-9]*:../../devel/py-decorator DEPENDS+= ${PYPKGPREFIX}-greenlet-[0-9]*:../../devel/py-greenlet --_----------=_169400100191110--