dev-python/fortiosapi: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-06-11 11:59:22 +02:00 committed by Andreas Billmeier
parent cdc3689145
commit 9fa95a993c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 5 additions and 11 deletions

View File

@ -1,3 +1,3 @@
DIST fortiosapi-1.0.5.tar.gz 16025 BLAKE2B 55b665a668759d31aaade918794c0ee2d96b416317e3056baa450a243dc903a49c61e86538005274cc69ba10a4c1fab154246120d071f1679478c66be6fda6a8 SHA512 6e8dcaecb7264acc0f845829160cd4cceb379292d5902ae67d06e32d6fd227f75a84df5b857d344975c948951b48cb8b6f1e7ccce71f6dbd853d2c8795bfec6c
EBUILD fortiosapi-1.0.5.ebuild 901 BLAKE2B 50f4f2f94f2addfeae141dbda637be1708cc72056b6cdbc933afd8d6ae1dc79dd8119c12ec1a414a82f2837115656a48a74a63d399ab0ca4deba8d1f889c8bdf SHA512 045fb4313cc02957013140aa4c6e8ef8366de58ced76679cd669d4dc130cdc0cf8c9c8fc11cf7f0a78d89d6c1e957b53f2193ce9f9474a91e5d80af441b0371d
EBUILD fortiosapi-1.0.5.ebuild 805 BLAKE2B af543050705017369de339db07cb5a386824283663a92f4eaa8fe251ca18bc95395a88b43acd2f0c87b7b7a0aced0ad1b4d5b28f9727fc38f944cf34f7e0a627 SHA512 8426437070fa5fecee4584ce51ec6419475aeddeca1caa7b4a693a53a9208daa63506f03ff7a83e1248dabac0b6febb1de322e1393308461231c533bf6a3728f
MISC metadata.xml 532 BLAKE2B 10220f3ab1118d74d9572442a69b4eb5d7f78d8894ba481bcf74bf40adc88950bcddba240b467edb1304ccf8f629d48f324ea87b1982c96ce0278797403fdde2 SHA512 45de68af786c06eafc563587a301416b897c6b138fbf68e0defbf303f25917d47df58eb328501e4d06f6251308b6553326292adbb413c04b01ae6de8a04b885c

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_{9..11} )
inherit distutils-r1
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python modules to use Fortigate APIs"
HOMEPAGE="https://github.com/fortinet-solutions-cse/fortiosapi https://pypi.org/project/fortiosapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
@ -23,15 +22,10 @@ RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/oyaml[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
src_prepare() {
sed "s/find_packages()/find_packages(exclude=['tests'])/g" -i setup.py || die
eapply_user