Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Feb 2018 13:01:43 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r462692 - in head/security: . py-asyncssh
Message-ID:  <201802231301.w1ND1hHF022664@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Fri Feb 23 13:01:43 2018
New Revision: 462692
URL: https://svnweb.freebsd.org/changeset/ports/462692

Log:
  security/py-asyncssh: Python asnycio SSH protocol library
  
  AsyncSSH is a Python package which provides an asynchronous client
  and server implementation of the SSHv2 protocol on top of
  the Python asyncio framework. It requires Python 3.4 or later
  and the Python cryptography library for some cryptographic functions.
  
  WWW: https://github.com/ronf/asyncssh
  
  Submitted by:	Bartosz Prokop

Added:
  head/security/py-asyncssh/
  head/security/py-asyncssh/Makefile   (contents, props changed)
  head/security/py-asyncssh/distinfo   (contents, props changed)
  head/security/py-asyncssh/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Fri Feb 23 12:56:32 2018	(r462691)
+++ head/security/Makefile	Fri Feb 23 13:01:43 2018	(r462692)
@@ -884,6 +884,7 @@
     SUBDIR += py-acme
     SUBDIR += py-acme-tiny
     SUBDIR += py-artifacts
+    SUBDIR += py-asyncssh
     SUBDIR += py-backports.ssl_match_hostname
     SUBDIR += py-bcrypt
     SUBDIR += py-borg.localrole

Added: head/security/py-asyncssh/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-asyncssh/Makefile	Fri Feb 23 13:01:43 2018	(r462692)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	asyncssh
+PORTVERSION=	1.12.0
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=  	bartosz@ixsystems.com
+COMMENT=	Python asnycio SSH protocol library
+
+LICENSE=	EPL
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}bcrypt>0:security/py-bcrypt@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${FLAVOR}
+
+USES=		python:3.4+
+USE_PYTHON=	autoplist concurrent distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/security/py-asyncssh/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-asyncssh/distinfo	Fri Feb 23 13:01:43 2018	(r462692)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1519265865
+SHA256 (asyncssh-1.12.0.tar.gz) = 183fb9fccf38f42f6d587c3068be8bcb04a83e51a036b0074a7370e7289d05d3
+SIZE (asyncssh-1.12.0.tar.gz) = 289549

Added: head/security/py-asyncssh/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-asyncssh/pkg-descr	Fri Feb 23 13:01:43 2018	(r462692)
@@ -0,0 +1,6 @@
+AsyncSSH is a Python package which provides an asynchronous client
+and server implementation of the SSHv2 protocol on top of
+the Python asyncio framework. It requires Python 3.4 or later
+and the Python cryptography library for some cryptographic functions.
+
+WWW: https://github.com/ronf/asyncssh



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802231301.w1ND1hHF022664>