diff options
Diffstat (limited to 'net-analyzer/pontos/pontos-23.12.3.ebuild')
-rw-r--r-- | net-analyzer/pontos/pontos-23.12.3.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-analyzer/pontos/pontos-23.12.3.ebuild b/net-analyzer/pontos/pontos-23.12.3.ebuild new file mode 100644 index 000000000000..4fb3b9fb5680 --- /dev/null +++ b/net-analyzer/pontos/pontos-23.12.3.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=poetry + +inherit distutils-r1 + +DESCRIPTION="Common utilities and tools maintained by Greenbone Networks" +HOMEPAGE=" + https://www.greenbone.net + https://github.com/greenbone/pontos/ + https://greenbone.github.io/pontos/ +" + +SRC_URI="https://github.com/greenbone/pontos/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-3+" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/colorful-0.5.4[${PYTHON_USEDEP}] + >=dev-python/tomlkit-0.5.11[${PYTHON_USEDEP}] + >=dev-python/packaging-20.3[${PYTHON_USEDEP}] + >=dev-python/httpx-0.23[${PYTHON_USEDEP}] + >=dev-python/rich-12.4.4[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}] + >=dev-python/semver-2.13[${PYTHON_USEDEP}] + >=dev-python/lxml-4.9.0[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" + +PATCHES=( + # Removing tests with a reference to system tmp directory + "${FILESDIR}"/pontos-23.12.3-remove-tests.patch +) + +distutils_enable_tests unittest + +src_prepare() { + distutils-r1_src_prepare +} |