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 CA71C7A220 for ; Tue, 14 Mar 2017 13:48:24 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 77BB0855AF; Tue, 14 Mar 2017 13:48:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0718085586 for ; Tue, 14 Mar 2017 13:48:24 +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 Q2-T53WFzcCz for ; Tue, 14 Mar 2017 13:48:23 +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 E2E3384CFB for ; Tue, 14 Mar 2017 13:48:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DD441FBE4; Tue, 14 Mar 2017 13:48:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1489499302177260" MIME-Version: 1.0 Date: Tue, 14 Mar 2017 13:48:22 +0000 From: "Klaus Klein" Subject: CVS commit: pkgsrc/www/py-werkzeug To: pkgsrc-changes@NetBSD.org Reply-To: kleink@netbsd.org X-Mailer: log_accum Message-Id: <20170314134822.DD441FBE4@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. --_----------=_1489499302177260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kleink Date: Tue Mar 14 13:48:22 UTC 2017 Modified Files: pkgsrc/www/py-werkzeug: Makefile.common PLIST distinfo Log Message: Update py-werkzeug and py-werkzeug-docs to 0.12. Version 0.12 ------------ Released on March 10th 2017 - Spit out big deprecation warnings for werkzeug.script - Use `inspect.getfullargspec` internally when available as `inspect.getargspec` is gone in 3.6 - Added support for status code 451 and 423 - Improved the build error suggestions. In particular only if someone stringifies the error will the suggestions be calculated. - Added support for uWSGI's caching backend. - Fix a bug where iterating over a `FileStorage` would result in an infinite loop. - Datastructures now inherit from the relevant baseclasses from the `collections` module in the stdlib. See #794. - Add support for recognizing NetBSD, OpenBSD, FreeBSD, DragonFlyBSD platforms in the user agent string. - Recognize SeaMonkey browser name and version correctly - Recognize Baiduspider, and bingbot user agents - If `LocalProxy`'s wrapped object is a function, refer to it with __wrapped__ attribute. - The defaults of ``generate_password_hash`` have been changed to more secure ones, see pull request ``#753``. - Add support for encoding in options header parsing, see pull request ``#933``. - ``test.Client`` now properly handles Location headers with relative URLs, see pull request ``#879``. - When `HTTPException` is raised, it now prints the description, for easier debugging. - Werkzeug's dict-like datastructures now have ``view``-methods under Python 2, see pull request ``#968``. - Fix a bug in ``MultiPartParser`` when no ``stream_factory`` was provided during initialization, see pull request ``#973``. - Disable autocorrect and spellchecker in the debugger middleware's Python prompt, see pull request ``#994``. - Don't redirect to slash route when method doesn't match, see pull request ``#907``. - Fix a bug when using ``SharedDataMiddleware`` with frozen packages, see pull request ``#959``. - `Range` header parsing function fixed for invalid values ``#974``. - Add support for byte Range Requests, see pull request ``#978``. - Use modern cryptographic defaults in the dev servers ``#1004``. - the post() method of the test client now accept file object through the data parameter. - Color run_simple's terminal output based on HTTP codes ``#1013``. - Fix self-XSS in debugger console, see ``#1031``. - Fix IPython 5.x shell support, see ``#1033``. Version 0.11.16 --------------- - werkzeug.serving: set CONTENT_TYPE / CONTENT_LENGTH if only they're provided by the client - werkzeug.serving: Fix crash of reloader when using `python -m werkzeug.serving`. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/www/py-werkzeug/Makefile.common cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-werkzeug/PLIST cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/py-werkzeug/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1489499302177260 Content-Disposition: inline Content-Length: 2504 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-werkzeug/Makefile.common diff -u pkgsrc/www/py-werkzeug/Makefile.common:1.16 pkgsrc/www/py-werkzeug/Makefile.common:1.17 --- pkgsrc/www/py-werkzeug/Makefile.common:1.16 Fri Jan 20 19:02:32 2017 +++ pkgsrc/www/py-werkzeug/Makefile.common Tue Mar 14 13:48:22 2017 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.common,v 1.16 2017/01/20 19:02:32 kleink Exp $ +# $NetBSD: Makefile.common,v 1.17 2017/03/14 13:48:22 kleink Exp $ # used by www/py-werkzeug/Makefile # used by www/py-werkzeug-docs/Makefile -DISTNAME= Werkzeug-0.11.15 +DISTNAME= Werkzeug-0.12 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_GITHUB:=pallets/} GITHUB_PROJECT=${DISTNAME:tl:C/-[^-]*$//} Index: pkgsrc/www/py-werkzeug/PLIST diff -u pkgsrc/www/py-werkzeug/PLIST:1.5 pkgsrc/www/py-werkzeug/PLIST:1.6 --- pkgsrc/www/py-werkzeug/PLIST:1.5 Sun Nov 15 03:42:42 2015 +++ pkgsrc/www/py-werkzeug/PLIST Tue Mar 14 13:48:22 2017 @@ -1,8 +1,9 @@ -@comment $NetBSD: PLIST,v 1.5 2015/11/15 03:42:42 wen Exp $ +@comment $NetBSD: PLIST,v 1.6 2017/03/14 13:48:22 kleink Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/werkzeug/__init__.py ${PYSITELIB}/werkzeug/__init__.pyc Index: pkgsrc/www/py-werkzeug/distinfo diff -u pkgsrc/www/py-werkzeug/distinfo:1.15 pkgsrc/www/py-werkzeug/distinfo:1.16 --- pkgsrc/www/py-werkzeug/distinfo:1.15 Fri Jan 20 19:02:32 2017 +++ pkgsrc/www/py-werkzeug/distinfo Tue Mar 14 13:48:22 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2017/01/20 19:02:32 kleink Exp $ +$NetBSD: distinfo,v 1.16 2017/03/14 13:48:22 kleink Exp $ -SHA1 (Werkzeug-0.11.15.tar.gz) = 95e884bac159df1a3d4b762b5e20136c23e8cc4c -RMD160 (Werkzeug-0.11.15.tar.gz) = 8dce7136b06de9c2850d3f60f6c9aa943f83a78b -SHA512 (Werkzeug-0.11.15.tar.gz) = afad585330cfe57587c66f62d1881cb05400d2a77091149a040dc07d2d61e957fe0eaa53b7b906bb02e18b211be8701aa46cf32e7930fad5772c44c79901810b -Size (Werkzeug-0.11.15.tar.gz) = 1171456 bytes +SHA1 (Werkzeug-0.12.tar.gz) = f48c6c8e6c39d98463630758d787ab70a273d208 +RMD160 (Werkzeug-0.12.tar.gz) = 4f0212865665ab78ae309bdab8f170e2e0aecb0d +SHA512 (Werkzeug-0.12.tar.gz) = 1d0ff9cbce389e9db3943fbf5c148a449963254950e97cdc93a6f10e1c811c0cbb9c1cebdbc5eb424c49518e15d4c181bc5114e72f426f27b67c6fb0ba49cdaa +Size (Werkzeug-0.12.tar.gz) = 1182644 bytes --_----------=_1489499302177260--