svn commit: r466526 - in head/security: . py-scp

Yuri Victorovich yuri at FreeBSD.org
Thu Apr 5 03:32:07 UTC 2018


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 <sergey at akhmatov.ru>

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 at 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 <bsd.port.mk>

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


More information about the svn-ports-head mailing list