Received: by mail.netbsd.org (Postfix, from userid 605) id BB47884D4D; Fri, 31 Aug 2018 09:51:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B22B784D26 for ; Fri, 31 Aug 2018 09:51:08 +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 uFoKe-g3TEMM for ; Fri, 31 Aug 2018 09:51:07 +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 1BD2284C81 for ; Fri, 31 Aug 2018 09:51:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 14A36FBF8; Fri, 31 Aug 2018 09:51:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1535709067246010" MIME-Version: 1.0 Date: Fri, 31 Aug 2018 09:51:07 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-tornado To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180831095107.14A36FBF8@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. --_----------=_1535709067246010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Aug 31 09:51:06 UTC 2018 Modified Files: pkgsrc/www/py-tornado: Makefile PLIST distinfo Log Message: py-tornado: updated to 5.1 What's new in Tornado 5.1 Deprecation notice - Tornado 6.0 will drop support for Python 2.7 and 3.4. The minimum supported Python version will be 3.5.2. - The tornado.stack_context module is deprecated and will be removed in Tornado 6.0. The reason for this is that it is not feasible to provide this module's semantics in the presence of async def native coroutines. .ExceptionStackContext is mainly obsolete thanks to coroutines. .StackContext lacks a direct replacement although the new contextvars package (in the Python standard library beginning in Python 3.7) may be an alternative. - Callback-oriented code often relies on .ExceptionStackContext to handle errors and prevent leaked connections. In order to avoid the risk of silently introducing subtle leaks (and to consolidate all of Tornado's interfaces behind the coroutine pattern), callback arguments throughout the package are deprecated and will be removed in version 6.0. All functions that had a callback argument removed now return a .Future which should be used instead. - Where possible, deprecation warnings are emitted when any of these deprecated interfaces is used. However, Python does not display deprecation warnings by default. To prepare your application for Tornado 6.0, run Python with the -Wd argument or set the environment variable PYTHONWARNINGS to d. If your application runs on Python 3 without deprecation warnings, it should be able to move to Tornado 6.0 without disruption. tornado.auth - .OAuthMixin._oauth_get_user_future may now be a native coroutine. - All callback arguments in this package are deprecated and will be removed in 6.0. Use the coroutine interfaces instead. - The OAuthMixin._oauth_get_user method is deprecated and will be removed in 6.0. Override ~.OAuthMixin._oauth_get_user_future instead. tornado.autoreload - The command-line autoreload wrapper is now preserved if an internal autoreload fires. - The command-line wrapper no longer starts duplicated processes on windows when combined with internal autoreload. tornado.concurrent - .run_on_executor now returns .Future objects that are compatible with await. - The callback argument to .run_on_executor is deprecated and will be removed in 6.0. - .return_future is deprecated and will be removed in 6.0. tornado.gen - Some older portions of this module are deprecated and will be removed in 6.0. This includes .engine, .YieldPoint, .Callback, .Wait, .WaitAll, .MultiYieldPoint, and .Task. - Functions decorated with @gen.coroutine will no longer accept callback arguments in 6.0. tornado.httpclient - The behavior of raise_error=False is changing in 6.0. Currently it suppresses all errors; in 6.0 it will only suppress the errors raised due to completed responses with non-200 status codes. - The callback argument to .AsyncHTTPClient.fetch is deprecated and will be removed in 6.0. - tornado.httpclient.HTTPError has been renamed to .HTTPClientError to avoid ambiguity in code that also has to deal with tornado.web.HTTPError. The old name remains as an alias. - tornado.curl_httpclient now supports non-ASCII characters in username and password arguments. - .HTTPResponse.request_time now behaves consistently across simple_httpclient and curl_httpclient, excluding time spent in the max_clients queue in both cases (previously this time was included in simple_httpclient but excluded in curl_httpclient). In both cases the time is now computed using a monotonic clock where available. - .HTTPResponse now has a start_time attribute recording a wall-clock (time.time) timestamp at which the request started (after leaving the max_clients queue if applicable). tornado.httputil - .parse_multipart_form_data now recognizes non-ASCII filenames in RFC 2231/5987 (filename*=) format. - .HTTPServerRequest.write is deprecated and will be removed in 6.0. Use the methods of request.connection instead. - Malformed HTTP headers are now logged less noisily. tornado.ioloop - .PeriodicCallback now supports a jitter argument to randomly vary the timeout. - .IOLoop.set_blocking_signal_threshold, ~.IOLoop.set_blocking_log_threshold, ~.IOLoop.log_stack, and .IOLoop.handle_callback_exception are deprecated and will be removed in 6.0. - Fixed a KeyError in .IOLoop.close when .IOLoop objects are being opened and closed in multiple threads. tornado.iostream - All callback arguments in this module are deprecated except for .BaseIOStream.set_close_callback. They will be removed in 6.0. - streaming_callback arguments to .BaseIOStream.read_bytes and .BaseIOStream.read_until_close are deprecated and will be removed in 6.0. tornado.netutil - Improved compatibility with GNU Hurd. tornado.options - tornado.options.parse_config_file now allows setting options to strings (which will be parsed the same way as tornado.options.parse_command_line) in addition to the specified type for the option. tornado.platform.twisted - .TornadoReactor and .TwistedIOLoop are deprecated and will be removed in 6.0. Instead, Tornado will always use the asyncio event loop and twisted can be configured to do so as well. tornado.stack_context - The tornado.stack_context module is deprecated and will be removed in 6.0. tornado.testing - .AsyncHTTPTestCase.fetch now takes a raise_error argument. This argument has the same semantics as .AsyncHTTPClient.fetch, but defaults to false because tests often need to deal with non-200 responses (and for backwards-compatibility). - The .AsyncTestCase.stop and .AsyncTestCase.wait methods are deprecated. tornado.web - New method .RequestHandler.detach can be used from methods that are not decorated with @asynchronous (the decorator was required to use self.request.connection.detach(). - .RequestHandler.finish and .RequestHandler.render now return Futures that can be used to wait for the last part of the response to be sent to the client. - .FallbackHandler now calls on_finish for the benefit of subclasses that may have overridden it. - The .asynchronous decorator is deprecated and will be removed in 6.0. - The callback argument to .RequestHandler.flush is deprecated and will be removed in 6.0. tornado.websocket - When compression is enabled, memory limits now apply to the post-decompression size of the data, protecting against DoS attacks. - .websocket_connect now supports subprotocols. - .WebSocketHandler and .WebSocketClientConnection now have selected_subprotocol attributes to see the subprotocol in use. - The .WebSocketHandler.select_subprotocol method is now called with an empty list instead of a list containing an empty string if no subprotocols were requested by the client. - .WebSocketHandler.open may now be a coroutine. - The data argument to .WebSocketHandler.ping is now optional. - Client-side websocket connections no longer buffer more than one message in memory at a time. - Exception logging now uses .RequestHandler.log_exception. tornado.wsgi - .WSGIApplication and .WSGIAdapter are deprecated and will be removed in Tornado 6.0. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/www/py-tornado/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/www/py-tornado/PLIST cvs rdiff -u -r1.17 -r1.18 pkgsrc/www/py-tornado/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1535709067246010 Content-Disposition: inline Content-Length: 3015 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-tornado/Makefile diff -u pkgsrc/www/py-tornado/Makefile:1.25 pkgsrc/www/py-tornado/Makefile:1.26 --- pkgsrc/www/py-tornado/Makefile:1.25 Thu Jan 11 07:32:05 2018 +++ pkgsrc/www/py-tornado/Makefile Fri Aug 31 09:51:06 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2018/01/11 07:32:05 adam Exp $ +# $NetBSD: Makefile,v 1.26 2018/08/31 09:51:06 adam Exp $ -DISTNAME= tornado-4.5.3 +DISTNAME= tornado-5.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=t/tornado/} Index: pkgsrc/www/py-tornado/PLIST diff -u pkgsrc/www/py-tornado/PLIST:1.14 pkgsrc/www/py-tornado/PLIST:1.15 --- pkgsrc/www/py-tornado/PLIST:1.14 Thu May 4 09:50:21 2017 +++ pkgsrc/www/py-tornado/PLIST Fri Aug 31 09:51:06 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.14 2017/05/04 09:50:21 adam Exp $ +@comment $NetBSD: PLIST,v 1.15 2018/08/31 09:51:06 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -134,6 +134,9 @@ ${PYSITELIB}/tornado/test/asyncio_test.p ${PYSITELIB}/tornado/test/auth_test.py ${PYSITELIB}/tornado/test/auth_test.pyc ${PYSITELIB}/tornado/test/auth_test.pyo +${PYSITELIB}/tornado/test/autoreload_test.py +${PYSITELIB}/tornado/test/autoreload_test.pyc +${PYSITELIB}/tornado/test/autoreload_test.pyo ${PYSITELIB}/tornado/test/concurrent_test.py ${PYSITELIB}/tornado/test/concurrent_test.pyc ${PYSITELIB}/tornado/test/concurrent_test.pyo @@ -186,6 +189,8 @@ ${PYSITELIB}/tornado/test/options_test.c ${PYSITELIB}/tornado/test/options_test.py ${PYSITELIB}/tornado/test/options_test.pyc ${PYSITELIB}/tornado/test/options_test.pyo +${PYSITELIB}/tornado/test/options_test_types.cfg +${PYSITELIB}/tornado/test/options_test_types_str.cfg ${PYSITELIB}/tornado/test/process_test.py ${PYSITELIB}/tornado/test/process_test.pyc ${PYSITELIB}/tornado/test/process_test.pyo Index: pkgsrc/www/py-tornado/distinfo diff -u pkgsrc/www/py-tornado/distinfo:1.17 pkgsrc/www/py-tornado/distinfo:1.18 --- pkgsrc/www/py-tornado/distinfo:1.17 Thu Jan 11 07:32:05 2018 +++ pkgsrc/www/py-tornado/distinfo Fri Aug 31 09:51:06 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.17 2018/01/11 07:32:05 adam Exp $ +$NetBSD: distinfo,v 1.18 2018/08/31 09:51:06 adam Exp $ -SHA1 (tornado-4.5.3.tar.gz) = 2c0edb9d83d0c0fa13b377f3124e561142cdfdef -RMD160 (tornado-4.5.3.tar.gz) = d571144ccd6c6abb208fc8af57cc787db4da478f -SHA512 (tornado-4.5.3.tar.gz) = c17dd7a3b541c26950d27c8a399ae4fdff1d99d16ff0c5de9871fe2de4c0f797c96712b23b5ed5efdaee06bb251f7def114c83fe6f7f37f344cdac9996d14448 -Size (tornado-4.5.3.tar.gz) = 484221 bytes +SHA1 (tornado-5.1.tar.gz) = 8369c3321bce73f79bba4cf18a6416649d168cc4 +RMD160 (tornado-5.1.tar.gz) = 3b5f38b90d5239c656f6f2eccfe3da7bf0f990be +SHA512 (tornado-5.1.tar.gz) = 8f45e5bbee5453a4225f05840a9fa80dd574c5a9cac9ec4d787f11c3f86f347c66d39c984a8bbe96dbb41f599e25102f1a3dad1c55b479bebee7d856aaca764a +Size (tornado-5.1.tar.gz) = 516359 bytes --_----------=_1535709067246010--