Received: by mail.netbsd.org (Postfix, from userid 605) id D2BAD84D5E; Tue, 16 Oct 2018 09:44:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D6D6384CD6 for ; Tue, 16 Oct 2018 09:44:53 +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 4diymImAApAL for ; Tue, 16 Oct 2018 09:44:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9B3F384CD8 for ; Tue, 16 Oct 2018 09:44:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 27B6DFBEE; Tue, 16 Oct 2018 09:44:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1539683092235050" MIME-Version: 1.0 Date: Tue, 16 Oct 2018 09:44:52 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/py-twisted To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20181016094452.27B6DFBEE@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. --_----------=_1539683092235050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Oct 16 09:44:52 UTC 2018 Modified Files: pkgsrc/net/py-twisted: Makefile Makefile.common PLIST distinfo Log Message: py-twisted: updated to 18.9.0 Twisted 18.9.0: Features -------- twisted.internet._sslverify.ClientTLSOptions no longer raises IDNAError when given an IPv6 address as a hostname in a HTTPS URL. The repr() of a twisted.internet.base.DelayedCall now encodes the same information as its str(), exposing details of its scheduling and target callable. Python 3.7 is now supported. Bugfixes -------- twisted.logger.LogBeginner's default critical observer now prints tracebacks for new and legacy log system events through the use of the new eventAsText API. This API also does not raise an error for non-ascii encoded data in Python2, it attempts as well as possible to format the traceback. Syntax error under Python 3.7 fixed for twisted.conch.manhole and twisted.main.imap4. trial -j reports tracebacks on test failures under Python 3. Properly format multi-byte and non-ascii encoded data in a traceback. twisted.python.rebuild now functions on Python 3.7. HTTP/2 server connections will no longer time out active downloads that take too long. Improved Documentation ---------------------- Several minor formatting problems in the API documentation have been corrected. The documentation of twisted.internet.defer.Deferred.fromFuture() has been updated to reflect upstream changes. Deprecations and Removals ------------------------- async keyword argument is deprecated in twisted.conch.manhole (ManholeInterpreter.write and Manhole.add) and in twisted.main.imap4.IMAP4Server.sendUntaggedResponse, isAsync keyword argument is introduced instead. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/net/py-twisted/Makefile cvs rdiff -u -r1.41 -r1.42 pkgsrc/net/py-twisted/Makefile.common cvs rdiff -u -r1.30 -r1.31 pkgsrc/net/py-twisted/PLIST cvs rdiff -u -r1.36 -r1.37 pkgsrc/net/py-twisted/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1539683092235050 Content-Disposition: inline Content-Length: 4543 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/py-twisted/Makefile diff -u pkgsrc/net/py-twisted/Makefile:1.39 pkgsrc/net/py-twisted/Makefile:1.40 --- pkgsrc/net/py-twisted/Makefile:1.39 Wed Aug 22 09:46:06 2018 +++ pkgsrc/net/py-twisted/Makefile Tue Oct 16 09:44:51 2018 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.39 2018/08/22 09:46:06 wiz Exp $ +# $NetBSD: Makefile,v 1.40 2018/10/16 09:44:51 adam Exp $ PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} -PKGREVISION= 1 COMMENT= Framework for writing networked applications .include "../../net/py-twisted/Makefile.common" @@ -23,13 +22,6 @@ REPLACE_PYTHON+= src/twisted/python/test USE_LANGUAGES= c99 -.include "../../lang/python/pyversion.mk" -# Temporary fix for Python 3.7: omit files that do not compile -PLIST_VARS+= async -.if ${_PYTHON_VERSION} != "37" -PLIST.async= yes -.endif - post-install: cd ${DESTDIR}${PREFIX}/bin && \ for i in cftp ckeygen conch mailmail pyhtmlizer tkconch trial twist twistd; do \ Index: pkgsrc/net/py-twisted/Makefile.common diff -u pkgsrc/net/py-twisted/Makefile.common:1.41 pkgsrc/net/py-twisted/Makefile.common:1.42 --- pkgsrc/net/py-twisted/Makefile.common:1.41 Tue Jul 24 15:10:04 2018 +++ pkgsrc/net/py-twisted/Makefile.common Tue Oct 16 09:44:51 2018 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.common,v 1.41 2018/07/24 15:10:04 adam Exp $ +# $NetBSD: Makefile.common,v 1.42 2018/10/16 09:44:51 adam Exp $ # # used by net/py-twisted/Makefile # used by net/py-twisted-docs/Makefile -DISTNAME= Twisted-18.7.0 +DISTNAME= Twisted-18.9.0 CATEGORIES= net python MASTER_SITES= ${MASTER_SITE_PYPI:=T/Twisted/} EXTRACT_SUFX= .tar.bz2 @@ -12,5 +12,5 @@ MAINTAINER?= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.twistedmatrix.com/ LICENSE= mit -DISTINFO_FILE?= ${.CURDIR}/../py-twisted/distinfo -PATCHDIR?= ${.CURDIR}/../py-twisted/patches +DISTINFO_FILE?= ${.CURDIR}/../py-twisted/distinfo +PATCHDIR?= ${.CURDIR}/../py-twisted/patches Index: pkgsrc/net/py-twisted/PLIST diff -u pkgsrc/net/py-twisted/PLIST:1.30 pkgsrc/net/py-twisted/PLIST:1.31 --- pkgsrc/net/py-twisted/PLIST:1.30 Tue Jul 24 15:10:04 2018 +++ pkgsrc/net/py-twisted/PLIST Tue Oct 16 09:44:51 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.30 2018/07/24 15:10:04 adam Exp $ +@comment $NetBSD: PLIST,v 1.31 2018/10/16 09:44:51 adam Exp $ bin/cftp-${PYVERSSUFFIX} bin/ckeygen-${PYVERSSUFFIX} bin/conch-${PYVERSSUFFIX} @@ -193,8 +193,8 @@ ${PYSITELIB}/twisted/conch/ls.py ${PYSITELIB}/twisted/conch/ls.pyc ${PYSITELIB}/twisted/conch/ls.pyo ${PYSITELIB}/twisted/conch/manhole.py -${PLIST.async}${PYSITELIB}/twisted/conch/manhole.pyc -${PLIST.async}${PYSITELIB}/twisted/conch/manhole.pyo +${PYSITELIB}/twisted/conch/manhole.pyc +${PYSITELIB}/twisted/conch/manhole.pyo ${PYSITELIB}/twisted/conch/manhole_ssh.py ${PYSITELIB}/twisted/conch/manhole_ssh.pyc ${PYSITELIB}/twisted/conch/manhole_ssh.pyo @@ -906,8 +906,8 @@ ${PLIST.py2x}${PYSITELIB}/twisted/mail/b ${PLIST.py2x}${PYSITELIB}/twisted/mail/bounce.pyc ${PLIST.py2x}${PYSITELIB}/twisted/mail/bounce.pyo ${PYSITELIB}/twisted/mail/imap4.py -${PLIST.async}${PYSITELIB}/twisted/mail/imap4.pyc -${PLIST.async}${PYSITELIB}/twisted/mail/imap4.pyo +${PYSITELIB}/twisted/mail/imap4.pyc +${PYSITELIB}/twisted/mail/imap4.pyo ${PYSITELIB}/twisted/mail/interfaces.py ${PYSITELIB}/twisted/mail/interfaces.pyc ${PYSITELIB}/twisted/mail/interfaces.pyo Index: pkgsrc/net/py-twisted/distinfo diff -u pkgsrc/net/py-twisted/distinfo:1.36 pkgsrc/net/py-twisted/distinfo:1.37 --- pkgsrc/net/py-twisted/distinfo:1.36 Tue Jul 24 15:10:04 2018 +++ pkgsrc/net/py-twisted/distinfo Tue Oct 16 09:44:51 2018 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.36 2018/07/24 15:10:04 adam Exp $ +$NetBSD: distinfo,v 1.37 2018/10/16 09:44:51 adam Exp $ -SHA1 (Twisted-18.7.0.tar.bz2) = 949c75da0426ca139a3128fecb484eeb7513087e -RMD160 (Twisted-18.7.0.tar.bz2) = 97c7052cbad9d4a48eadccee974b5f19f4b3a64f -SHA512 (Twisted-18.7.0.tar.bz2) = feefa578bc1787648df07e4a53bd6fe29b43c4357472e4fba37526f075be9263e8c671b6781ce6ad3569c1b1666cb702efbee903f597714a749971695018f826 -Size (Twisted-18.7.0.tar.bz2) = 3063847 bytes +SHA1 (Twisted-18.9.0.tar.bz2) = 9dae1ef0978a4fad8d5143d782580553375adab5 +RMD160 (Twisted-18.9.0.tar.bz2) = 76c506213c00d48c381bf9d74ff917823b0a6227 +SHA512 (Twisted-18.9.0.tar.bz2) = a9878750f46207b8758f5407a0e4332d9e367bd3ed4e18001825982c3ba78c56372934e634f1866805b9b9bc452698ad36396285172b61cf84da0de5efa7cc29 +Size (Twisted-18.9.0.tar.bz2) = 3088398 bytes SHA1 (patch-src_twisted_python___setup.py) = 3c1a44f4249d545426d1a63ca09ffbd1761d1a3a --_----------=_1539683092235050--