dev-python/sshtunnel: Initial commit
authorAaron W. Swenson <titanofold@gentoo.org>
Thu, 4 Oct 2018 17:34:36 +0000 (13:34 -0400)
committerAaron W. Swenson <titanofold@gentoo.org>
Thu, 4 Oct 2018 17:37:55 +0000 (13:37 -0400)
Required by >=dev-db/pgadmin4-3.3

Bug: https://bugs.gentoo.org/665754
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Signed-off-by: Aaron Swenson <titanofold@gentoo.org>
dev-python/sshtunnel/Manifest [new file with mode: 0644]
dev-python/sshtunnel/metadata.xml [new file with mode: 0644]
dev-python/sshtunnel/sshtunnel-0.1.4.ebuild [new file with mode: 0644]

diff --git a/dev-python/sshtunnel/Manifest b/dev-python/sshtunnel/Manifest
new file mode 100644 (file)
index 0000000..a5b9b6e
--- /dev/null
@@ -0,0 +1 @@
+DIST sshtunnel-0.1.4.tar.gz 48330 BLAKE2B 5fdc5dd602274a16025f250fcc3a36453a17c921f51367cac0cb0ef36be6251f687b53b1df6072d1e32456a5c0fa5ec6d2fd8e5d4874977a641a6c9ba81ac57c SHA512 c228fe79cf5172c950777a40b27ababd42a31b7aad8a8472d55a2b3babf5aa4c5308799bb271f33f0e943c309eb9adedee321045a03324cb5e30a385178751ca
diff --git a/dev-python/sshtunnel/metadata.xml b/dev-python/sshtunnel/metadata.xml
new file mode 100644 (file)
index 0000000..b3c1d36
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>titanofold@gentoo.org</email>
+               <name>Aaron W. Swenson</name>
+       </maintainer>
+</pkgmetadata>
diff --git a/dev-python/sshtunnel/sshtunnel-0.1.4.ebuild b/dev-python/sshtunnel/sshtunnel-0.1.4.ebuild
new file mode 100644 (file)
index 0000000..4aeb081
--- /dev/null
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pure python SSH tunnels"
+HOMEPAGE="https://pypi.python.org/pypi/sshtunnel"
+SRC_URI="mirror://pypi/s/sshtunnel/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86 ~arm"
+LICENSE="MIT"
+SLOT="0"
+
+IUSE="test"
+
+RDEPEND="dev-python/paramiko[${PYTHON_USEDEP}]"
+
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? ( dev-python/tox[${PYTHON_USEDEP}] )
+"
+
+python_test() {
+       esetup.py test
+}