From owner-svn-ports-all@freebsd.org Fri Feb 23 13:01:44 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F9A3F2062F; Fri, 23 Feb 2018 13:01:44 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 044487E8B6; Fri, 23 Feb 2018 13:01:44 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D905316E0D; Fri, 23 Feb 2018 13:01:43 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1ND1h6Z022668; Fri, 23 Feb 2018 13:01:43 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1ND1hHF022664; Fri, 23 Feb 2018 13:01:43 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201802231301.w1ND1hHF022664@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Fri, 23 Feb 2018 13:01:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462692 - in head/security: . py-asyncssh X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: in head/security: . py-asyncssh X-SVN-Commit-Revision: 462692 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Feb 2018 13:01:44 -0000 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 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