Received: by mail.netbsd.org (Postfix, from userid 605) id A1B9784D88; Sat, 30 Sep 2017 21:52:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3586D84D78 for ; Sat, 30 Sep 2017 21:52:07 +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 vs54BrRoUANg for ; Sat, 30 Sep 2017 21:52:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 968AF84CE1 for ; Sat, 30 Sep 2017 21:52:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91E57FBC7; Sat, 30 Sep 2017 21:52:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150680832693910" MIME-Version: 1.0 Date: Sat, 30 Sep 2017 21:52:06 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/py-meinheld To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170930215206.91E57FBC7@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. --_----------=_150680832693910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Sep 30 21:52:06 UTC 2017 Modified Files: pkgsrc/www/py-meinheld: Makefile Log Message: py-meinheld: make py-gunicorn a build dependency. It is needed for the tests, but joerg says it's optional at runtime. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-meinheld/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150680832693910 Content-Disposition: inline Content-Length: 933 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-meinheld/Makefile diff -u pkgsrc/www/py-meinheld/Makefile:1.2 pkgsrc/www/py-meinheld/Makefile:1.3 --- pkgsrc/www/py-meinheld/Makefile:1.2 Sat Sep 30 12:51:57 2017 +++ pkgsrc/www/py-meinheld/Makefile Sat Sep 30 21:52:06 2017 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2017/09/30 12:51:57 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2017/09/30 21:52:06 wiz Exp $ DISTNAME= meinheld-0.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_PYPI:=m/meinheld/} @@ -11,7 +12,8 @@ COMMENT= Python WSGI HTTP server LICENSE= modified-bsd DEPENDS+= ${PYPKGPREFIX}-greenlet>=0.4.5<0.5:../../devel/py-greenlet -DEPENDS+= ${PYPKGPREFIX}-gunicorn-[0-9]*:../../www/py-gunicorn +# needed for tests, optional at runtime +BUILD_DEPENDS+= ${PYPKGPREFIX}-gunicorn-[0-9]*:../../www/py-gunicorn .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_150680832693910--