summaryrefslogtreecommitdiff
path: root/net-analyzer/gvm-tools
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-11-14 10:30:49 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-11-14 10:30:49 +0000
commitcd8b6c60f3cbb06647bf3d03fb2ac29ccfc31c8f (patch)
tree2e3b9d43dc19a31fee73728c8a91e2e02e6b243e /net-analyzer/gvm-tools
parent62ce4dfbf01c603a668dabde87ccc5b4ca4069af (diff)
gentoo auto-resync : 14:11:2023 - 10:30:49
Diffstat (limited to 'net-analyzer/gvm-tools')
-rw-r--r--net-analyzer/gvm-tools/Manifest2
-rw-r--r--net-analyzer/gvm-tools/gvm-tools-21.10.0-r1.ebuild36
2 files changed, 0 insertions, 38 deletions
diff --git a/net-analyzer/gvm-tools/Manifest b/net-analyzer/gvm-tools/Manifest
index 68cf7df5c943..ffb78756d1d4 100644
--- a/net-analyzer/gvm-tools/Manifest
+++ b/net-analyzer/gvm-tools/Manifest
@@ -1,5 +1,3 @@
-DIST gvm-tools-21.10.0.tar.gz 162620 BLAKE2B b205fad4ef05dbd7f8d01b92cf8c123145cb526320dbe881b82ae53ebfbe5e1ee5858996687e256540dd9ce66a8fa50937b6bc0b79888c2c43389db107cefcb0 SHA512 0dc202debaae1431194585575d11b1af6aa057456429dc46e7bf6677b2217fd8569572dc71b8ada578caa961ff2b371a364fb67277c40e76e3025b6b3fcb3a5b
DIST gvm-tools-23.9.0.tar.gz 221180 BLAKE2B cb96f7d38e84a7dfd76a859bbd33db715aeb0bfb3aa1d26acd45b04208a33ee9ca309ba736352242b732fec7a0d615f01efc5827e834e2ea0939c846dfa63994 SHA512 2c58d2cf5b0280c54e1451311bd9b331880ea338cef19bd5224580939b7e43befed5270e73e17a3016410803e417c7049f35aec63461b9d4d6c99baec0ecb374
-EBUILD gvm-tools-21.10.0-r1.ebuild 1027 BLAKE2B 5b6618bf2b4a8dcb994dbee4249e7a0fb31ab2c3153c6bc3788839c3e8291125a6ca7c7ec406be1a6561cf4a1f54e35bc9f5c000eb4958453a2fa94e9fa2457d SHA512 2394382c8652ae738707b785999b9da4c4bd0e731b2a47539b2d9ca1f69ba882252ed084117e008542e9caaf432e9d7a69e408486a983fe4d361df3b2eee18c9
EBUILD gvm-tools-23.9.0.ebuild 623 BLAKE2B 9058d528ffdf112f209e9f13f89521514e705d1bb268ed3fb207305bfcee36a6218ce1b6b7f7d84fd3e13fc383e3a8fb53eef339b4d16dc19faf0479e76da143 SHA512 f052e150bb957f7b8f29039fe83c44e6bd65fd7aad2a3ad5f8e304adaa4f4ec7c5a95199b78db3b6abcd0ddf26d3eecda95f4e81c078973ea2f4a2331ce0982d
MISC metadata.xml 1029 BLAKE2B 91595f8420740154d2823126b12f7b67740660a08dbf5b78b26fa59523b3a37238e64d0abbbfc4fdb3dc99cc741ea0c21160923ab67030a4a77b04f1b3a11481 SHA512 0b958ded9193e1acde6db72b15cea25bc9837afb82769cf12c5434afd0223874014a05dffee8680d0bbd27f263c2adb9b5b7f25b7dfddd9f79aa54b837482576
diff --git a/net-analyzer/gvm-tools/gvm-tools-21.10.0-r1.ebuild b/net-analyzer/gvm-tools/gvm-tools-21.10.0-r1.ebuild
deleted file mode 100644
index 6d417c378aa2..000000000000
--- a/net-analyzer/gvm-tools/gvm-tools-21.10.0-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_USE_PEP517=poetry
-inherit distutils-r1
-
-DESCRIPTION="Remote control for Greenbone Vulnerability Manager, previously named openvas-cli"
-HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/gvm-tools/"
-SRC_URI="https://github.com/greenbone/gvm-tools/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
- >=net-analyzer/python-gvm-21.11.0[${PYTHON_USEDEP}]
- !net-analyzer/openvas-cli
- !net-analyzer/openvas-tools
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests unittest
-
-src_prepare() {
- distutils-r1_src_prepare
-
- # Fixing tests
- # Use correct socket path
- sed -i "s/\/usr\/local\/var\/run\/gvmd.sock/\/var\/run\/gvmd.sock/g" tests/test_parser.py || die
- # ignore help formating
- sed -i "s/class HelpFormatting/@unittest.skip('ignoring help formatting')\nclass HelpFormatting/g" tests/test_parser.py || die
-}