Date: Thu, 8 Mar 2018 14:01:11 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463889 - in head/ftp: . py-sftp Message-ID: <201803081401.w28E1BrH055315@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803081401.w28E1BrH055315>