summaryrefslogtreecommitdiff
path: root/dev-python/ssh
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-01-31 20:30:04 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-01-31 20:30:04 +0000
commit4650985dd0e898b82e0d2ec225931297d4fadccf (patch)
treeeb0e8002cf3ebf1009110b6fec47fa90f873d824 /dev-python/ssh
parent67f76a858f1ac826bd8a550d756d9ec6e340ed4f (diff)
gentoo resync : 31.01.2018
Diffstat (limited to 'dev-python/ssh')
-rw-r--r--dev-python/ssh/Manifest3
-rw-r--r--dev-python/ssh/metadata.xml11
-rw-r--r--dev-python/ssh/ssh-1.8.0-r1.ebuild37
3 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/ssh/Manifest b/dev-python/ssh/Manifest
deleted file mode 100644
index 9aae473a3f30..000000000000
--- a/dev-python/ssh/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST ssh-1.8.0.tar.gz 795832 BLAKE2B a17519d354909ca4f4ba810fa498e45a4675bf6dbe5cd9437107d8c8a9fad85b7400cf88437bcc7324ce568e862507227d9fbee2c914b778891adddd9bbe2ca7 SHA512 bac32c2cf078c2a06b4b530c905e4b8e0c09b457d9d9feaee163d3a96d71b43c74d159a25ad65bcb4beba692b05b7587e60b4a13be7d049f8493977f9a032da7
-EBUILD ssh-1.8.0-r1.ebuild 888 BLAKE2B df11b996822dd1cc536a4616e019aa012e6122ce0c05c315d9e9a4bd19a8071bca0bf1fe7ab8a988dad5a7550edfcd0668fb5cb35556a31d02090eae954bd3a6 SHA512 c562bf0cab04ff7235db61a36ab500a3db69b094e3ff5a42727116a5616b52353c15dc579d6df45c6a9bcfe649ad4cf227f8e2697447f9a5bbf2c12d921caa0b
-MISC metadata.xml 306 BLAKE2B 939d3c1f62f5a4de072b74451e8d2685dcdd19ad46871145747738382827eec324fce6cf1defbb1059bdba24278d3f4616052cc7dd35f62a61a2d6d249c8ac0d SHA512 b81d4d42ceba01fab29fade723f7230774eede86fc89db99db36f6d6305d2cf4df199ab47e9ed192cee4f616e214254b8b4d57398e0256c197c94310b6ce4f12
diff --git a/dev-python/ssh/metadata.xml b/dev-python/ssh/metadata.xml
deleted file mode 100644
index 6f8061eb91d5..000000000000
--- a/dev-python/ssh/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <upstream>
- <remote-id type="pypi">ssh</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/ssh/ssh-1.8.0-r1.ebuild b/dev-python/ssh/ssh-1.8.0-r1.ebuild
deleted file mode 100644
index 6f7071951626..000000000000
--- a/dev-python/ssh/ssh-1.8.0-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="SSH2 protocol library"
-HOMEPAGE="https://pypi.python.org/pypi/ssh"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
-IUSE="doc examples"
-
-RDEPEND=">=dev-python/pycrypto-2.1[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_test() {
- "${PYTHON}" test.py --verbose || die
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- if use doc; then
- dohtml docs/*
- fi
-
- if use examples; then
- docompress -x usr/share/doc/${PF}/demos/
- insinto /usr/share/doc/${PF}
- doins -r demos
- fi
-}