update netmiko-4.1.2
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
DIST netmiko-3.4.0.tar.gz 502064 BLAKE2B e6a63fbf8392810b78a8ae4e710addf4527af372676b99ae5aa3c1adb6c4702bc7d76818116af0f7c6124e3161fd6a1f971e8a414ebd8d77ccd350d2631b49d7 SHA512 b131707bcfec883c0d6a206e5c3a419cd740483287ab82b8f5879d01ca7f2ab2fca4d564515890ffefb9351bf7125f55e4e337711824c3ce720f02e21aaeab78
|
||||
EBUILD netmiko-3.4.0-r1.ebuild 953 BLAKE2B 6aa6a217cfeab201f69bd673e571b095a1c8f8af7abeebdc3ba3db68220b6e4addae82443974676f4e0685cb0ad7c0f7fd5f4b9b16d6cd8f7a15cb589b779365 SHA512 e5a3f9cc4ae06557ca642573892269cde55f394c386f8f9ce27c93e752e20f56af1745ed15ebb73e7fee4b929734d401eec1c89b20eb1927cead1106585a0a0c
|
||||
DIST netmiko-4.1.2.tar.gz 323571 BLAKE2B e67f813e6b47155619383cd00c5baffb744e0c0e02224a30e9f45d56ab54c6f4f12cacdcaa3fb4a7a9b48a1fe17e813627e2c3c6f2768c06ee88a66e25cb0359 SHA512 cb9d8146496a14c69f83f4fc38898bd1cefd27a385b875b3aa5c4cad571cf50fd01c8ae3d9e91df2476a446f42813003cd0a941604815869a91cbbd53310a26a
|
||||
EBUILD netmiko-3.4.0-r2.ebuild 981 BLAKE2B 165803656ec25984d33fb891a0fd710031e5249154e46c2bb690656bf3f0bde5fc7f1ed53bb70f4a325d6f2394d3e53ce05996502d9484987f88ec8d8145799d SHA512 f598fd8c13c79321cae6316e1d79ba288d2dd6e38f5520e6ca1dd742d69065e32e4f32738f00c8e9388beb178a0e44a5212fe158f399ebbd721f42efb271eb00
|
||||
EBUILD netmiko-4.1.2.ebuild 1067 BLAKE2B 583fa5f5dea87c33fefde1b9de750441e37988eddaf90da963820404c612de8fa293a4e8506d9bbd2b7c4509d68e891682fc994a69a114e2b1aca2e3d59863aa SHA512 95e5099e7f33a89114f2d07f52903cb14e2dd66b13154fff2b8eebd1149c43321df6b1ec3f1626cd624e95fb587ed209b35579278e3204201e0e46c78e050ae9
|
||||
MISC metadata.xml 450 BLAKE2B b6530376f9f3745b0b4ef741222af10c5d31e419ebcd5521fc30b947294ccb64b6ac00634cae105d19b664de2d9036b0748b4d4fe5d3b9435b254f1a304f4753 SHA512 39348b249b56b466cff7c1e165fa5804de019da30d79384451e32b94949904b8093267ceda1000538976b047626cd0355cd4f2cab8e05cb330547f02d1cc121c
|
||||
|
||||
+7
-4
@@ -1,9 +1,9 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
PYTHON_COMPAT=( python3_{8..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
@@ -13,8 +13,9 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
@@ -34,3 +35,5 @@ python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
@@ -0,0 +1,41 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Multi-vendor library to simplify legacy CLI connections to network devices"
|
||||
HOMEPAGE="https://github.com/ktbyers/netmiko https://pypi.org/project/netmiko/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/paramiko-2.7.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/scp-0.13.3[${PYTHON_USEDEP}]
|
||||
dev-python/tenacity[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyyaml-5.3[${PYTHON_USEDEP}]
|
||||
~dev-python/textfsm-1.1.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/ntc-templates-2.0.0[${PYTHON_USEDEP}]
|
||||
dev-python/pyserial[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
>=dev-python/setuptools-38.4.0[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user