From owner-svn-ports-head@freebsd.org Thu Apr 5 03:32:07 2018 Return-Path: Delivered-To: svn-ports-head@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 AA619F834BF; Thu, 5 Apr 2018 03:32:07 +0000 (UTC) (envelope-from yuri@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 572A5845BB; Thu, 5 Apr 2018 03:32:07 +0000 (UTC) (envelope-from yuri@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 520671D1B9; Thu, 5 Apr 2018 03:32:07 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w353W7bx044940; Thu, 5 Apr 2018 03:32:07 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w353W6Vd044934; Thu, 5 Apr 2018 03:32:06 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804050332.w353W6Vd044934@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 5 Apr 2018 03:32:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466526 - in head/security: . py-scp X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . py-scp X-SVN-Commit-Revision: 466526 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Apr 2018 03:32:07 -0000 Author: yuri Date: Thu Apr 5 03:32:06 2018 New Revision: 466526 URL: https://svnweb.freebsd.org/changeset/ports/466526 Log: New port: security/py-scp: Scp module for paramiko PR: 224423 Submitted by: Sergey Akhmatov Added: head/security/py-scp/ head/security/py-scp/Makefile (contents, props changed) head/security/py-scp/distinfo (contents, props changed) head/security/py-scp/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Apr 5 03:04:57 2018 (r466525) +++ head/security/Makefile Thu Apr 5 03:32:06 2018 (r466526) @@ -993,6 +993,7 @@ SUBDIR += py-requests-kerberos SUBDIR += py-rsa SUBDIR += py-safe + SUBDIR += py-scp SUBDIR += py-scrypt SUBDIR += py-service_identity SUBDIR += py-signedjson Added: head/security/py-scp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-scp/Makefile Thu Apr 5 03:32:06 2018 (r466526) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= scp +DISTVERSION= 0.10.2 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sergey@akhmatov.ru +COMMENT= Scp module for paramiko + +LICENSE= LGPL21+ +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}paramiko>0:security/py-paramiko@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/security/py-scp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-scp/distinfo Thu Apr 5 03:32:06 2018 (r466526) @@ -0,0 +1,3 @@ +TIMESTAMP = 1513259594 +SHA256 (scp-0.10.2.tar.gz) = 18f59e48df67fac0b069591609a0f4d50d781a101ddb8ec705f0c2e3501a8386 +SIZE (scp-0.10.2.tar.gz) = 6230 Added: head/security/py-scp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-scp/pkg-descr Thu Apr 5 03:32:06 2018 (r466526) @@ -0,0 +1,5 @@ +The scp.py module uses a paramiko transport to send and recieve files via the +scp1 protocol. This is the protocol as referenced from the openssh scp program, +and has only been tested with this implementation. + +WWW: https://github.com/jbardin/scp.py