Received: by mail.netbsd.org (Postfix, from userid 605) id 8612284D40; Fri, 11 Oct 2019 16:29:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0769284D40 for ; Fri, 11 Oct 2019 16:29:18 +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 vabHcSY77SXQ for ; Fri, 11 Oct 2019 16:29:17 +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 5EB7384CDC for ; Fri, 11 Oct 2019 16:29:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 55F08FBF4; Fri, 11 Oct 2019 16:29:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157081135719390" MIME-Version: 1.0 Date: Fri, 11 Oct 2019 16:29:17 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-werkzeug To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191011162917.55F08FBF4@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. --_----------=_157081135719390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Fri Oct 11 16:29:17 UTC 2019 Modified Files: pkgsrc/www/py-werkzeug: Makefile Makefile.common distinfo Log Message: py-werkzeug: updated to 0.16.0 Version 0.16.0 Deprecate most top-level attributes provided by the werkzeug module in favor of direct imports. The deprecated imports will be removed in version 1.0. For example, instead of import werkzeug; werkzeug.url_quote, do from werkzeug.urls import url_quote. A deprecation warning will show the correct import to use. werkzeug.exceptions and werkzeug.routing should also be imported instead of accessed, but for technical reasons can’t show a warning. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/py-werkzeug/Makefile cvs rdiff -u -r1.23 -r1.24 pkgsrc/www/py-werkzeug/Makefile.common cvs rdiff -u -r1.22 -r1.23 pkgsrc/www/py-werkzeug/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157081135719390 Content-Disposition: inline Content-Length: 2978 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-werkzeug/Makefile diff -u pkgsrc/www/py-werkzeug/Makefile:1.15 pkgsrc/www/py-werkzeug/Makefile:1.16 --- pkgsrc/www/py-werkzeug/Makefile:1.15 Thu May 23 12:00:48 2019 +++ pkgsrc/www/py-werkzeug/Makefile Fri Oct 11 16:29:17 2019 @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.15 2019/05/23 12:00:48 adam Exp $ +# $NetBSD: Makefile,v 1.16 2019/10/11 16:29:17 adam Exp $ PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} COMMENT= Python WSGI Utility Library TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner REPLACE_PYTHON= examples/cookieauth.py REPLACE_PYTHON+= examples/manage-coolmagic.py @@ -19,6 +20,8 @@ REPLACE_PYTHON+= examples/upload.py REPLACE_PYTHON+= examples/contrib/sessions.py REPLACE_PYTHON+= tests/multipart/test_collect.py +PYSETUPTESTTARGET= pytest + EGDIR= share/examples/${PKGBASE} PLIST_SUBST+= EGDIR=${EGDIR} @@ -40,9 +43,6 @@ post-install: ${CHMOD} ${SHAREMODE} ${DESTDIR}${PREFIX}/${EGDIR}/cupoftee/shared/${i} .endfor -do-test: - cd ${WRKSRC}/tests && pytest-${PYVERSSUFFIX} - .include "../../www/py-werkzeug/Makefile.common" .include "../../lang/python/application.mk" Index: pkgsrc/www/py-werkzeug/Makefile.common diff -u pkgsrc/www/py-werkzeug/Makefile.common:1.23 pkgsrc/www/py-werkzeug/Makefile.common:1.24 --- pkgsrc/www/py-werkzeug/Makefile.common:1.23 Sat Sep 7 07:25:03 2019 +++ pkgsrc/www/py-werkzeug/Makefile.common Fri Oct 11 16:29:17 2019 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.common,v 1.23 2019/09/07 07:25:03 adam Exp $ +# $NetBSD: Makefile.common,v 1.24 2019/10/11 16:29:17 adam Exp $ # used by www/py-werkzeug/Makefile # used by www/py-werkzeug-docs/Makefile -DISTNAME= Werkzeug-0.15.6 +DISTNAME= Werkzeug-0.16.0 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=W/Werkzeug/} Index: pkgsrc/www/py-werkzeug/distinfo diff -u pkgsrc/www/py-werkzeug/distinfo:1.22 pkgsrc/www/py-werkzeug/distinfo:1.23 --- pkgsrc/www/py-werkzeug/distinfo:1.22 Sat Sep 7 07:25:03 2019 +++ pkgsrc/www/py-werkzeug/distinfo Fri Oct 11 16:29:17 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.22 2019/09/07 07:25:03 adam Exp $ +$NetBSD: distinfo,v 1.23 2019/10/11 16:29:17 adam Exp $ -SHA1 (Werkzeug-0.15.6.tar.gz) = 4de3d851244c824bac509861d85cf243167c22aa -RMD160 (Werkzeug-0.15.6.tar.gz) = 80bfcf620425e4e7bb9787d30123eb64c7e3501b -SHA512 (Werkzeug-0.15.6.tar.gz) = 5530002c3da348cdc6bc8954d499338ca3730d46221b0ce93feffa03fa7188ca9458a5102dcf90592b35004583b7a06af70f3d8ce7ff35515506366f327c68af -Size (Werkzeug-0.15.6.tar.gz) = 926705 bytes +SHA1 (Werkzeug-0.16.0.tar.gz) = d422fb58b25098bc5f1c73705a2112daef7bf3d8 +RMD160 (Werkzeug-0.16.0.tar.gz) = f6201a8dd0110666e4e51cabd38855323b5ee7c7 +SHA512 (Werkzeug-0.16.0.tar.gz) = cf36674621b9127824c2a1be60361f48138fd6dd80ae67feb450b5feef4177c57d0ffb1fe211bbd06e1689692547c32900abe468fb33e413b7b7c6e22af0463f +Size (Werkzeug-0.16.0.tar.gz) = 925717 bytes --_----------=_157081135719390--