update paramiko-2.7.2

This commit is contained in:
Andreas Billmeier (@STR/VW3) 2021-06-22 08:34:10 +02:00 committed by Andreas Billmeier
parent 01c0e13b45
commit 7bc7ceb300
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST paramiko-2.7.2.tar.gz 1069537 BLAKE2B 063c90a23a27043e29cc6343187656381cba3c8cbf3697a9a46d801903d465b64871ce47b5166635ef7d1829a702e41d3b81b9cd74d545ba1c76bfa7fe8bdc69 SHA512 230522734379b9861da5e9fc4baf5b7386ea35990430ba320c6d55d04beebeaefdd7d000a2be23d1178d7fd96ba400702ffe0ab03e8856c604456108876545bd
EBUILD paramiko-2.7.2.ebuild 666 BLAKE2B e3a2f6f96c089ebbf433cc6ee395031c8290999272de09b4bc30c1d775fc0fad66173c0c264cb8323a5b4023b91d42b0ae24226aef401c861883147468d9f44a SHA512 deea30cf1de49cfbd24f1d083c519fda0133de66573d0bac14ab6724bafc75f4a690c4bed952ce18cbb165159f442c3824340bcb9ff879d2ce06b28c5a8eedd1
MISC metadata.xml 452 BLAKE2B 6f92608a9e13638746993b264a10a2f1fe2a05f14de7aabd976cce4794621207d4e8fd841b4de559bfe02febc5a67c577c7df3306364c26ee03b58f298ac8836 SHA512 3492a08a5b2f90f7eb415089345ce95fa267ea8de402a2eb7ff22e1a31643a22148b8ede462261af6b5cd02a2c6491408fd3b64c1167416a6619c91decd8995a

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">paramiko</remote-id>
<maintainer status="unknown">
<email>jeff@bitprophet.org</email>
<name>Jeff Forcier</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="SSH2 protocol library"
HOMEPAGE="https://github.com/paramiko/paramiko/ https://pypi.org/project/paramiko/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS=""
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}