Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Dec 2018 22:55:51 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r488578 - in head/net: . py-sshtunnel
Message-ID:  <201812272255.wBRMtpKc097809@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Thu Dec 27 22:55:51 2018
New Revision: 488578
URL: https://svnweb.freebsd.org/changeset/ports/488578

Log:
  Add net/py-sshtunnel: Pure Python SSH tunnels
  
  sshtunnel is a Python module for easily creating ssh tunnels in the background,
  from within Python. An example use case is when you want to access a remote
  database. With sshtunnel all you need is ssh access to the remote machine and
  Python installed.
  
  WWW: https://pypi.org/project/sshtunnel/

Added:
  head/net/py-sshtunnel/
  head/net/py-sshtunnel/Makefile   (contents, props changed)
  head/net/py-sshtunnel/distinfo   (contents, props changed)
  head/net/py-sshtunnel/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Thu Dec 27 22:46:21 2018	(r488577)
+++ head/net/Makefile	Thu Dec 27 22:55:51 2018	(r488578)
@@ -1137,6 +1137,7 @@
     SUBDIR += py-socketio-client
     SUBDIR += py-softlayer
     SUBDIR += py-speedtest-cli
+    SUBDIR += py-sshtunnel
     SUBDIR += py-sshuttle
     SUBDIR += py-stomp.py
     SUBDIR += py-suds

Added: head/net/py-sshtunnel/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-sshtunnel/Makefile	Thu Dec 27 22:55:51 2018	(r488578)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	sshtunnel
+PORTVERSION=	0.1.4
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio@FreeBSD.org
+COMMENT=	Pure Python SSH tunnels
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}paramiko>=1.15.2:security/py-paramiko@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/net/py-sshtunnel/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-sshtunnel/distinfo	Thu Dec 27 22:55:51 2018	(r488578)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1545950236
+SHA256 (sshtunnel-0.1.4.tar.gz) = f29ae41a1bd3afa64e9a31029bece2966e4be9a9641e8262372741e691c40d76
+SIZE (sshtunnel-0.1.4.tar.gz) = 48330

Added: head/net/py-sshtunnel/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-sshtunnel/pkg-descr	Thu Dec 27 22:55:51 2018	(r488578)
@@ -0,0 +1,6 @@
+sshtunnel is a Python module for easily creating ssh tunnels in the background,
+from within Python. An example use case is when you want to access a remote
+database. With sshtunnel all you need is ssh access to the remote machine and
+Python installed.
+
+WWW: https://pypi.org/project/sshtunnel/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812272255.wBRMtpKc097809>