Received: by mail.netbsd.org (Postfix, from userid 605) id A480184D70; Thu, 8 Feb 2018 08:27:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2DBA484D5E for ; Thu, 8 Feb 2018 08:27:00 +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 86Az1gO8uTl0 for ; Thu, 8 Feb 2018 08:26:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 98FDD84D3B for ; Thu, 8 Feb 2018 08:26:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91630FB40; Thu, 8 Feb 2018 08:26:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151807841983030" MIME-Version: 1.0 Date: Thu, 8 Feb 2018 08:26:59 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/security/py-asyncssh To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180208082659.91630FB40@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. --_----------=_151807841983030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Thu Feb 8 08:26:59 UTC 2018 Modified Files: pkgsrc/security/py-asyncssh: Makefile distinfo Log Message: py-asyncssh: updated to 1.12.0 Release 1.12.0: Enhanced AsyncSSH logging framework to provide detailed logging of events in the connection, channel, key exchange, authentication, sftp, and scp modules. Both high-level information logs and more detailed debug logs are available, and debug logging supports multiple debug levels with different amounts of verboseness. Logger objects are also available on various AsyncSSH classes to allow applications to report their own log events in a manner that can be tied back to a specific SSH connection or channel. Added support for begin_auth() to be a coroutine, so asynchronous operations can be performed within it to load state needed to perform SSH authentication. Adjusted key usage flags set on generated X.509 certificates to be more RFC compliant and work around an issue with OpenSSL validation of self-signed non-CA certificates. Updated key and certificate comment handling to be less sensitive to the encoding of non-ASCII characters. The get_comment() and set_comment() functions now take an optional encoding paramter, defaulting to UTF-8 but allowing for others encodings. There’s also a get_comment_bytes() function to get the comment data as bytes without performing Unicode decoding. Updated AsyncSSH to be compatible with beta release of Python 3.7. Updated code to address warnings reported by the latest version of pylint. Cleaned up various formatting issues in Sphinx documentation. Significantly reduced time it takes to run unit tests by decreasing the rounds of bcrypt encryption used when unit testing encrypted OpenSSH private keys. Added support for testing against uvloop in Travis CI. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/py-asyncssh/Makefile \ pkgsrc/security/py-asyncssh/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151807841983030 Content-Disposition: inline Content-Length: 1710 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-asyncssh/Makefile diff -u pkgsrc/security/py-asyncssh/Makefile:1.2 pkgsrc/security/py-asyncssh/Makefile:1.3 --- pkgsrc/security/py-asyncssh/Makefile:1.2 Fri Nov 17 09:07:02 2017 +++ pkgsrc/security/py-asyncssh/Makefile Thu Feb 8 08:26:59 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2017/11/17 09:07:02 adam Exp $ +# $NetBSD: Makefile,v 1.3 2018/02/08 08:26:59 adam Exp $ -DISTNAME= asyncssh-1.11.1 +DISTNAME= asyncssh-1.12.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= security python MASTER_SITES= ${MASTER_SITE_PYPI:=a/asyncssh/} Index: pkgsrc/security/py-asyncssh/distinfo diff -u pkgsrc/security/py-asyncssh/distinfo:1.2 pkgsrc/security/py-asyncssh/distinfo:1.3 --- pkgsrc/security/py-asyncssh/distinfo:1.2 Fri Nov 17 09:07:02 2017 +++ pkgsrc/security/py-asyncssh/distinfo Thu Feb 8 08:26:59 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2017/11/17 09:07:02 adam Exp $ +$NetBSD: distinfo,v 1.3 2018/02/08 08:26:59 adam Exp $ -SHA1 (asyncssh-1.11.1.tar.gz) = 28cfada71a9ffd6482e0656e7cbedd885837df33 -RMD160 (asyncssh-1.11.1.tar.gz) = 0412e5a8d5b38bbd16e0ea9ee17eeeb7df046f68 -SHA512 (asyncssh-1.11.1.tar.gz) = a80356f5c7ce85848f585c454ddd96afd6d67207cb1bf7cbb7f2c8a816a160c14ee48bf5efd7d4c939253a77a21ea1693fc424ab022d75c2f8c345ac3a1ceac5 -Size (asyncssh-1.11.1.tar.gz) = 276960 bytes +SHA1 (asyncssh-1.12.0.tar.gz) = ecc2b89bd8b2220ba68b03de0628d1128ac75df3 +RMD160 (asyncssh-1.12.0.tar.gz) = 9d1ab715301f8ba1df1334e468c7133906f870ea +SHA512 (asyncssh-1.12.0.tar.gz) = 5be65bcec29e20d0720f72fbee7bf4d5f165cae447e663fa86dd50748187998239cb16eed8b80667fc48b6ded2a1a87c75e4c01afdd111becec137e5cf5b62d5 +Size (asyncssh-1.12.0.tar.gz) = 289549 bytes --_----------=_151807841983030--