netmiko: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-06-11 09:01:26 +02:00 committed by Andreas Billmeier
parent 0d7ab7c14f
commit d3696ec638
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 16 additions and 64 deletions

View File

@ -1,5 +1,3 @@
DIST netmiko-3.4.0.tar.gz 502064 BLAKE2B e6a63fbf8392810b78a8ae4e710addf4527af372676b99ae5aa3c1adb6c4702bc7d76818116af0f7c6124e3161fd6a1f971e8a414ebd8d77ccd350d2631b49d7 SHA512 b131707bcfec883c0d6a206e5c3a419cd740483287ab82b8f5879d01ca7f2ab2fca4d564515890ffefb9351bf7125f55e4e337711824c3ce720f02e21aaeab78
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
EBUILD netmiko-4.1.2.ebuild 899 BLAKE2B dfb44a05d2ae6aa453f6a0bd28bb2f6b951abff26268eb50ba5d8167d8f80631193ec723a10a10e42c4f25788d0bf4868da1a11c731c89e891b34e90a183219b SHA512 3c4e9884af288e9da3d5d0c72d02bfc1d11f0c8ffb7bebe40566e08bacbc913c1c647abf843fa95e1229aea09cf2dda139bf1fd7d6749d5eb8ebd83724c62e8e
MISC metadata.xml 507 BLAKE2B f3b891c2e5b3762125ee9d6adb745b7d21c6194aa78e4da2ba7b16a389fe7858cc8a4c4a0659ac60d73b165b6d33386c1b834f7b50b1512df6265aa129b219f9 SHA512 f545b407f7c577e30169606c01755a20ffa4f0646d7c176f5d388cb278295d94e4abcb0291f187f9bd34df0b01e43b3f10fd5fc6e9dcbb1893d451de436fb7a8

View File

@ -7,6 +7,7 @@
</maintainer>
<upstream>
<remote-id type="pypi">netmiko</remote-id>
<remote-id type="github">ktbyers/netmiko</remote-id>
<maintainer status="unknown">
<email>ktbyers@twb-tech.com</email>
<name>Kirk Byers</name>

View File

@ -1,39 +0,0 @@
# 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 Paramiko SSH 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/scp-0.13.2[${PYTHON_USEDEP}]
>=dev-python/paramiko-2.6.0[${PYTHON_USEDEP}]
dev-python/pyserial[${PYTHON_USEDEP}]
>=dev-python/ntc-templates-2.0.0[${PYTHON_USEDEP}]
dev-python/tenacity[${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

View File

@ -1,15 +1,14 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
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"
@ -23,19 +22,12 @@ 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/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

View File

@ -1,16 +1,16 @@
BDEPEND=>=dev-python/setuptools-38.4.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/nose[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) test? ( >=dev-python/paramiko-2.7.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/scp-0.13.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/tenacity[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ~dev-python/textfsm-1.1.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/ntc-templates-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyserial[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pytest-7.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) >=dev-python/setuptools-65.7.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/pytest[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) test? ( >=dev-python/paramiko-2.7.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/scp-0.13.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/tenacity[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/pyyaml-5.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/textfsm-1.1.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/ntc-templates-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/pyserial[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/pytest-7.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) python_targets_python3_12? ( >=dev-lang/python-3.12.0_beta1:3.12 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/setuptools-67.7.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/wheel-0.40.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Multi-vendor library to simplify legacy CLI connections to network devices
EAPI=8
HOMEPAGE=https://github.com/ktbyers/netmiko https://pypi.org/project/netmiko/
INHERIT=distutils-r1
IUSE=test test python_targets_python3_10 python_targets_python3_11
INHERIT=distutils-r1 pypi
IUSE=test test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12
KEYWORDS=amd64 arm arm64 x86
LICENSE=MIT
RDEPEND=>=dev-python/paramiko-2.7.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/scp-0.13.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/tenacity[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/pyyaml-5.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ~dev-python/textfsm-1.1.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?] >=dev-python/ntc-templates-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pyserial[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 )
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RDEPEND=>=dev-python/paramiko-2.7.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/scp-0.13.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/tenacity[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/pyyaml-5.3[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/textfsm-1.1.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/ntc-templates-2.0.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] dev-python/pyserial[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) python_targets_python3_12? ( >=dev-lang/python-3.12.0_beta1:3.12 )
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 )
RESTRICT=!test? ( test ) !test? ( test )
SLOT=0
SRC_URI=mirror://pypi/n/netmiko/netmiko-4.1.2.tar.gz
_eclasses_=out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib c19072c3cd7ac5cb21de013f7e9832e0 toolchain-funcs 513c31b3346458ed1f3878b57da6d61c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 ba15b8b81f30ca448294d759a9f7902c python-r1 3c6cd0f418ba702c186a9865b85e704d distutils-r1 2d32e797ee29a8ffdd452f4a85860666
_md5_=85c35576ff0d430d8b67f00ae2cf4abf
SRC_URI=https://files.pythonhosted.org/packages/source/n/netmiko/netmiko-4.1.2.tar.gz
_eclasses_=out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib c19072c3cd7ac5cb21de013f7e9832e0 toolchain-funcs 513c31b3346458ed1f3878b57da6d61c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 ba15b8b81f30ca448294d759a9f7902c python-r1 3c6cd0f418ba702c186a9865b85e704d distutils-r1 2d32e797ee29a8ffdd452f4a85860666 pypi 3b6a844fbf71f1581992b44c78b549b7
_md5_=da14ee2624edb3596908739a12db486d