dev-python/pyruckus: update SRC_URI
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
32d0ee5bb1
commit
ff59a49266
@ -1,5 +1,5 @@
|
||||
DIST pyruckus-0.12.tar.gz 3834 BLAKE2B 733aa5a59a2c05a524ba0a0a03284c33b56fdfff8073393db8080c5b91bb4cd2b08a19bc1074322b3cd1e04510a8e427b6b80de334534a1ce0f4218967017c12 SHA512 9e0d78c8049294e19b296118527c6284871bc8c3dfb44ee2b104e8e31c4a5c7f390330cb29431b7cc2c8adcf2ec8b20111496306f691b2dc04610eaeddd41914
|
||||
DIST pyruckus-0.16.tar.gz 5572 BLAKE2B bc0d82ee75791b3db95430771d75c92fef50f940fec32e3e727f54e4e9525da94b62a69cb3955a682684e183b30b27d57f0af1d7552a22c0a6e0246dea6db48d SHA512 77fbc1fe74f9bfc83d8c8833eb79d794990c9e5957b7b29f2b911be7ad4f15c39256363e5d03d765173b5cdc0ed5bf639de94453c5b15ec18dba4bf3675b0539
|
||||
EBUILD pyruckus-0.12.ebuild 734 BLAKE2B db5def7461e1dc0acee6ade838fb9a9e2f9e7633dbfa27df676b3a67d3ff75cd693a311e5b39ba38dcd02705ce81dd3614041645dc2d820e3a4e58973c3a8272 SHA512 d63f96d1a19c7ffb80006cb998182a9f431eb3bf0e88cc708ce54224a5c0818b1619d717195189f6e84b20051f94a0f60caefc1c842a2287d39501b3d21df16d
|
||||
EBUILD pyruckus-0.16.ebuild 765 BLAKE2B 266416e006ea5ae575e8638ad3ca2d1b014bf9d61a28453930627d951e532528a40da9a27beeecbb771ba3732390dbddc3cdab6625829f7b03f90d44dc39939f SHA512 b1d5c8b434c4ed41f3caadab5c9bb860ead7aa7ae06f0e143513f48deb61e8594113d7f197a20909b4442aeb410712cff2570bd801ca6b2cbb9a816019eae315
|
||||
EBUILD pyruckus-0.12.ebuild 709 BLAKE2B 0230445b446426381f25ce4ec9b177e9cc9974af78ba473f402f8b95b1ce8ed2488e9408bb5b3c08de6d935023dd30a1eed455b71510b56f756b860a8c967e85 SHA512 35b9f0e82c992510c4f2d6aa68b98c07543f948ad4008ce3a8323e3d8630b8d326d247f77f7481af09ca9fab11df3124a5595ed0e4bad8ab57d84658f29d70f8
|
||||
EBUILD pyruckus-0.16.ebuild 709 BLAKE2B 0230445b446426381f25ce4ec9b177e9cc9974af78ba473f402f8b95b1ce8ed2488e9408bb5b3c08de6d935023dd30a1eed455b71510b56f756b860a8c967e85 SHA512 35b9f0e82c992510c4f2d6aa68b98c07543f948ad4008ce3a8323e3d8630b8d326d247f77f7481af09ca9fab11df3124a5595ed0e4bad8ab57d84658f29d70f8
|
||||
MISC metadata.xml 505 BLAKE2B 9f2a9ae813b5b09614d076ffa9b30bf8587dfba1dbd801ac6b7202d5abb26c20ed6530a18fe8829717440d6be13c0fe223d9bd837839ac3c7988223e35dcde96 SHA512 07566d277b1541c94516e1c4e2d6f80b9e704f65b9e9e96aaceec05e3fc34cef24c52733830caf940c699024ad3aa024719656976408c2b49b46e178ffd80c7d
|
||||
|
@ -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_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python API to interact with a Ruckus Unleashed device."
|
||||
HOMEPAGE="https://github.com/gabe565/pyruckus https://pypi.org/project/pyruckus/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@ -22,7 +21,6 @@ DOCS="README.md"
|
||||
RDEPEND=">=dev-python/pexpect-4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-slugify-4.0.1[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
@ -30,3 +28,5 @@ BDEPEND="
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
@ -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_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python API to interact with a Ruckus Unleashed device."
|
||||
HOMEPAGE="https://github.com/gabe565/pyruckus https://pypi.org/project/pyruckus/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@ -22,7 +21,6 @@ DOCS="README.md"
|
||||
RDEPEND=">=dev-python/pexpect-4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-slugify-4.0.1[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user