pkgsrc/security/py-asyncssh/Makefile
adam f89b220f4b py-asyncssh: updated to 1.11.1
Release 1.11.1:
Switched to using PBKDF2 implementation provided by PyCA, replacing a much slower pure-Python implementation used in earlier releases.
Improved support for file-like objects in process I/O redirection, properly handling objects which don’t support fileno() and allowing both text and binary file objects based on whether they have an ‘encoding’ member.
Changed PEM parser to be forgiving of trailing blank lines.
Updated documentation to note lack of support in OpenSSH for send_signal(), terminate(), and kill() channel requests.
Updated unit tests to work better with OpenSSH 7.6.
Updated Travis CI config to test with more recent Python versions.
2017-11-17 09:07:02 +00:00

21 lines
724 B
Makefile

# $NetBSD: Makefile,v 1.2 2017/11/17 09:07:02 adam Exp $
DISTNAME= asyncssh-1.11.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=a/asyncssh/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://asyncssh.timeheart.net/
COMMENT= Asynchronous SSHv2 client and server library
LICENSE= eclipse-license
DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=17.0.0:../../security/py-OpenSSL
DEPENDS+= ${PYPKGPREFIX}-bcrypt>=3.0.0:../../security/py-bcrypt
DEPENDS+= ${PYPKGPREFIX}-cryptography>=1.5:../../security/py-cryptography
DEPENDS+= ${PYPKGPREFIX}-gssapi>=1.2.0:../../security/py-gssapi
PYTHON_VERSIONS_INCOMPATIBLE= 27
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"