From owner-svn-ports-all@freebsd.org Thu Mar 8 14:01:12 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 B4861F34006; Thu, 8 Mar 2018 14:01:12 +0000 (UTC) (envelope-from miwi@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 6A1DF7BC83; Thu, 8 Mar 2018 14:01:12 +0000 (UTC) (envelope-from miwi@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 4B6F811A43; Thu, 8 Mar 2018 14:01:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w28E1CEY055320; Thu, 8 Mar 2018 14:01:12 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w28E1BrH055315; Thu, 8 Mar 2018 14:01:11 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201803081401.w28E1BrH055315@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Thu, 8 Mar 2018 14:01:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463889 - in head/ftp: . py-sftp X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/ftp: . py-sftp X-SVN-Commit-Revision: 463889 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: Thu, 08 Mar 2018 14:01:12 -0000 Author: miwi Date: Thu Mar 8 14:01:11 2018 New Revision: 463889 URL: https://svnweb.freebsd.org/changeset/ports/463889 Log: A simple interface to SFTP. The module offers high level abstractions and task based routines to handle your SFTP needs. Checkout the Cook Book, in the docs, to see what pysftp can do for you. WWW: https://bitbucket.org/dundeemt/pysftp PR: 226444 Submitted by: rozhuk.im@gmail.com Added: head/ftp/py-sftp/ head/ftp/py-sftp/Makefile (contents, props changed) head/ftp/py-sftp/distinfo (contents, props changed) head/ftp/py-sftp/pkg-descr (contents, props changed) Modified: head/ftp/Makefile Modified: head/ftp/Makefile ============================================================================== --- head/ftp/Makefile Thu Mar 8 13:53:36 2018 (r463888) +++ head/ftp/Makefile Thu Mar 8 14:01:11 2018 (r463889) @@ -86,6 +86,7 @@ SUBDIR += py-pycurl SUBDIR += py-pyftpdlib SUBDIR += py-requests-ftp + SUBDIR += py-sftp SUBDIR += py-tftpy SUBDIR += quftp SUBDIR += rexx-curl Added: head/ftp/py-sftp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-sftp/Makefile Thu Mar 8 14:01:11 2018 (r463889) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pysftp +DISTVERSION= 0.2.9 +CATEGORIES= ftp python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rozhuk.im@gmail.com +COMMENT= Simple interface to SFTP + +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}paramiko>=1.17:security/py-paramiko@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/ftp/py-sftp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-sftp/distinfo Thu Mar 8 14:01:11 2018 (r463889) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520508234 +SHA256 (pysftp-0.2.9.tar.gz) = fbf55a802e74d663673400acd92d5373c1c7ee94d765b428d9f977567ac4854a +SIZE (pysftp-0.2.9.tar.gz) = 25949 Added: head/ftp/py-sftp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/py-sftp/pkg-descr Thu Mar 8 14:01:11 2018 (r463889) @@ -0,0 +1,6 @@ +A simple interface to SFTP. +The module offers high level abstractions and task based routines to +handle your SFTP needs. +Checkout the Cook Book, in the docs, to see what pysftp can do for you. + +WWW: https://bitbucket.org/dundeemt/pysftp