1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00

Add security/py-paramiko1, for ports that require paramiko 1.x

PR:		213893
This commit is contained in:
Li-Wen Hsu 2016-11-08 05:46:16 +00:00
parent 5801ec9ae0
commit 4f261bdf6b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=425685
4 changed files with 38 additions and 0 deletions

View File

@ -875,6 +875,7 @@
SUBDIR += py-oauthlib
SUBDIR += py-openssl
SUBDIR += py-paramiko
SUBDIR += py-paramiko1
SUBDIR += py-passlib
SUBDIR += py-pbkdf2
SUBDIR += py-pgpdump

View File

@ -0,0 +1,28 @@
# $FreeBSD$
PORTNAME= paramiko
PORTVERSION= 1.17.2
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
PKGNAMESUFFIX= 1
MAINTAINER= lwhsu@FreeBSD.org
COMMENT= Python SSH2 protocol library
LICENSE= GPLv2
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography \
${PYTHON_PKGNAMEPREFIX}ecdsa>0:security/py-ecdsa
USES= python
USE_PYTHON= distutils autoplist
CONFLICTS_INSTALL= py??-paramiko-*
OPTIONS_DEFINE= EXAMPLES
regression-test: extract
@(cd ${WRKSRC} && ${PYTHON_CMD} test.py)
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1477840248
SHA256 (paramiko-1.17.2.tar.gz) = d436971492bf11fb9807c08f41d4115a82bd592a844971737a6a8e8900c4677c
SIZE (paramiko-1.17.2.tar.gz) = 1189167

View File

@ -0,0 +1,6 @@
This is a library for making SSH2 connections (client or server).
Emphasis is on using SSH2 as an alternative to SSL for making secure
connections between python scripts. All major ciphers and hash methods
are supported. SFTP client and server mode are both supported too.
WWW: http://www.paramiko.org/