summaryrefslogtreecommitdiff
path: root/net-analyzer/python-gvm/python-gvm-26.1.1.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-04-30 01:35:48 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-04-30 01:35:48 +0000
commit82a8209ffe658ed3edd730cebfa27cb917c20af3 (patch)
treefe7f72c79e4342302f78329f309a7b0639c969e7 /net-analyzer/python-gvm/python-gvm-26.1.1.ebuild
parent33c7885bf8e042ef21deccb59d5e83ba9f2138f1 (diff)
downloadbaldeagleos-repo-82a8209ffe658ed3edd730cebfa27cb917c20af3.tar.gz
baldeagleos-repo-82a8209ffe658ed3edd730cebfa27cb917c20af3.tar.xz
baldeagleos-repo-82a8209ffe658ed3edd730cebfa27cb917c20af3.zip
Adding metadata
Diffstat (limited to 'net-analyzer/python-gvm/python-gvm-26.1.1.ebuild')
-rw-r--r--net-analyzer/python-gvm/python-gvm-26.1.1.ebuild35
1 files changed, 35 insertions, 0 deletions
diff --git a/net-analyzer/python-gvm/python-gvm-26.1.1.ebuild b/net-analyzer/python-gvm/python-gvm-26.1.1.ebuild
new file mode 100644
index 000000000000..215db94c7ad2
--- /dev/null
+++ b/net-analyzer/python-gvm/python-gvm-26.1.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
+DISTUTILS_USE_PEP517=poetry
+
+inherit distutils-r1
+
+DESCRIPTION="Greenbone Vulnerability Management Python Library"
+HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/python-gvm/"
+SRC_URI="https://github.com/greenbone/python-gvm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ >=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
+ >=dev-python/paramiko-2.7.1[${PYTHON_USEDEP}]
+ test? (
+ >=net-analyzer/pontos-22.7.2[${PYTHON_USEDEP}]
+ )
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # drop connection tests
+ rm -r tests/connections || die
+}