summaryrefslogtreecommitdiff
path: root/net-analyzer/python-gvm
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
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')
-rw-r--r--net-analyzer/python-gvm/Manifest1
-rw-r--r--net-analyzer/python-gvm/python-gvm-26.1.1.ebuild35
2 files changed, 36 insertions, 0 deletions
diff --git a/net-analyzer/python-gvm/Manifest b/net-analyzer/python-gvm/Manifest
index 10c094b6ee7c..fcd988930bf3 100644
--- a/net-analyzer/python-gvm/Manifest
+++ b/net-analyzer/python-gvm/Manifest
@@ -1,2 +1,3 @@
DIST python-gvm-24.12.0.tar.gz 291652 BLAKE2B c3ac1e135710d085d736d82132ddf4aa5d6da313e303d85de52456b6f91e62f90d28c59e4bb27b6627014b76b93b9187934856140b7fbaaa0f6bdb7384584cd6 SHA512 791f81d220212f8f2f823f95d2fafa5e4f952334e628ad0a74902c9d89b44a3de51575fef9fea132657e208dbbfeae6744d72d16413b7270ac4dcad216adbe29
DIST python-gvm-24.8.0.tar.gz 289907 BLAKE2B d7e5a962f4d714406595e6bc8c939b7526389613e78dd5bc5b641ef2dc17eb33e42c51798f2c280e1a7af5a65ae0fa6ac3d059e1243b5adcdb27ce900cbcfe6d SHA512 dbc3dee750299f6e39417a442551ffc82939073cf1c4fd46076dcf05f9c59c2568bf8fc075607b36950387e11b021eb75c542c022329ff8e7ac42293f8489db9
+DIST python-gvm-26.1.1.tar.gz 318501 BLAKE2B 54427c0f264f213338499da6c8d3ac8bac880afb8205a7a0fa75b3bfba4494add3d1a7b4fd534fe9e39f1d0b475071b492a577789fe6387b0c28b376628f75e9 SHA512 04a7c0db90bec944b931c83065a571673e3950c1c518b8d56cba7ac8d334c550bc1ef7940d9c243ed16d4fa568fb9539a35b28ee17d3bce6cfd6bf1a5bcd12b8
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
+}