Received: by mail.netbsd.org (Postfix, from userid 605) id AAB0784D8D; Mon, 10 Jun 2019 09:36:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 32E9C84D6E for ; Mon, 10 Jun 2019 09:36:37 +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 rWhk7QRsptoi for ; Mon, 10 Jun 2019 09:36:36 +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 A13C084D31 for ; Mon, 10 Jun 2019 09:36:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9B03BFBF4; Mon, 10 Jun 2019 09:36:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156015939673940" MIME-Version: 1.0 Date: Mon, 10 Jun 2019 09:36:36 +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: <20190610093636.9B03BFBF4@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. --_----------=_156015939673940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Mon Jun 10 09:36:36 UTC 2019 Modified Files: pkgsrc/security/py-asyncssh: Makefile distinfo Log Message: py-asyncssh: updated to 1.17.0 Release 1.17.0: Added support for “reverse direction” SSH connections, useful to support applications like NETCONF Call Home, described in RFC 8071. Added support for the PyCA implementation of Chacha20-Poly1305, eliminating the dependency on libnacl/libsodium to provide this functionality, as long as OpenSSL 1.1.1b or later is installed. Restored libnacl support for Curve25519/Ed25519 on systems which have an older version of OpenSSL that doesn’t have that support. This fallback also applies to Chacha20-Poly1305. Fixed Pageant support on Windows to use the Pageant agent by default when it is available and client keys are not explicitly configured. Disabled the use of RSA SHA-2 signatures when using the Pageant or Windows 10 OpenSSH agent on Windows, since neither of those support the signature flags options to request them. Fixed a regression where a callable was no longer usable in the sftp_factory argument of create_server. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 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. --_----------=_156015939673940 Content-Disposition: inline Content-Length: 1720 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.14 pkgsrc/security/py-asyncssh/Makefile:1.15 --- pkgsrc/security/py-asyncssh/Makefile:1.14 Mon Apr 1 09:14:30 2019 +++ pkgsrc/security/py-asyncssh/Makefile Mon Jun 10 09:36:36 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2019/04/01 09:14:30 adam Exp $ +# $NetBSD: Makefile,v 1.15 2019/06/10 09:36:36 adam Exp $ -DISTNAME= asyncssh-1.16.1 +DISTNAME= asyncssh-1.17.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.14 pkgsrc/security/py-asyncssh/distinfo:1.15 --- pkgsrc/security/py-asyncssh/distinfo:1.14 Mon Apr 1 09:14:30 2019 +++ pkgsrc/security/py-asyncssh/distinfo Mon Jun 10 09:36:36 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2019/04/01 09:14:30 adam Exp $ +$NetBSD: distinfo,v 1.15 2019/06/10 09:36:36 adam Exp $ -SHA1 (asyncssh-1.16.1.tar.gz) = 3a81151c26dda56fc5506ee43eaca962a36dbf91 -RMD160 (asyncssh-1.16.1.tar.gz) = b517e8e5894b653cbfe76b254fae0628973d017e -SHA512 (asyncssh-1.16.1.tar.gz) = ba929fdb762983b3e4d515b614fc8f72748f337ce84f7c747df48389aab4d5a11113913a4692b1893a64c52c80abc458498db4743ac5048547aa4ac05750da46 -Size (asyncssh-1.16.1.tar.gz) = 323419 bytes +SHA1 (asyncssh-1.17.0.tar.gz) = d2c9add726412b4d69a36d751e2c3d498316b3a8 +RMD160 (asyncssh-1.17.0.tar.gz) = cc9f79972ef93c73c1595b5ee03fa5deb2ba3f3e +SHA512 (asyncssh-1.17.0.tar.gz) = 89cfb5d385f0bf4c379fe25b9b66dc11dfbbec2aba44819e8759c14f476cf484bcdd82c82af6b4269ae636035db6b5a2b559d8bba501b416482194102a805fe9 +Size (asyncssh-1.17.0.tar.gz) = 326554 bytes --_----------=_156015939673940--