diff --git a/dev-python/netmiko/Manifest b/dev-python/netmiko/Manifest index e6b9343..ae4a24f 100644 --- a/dev-python/netmiko/Manifest +++ b/dev-python/netmiko/Manifest @@ -1,3 +1,5 @@ DIST netmiko-4.1.2.tar.gz 323571 BLAKE2B e67f813e6b47155619383cd00c5baffb744e0c0e02224a30e9f45d56ab54c6f4f12cacdcaa3fb4a7a9b48a1fe17e813627e2c3c6f2768c06ee88a66e25cb0359 SHA512 cb9d8146496a14c69f83f4fc38898bd1cefd27a385b875b3aa5c4cad571cf50fd01c8ae3d9e91df2476a446f42813003cd0a941604815869a91cbbd53310a26a -EBUILD netmiko-4.1.2.ebuild 899 BLAKE2B dfb44a05d2ae6aa453f6a0bd28bb2f6b951abff26268eb50ba5d8167d8f80631193ec723a10a10e42c4f25788d0bf4868da1a11c731c89e891b34e90a183219b SHA512 3c4e9884af288e9da3d5d0c72d02bfc1d11f0c8ffb7bebe40566e08bacbc913c1c647abf843fa95e1229aea09cf2dda139bf1fd7d6749d5eb8ebd83724c62e8e +DIST netmiko-4.3.0.tar.gz 141701 BLAKE2B 23b4d1df6d0fcc5c0f8ae40917c4942a05d44bb7ac438fd80bd28a343078903c52c290ab8a90f2550c1e24fb7e38e440bd091797f61da02c5c70f9bec5e829c7 SHA512 23e0430a52b92142f8eb5ca5b0401d8342e572223ee519b138796d8f5e5b276cd4b45e2155a1505c825c1267c2b8b198cf3f6a03be147c0a4a819181b6fe24a9 +EBUILD netmiko-4.1.2.ebuild 899 BLAKE2B 404466882b76e43039db118e861bee32a8ee08dd46fbfb8a022315caaab124623514f1edcb88f1be3722c264cc0d97bd63335f137b729c72dc52ed207bd50eae SHA512 01cc55ee0f3c0a5a9163a6f358430b5b7541f0c4e44634049b64cb9c04fc98d3a5f79858e89a6f2ea969e8b99b2e5301a36354d620b1575ca73ab6a56b6efb2d +EBUILD netmiko-4.3.0.ebuild 801 BLAKE2B af4a5e6ac4c7eb9dae61efc71701eb57877fc99d38e1380886d397640bac7eb578e56b031cc067cb935be719e5c63e07f4397db01c3a64aed7848388af201a76 SHA512 fb0b025e12cebde0baa2406a50a9349166d4feb47b67fc688bf466267f88ed2ca36aa3437ab3ebb2e02d507065141be85a7a6224dd518baad446e61da14ac92f MISC metadata.xml 507 BLAKE2B f3b891c2e5b3762125ee9d6adb745b7d21c6194aa78e4da2ba7b16a389fe7858cc8a4c4a0659ac60d73b165b6d33386c1b834f7b50b1512df6265aa129b219f9 SHA512 f545b407f7c577e30169606c01755a20ffa4f0646d7c176f5d388cb278295d94e4abcb0291f187f9bd34df0b01e43b3f10fd5fc6e9dcbb1893d451de436fb7a8 diff --git a/dev-python/netmiko/netmiko-4.1.2.ebuild b/dev-python/netmiko/netmiko-4.1.2.ebuild index 5283736..2cff13b 100644 --- a/dev-python/netmiko/netmiko-4.1.2.ebuild +++ b/dev-python/netmiko/netmiko-4.1.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{11..13} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/netmiko/netmiko-4.3.0.ebuild b/dev-python/netmiko/netmiko-4.3.0.ebuild new file mode 100644 index 0000000..6152092 --- /dev/null +++ b/dev-python/netmiko/netmiko-4.3.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=poetry +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/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/paramiko-2.9.5[${PYTHON_USEDEP}] + >=dev-python/scp-0.13.6[${PYTHON_USEDEP}] + >=dev-python/pyyaml-5.3[${PYTHON_USEDEP}] + >=dev-python/textfsm-1.1.3[${PYTHON_USEDEP}] + >=dev-python/ntc-templates-2.0.0[${PYTHON_USEDEP}] + >=dev-python/pyserial-3.3[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest