public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/openvas-scanner/
Date: Wed,  3 Apr 2024 17:38:04 +0000 (UTC)	[thread overview]
Message-ID: <1712165687.fa59a9e412d59a813f75069c51bc9ad37cde1df5.flow@gentoo> (raw)

commit:     fa59a9e412d59a813f75069c51bc9ad37cde1df5
Author:     Giuseppe Foti <foti.giuseppe <AT> gmail <DOT> com>
AuthorDate: Fri Mar 29 23:23:37 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Apr  3 17:34:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa59a9e4

net-analyzer/openvas-scanner: drop 22.7.8

Signed-off-by: Giuseppe Foti <foti.giuseppe <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35994
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-analyzer/openvas-scanner/Manifest              |   1 -
 .../openvas-scanner/openvas-scanner-22.7.8.ebuild  | 158 ---------------------
 2 files changed, 159 deletions(-)

diff --git a/net-analyzer/openvas-scanner/Manifest b/net-analyzer/openvas-scanner/Manifest
index 9d63bbf84110..883c03b3f20b 100644
--- a/net-analyzer/openvas-scanner/Manifest
+++ b/net-analyzer/openvas-scanner/Manifest
@@ -1,2 +1 @@
-DIST openvas-scanner-22.7.8.tar.gz 1069693 BLAKE2B 7b046102efe81092102933d3aa50479e4d3dca3a376d94cef4305519335e4e01add8971485272a0f79cb10ef7cfebf12657b13832e4e6eb7860df3a05c99259f SHA512 acd2dd738f0f5ccda7bea248decaf68e571864666c6749e372dac1f0ec152dcfa2945adb98fad509d4f00dc09f34b91b3dc1760c22f6458ca45eeeb6af2c886b
 DIST openvas-scanner-22.7.9.tar.gz 1069904 BLAKE2B 908810997880d1267f41df59905acc2ac2d491ab8453001ae8e2cc6881958150e8866b07b4e335888e8e574b5a347b33880bd24c9b8d140edd6c384e498e5dc9 SHA512 279a781fe698496fb88efd28c0ee6ede66a0180237b60c4d7b083fe10c7b7ac054ec04b08c9b33e6dd142f60529faedfef4441421cc04e95eaa08865e47b58dd

diff --git a/net-analyzer/openvas-scanner/openvas-scanner-22.7.8.ebuild b/net-analyzer/openvas-scanner/openvas-scanner-22.7.8.ebuild
deleted file mode 100644
index 57daa813f540..000000000000
--- a/net-analyzer/openvas-scanner/openvas-scanner-22.7.8.ebuild
+++ /dev/null
@@ -1,158 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake systemd tmpfiles toolchain-funcs readme.gentoo-r1 optfeature
-
-MY_DN="openvas"
-
-DESCRIPTION="Open Vulnerability Assessment Scanner"
-HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/openvas-scanner/"
-SRC_URI="
-	https://github.com/greenbone/openvas-scanner/archive/v${PV}.tar.gz -> ${P}.tar.gz
-"
-
-SLOT="0"
-LICENSE="GPL-2 GPL-2+"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc snmp test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	acct-user/gvm
-	>=dev-db/redis-5.0.3
-	>=dev-libs/glib-2.42:2
-	>=dev-libs/json-glib-1.4.4
-	>=net-libs/gnutls-3.2.15:=
-	>=net-analyzer/gvm-libs-22.4
-	net-libs/libpcap
-	app-crypt/gpgme:=
-	>=dev-libs/libgcrypt-1.6:=
-	dev-libs/libgpg-error
-	>=dev-libs/libksba-1.0.7
-	>=net-libs/libssh-0.6.0:=
-	dev-libs/libbsd
-	snmp? ( net-analyzer/net-snmp:= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-	>=sys-devel/bison-2.5
-	app-alternatives/lex
-	virtual/pkgconfig
-	doc? (
-		app-text/doxygen[dot]
-		app-text/xmltoman
-		app-text/htmldoc
-		dev-perl/CGI
-		dev-perl/SQL-Translator
-		virtual/pandoc
-	)
-	test? ( dev-libs/cgreen )
-"
-
-src_prepare() {
-	cmake_src_prepare
-	# QA-Fix | Remove -Werror compiler flag
-	sed -i -e "s/-Werror//" "${S}"/CMakeLists.txt || die #909560
-	# QA-Fix | Remove !CLANG doxygen warnings for 7.0.0
-	if use doc; then
-		if ! tc-is-clang; then
-		   local f
-		   for f in doc/*.in
-		   do
-			sed -i \
-				-e "s*CLANG_ASSISTED_PARSING = NO*#CLANG_ASSISTED_PARSING = NO*g" \
-				-e "s*CLANG_OPTIONS*#CLANG_OPTIONS*g" \
-				"${f}" || die "couldn't disable CLANG parsing"
-		   done
-		fi
-	fi
-
-	#Remove tests that doesn't work in the network sandbox
-	if use test; then
-		sed -i 's/add_test (pcap-test pcap-test)/ /g' misc/CMakeLists.txt || die
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		"-DLOCALSTATEDIR=${EPREFIX}/var"
-		"-DSYSCONFDIR=${EPREFIX}/etc"
-		"-DSBINDIR=${EPREFIX}/usr/bin"
-		"-DOPENVAS_FEED_LOCK_PATH=${EPREFIX}/var/lib/openvas/feed-update.lock"
-		"-DOPENVAS_RUN_DIR=/run/ospd"
-		"-DINSTALL_OLD_SYNC_SCRIPT=OFF"
-		"-DBUILD_WITH_NETSNMP=$(usex snmp)"
-	)
-	cmake_src_configure
-}
-
-src_compile() {
-	cmake_src_compile
-	if use doc; then
-		cmake_build -C "${BUILD_DIR}" doxygen-full manual
-	fi
-	cmake_build rebuild_cache
-	if use test; then
-		cmake_build tests
-	fi
-}
-
-src_install() {
-	if use doc; then
-		mv "${BUILD_DIR}"/doc/html "${BUILD_DIR}"/doc/html-manual || die
-		local HTML_DOCS=(
-			"${BUILD_DIR}"/doc/generated/html/.
-			"${BUILD_DIR}"/doc/html-manual
-		)
-	fi
-	cmake_src_install
-
-	insinto /etc/logrotate.d
-	newins "${FILESDIR}/${MY_DN}.logrotate" "${MY_DN}"
-
-	# Set proper permissions on required files/directories
-	keepdir /var/log/gvm
-	if ! use prefix; then
-		fowners gvm:gvm /var/log/gvm
-	fi
-
-	keepdir /var/lib/openvas/{gnupg,plugins}
-	if ! use prefix; then
-		fowners -R gvm:gvm /var/lib/openvas
-	fi
-
-	insinto /etc/openvas
-	newins "${FILESDIR}/openvas.conf-22" openvas.conf
-
-	systemd_newunit "${FILESDIR}/redis-openvas.service" redis-openvas.service
-	newtmpfiles "${FILESDIR}/redis-openvas.tmpfiles" redis-openvas.conf
-
-	insinto /etc/gvm
-	doins config/redis-openvas.conf
-	if ! use prefix; then
-		fowners -R gvm:gvm /etc/gvm /etc/gvm/redis-openvas.conf
-	fi
-
-	fperms 0750 /etc/gvm
-	fperms 0640 /etc/gvm/redis-openvas.conf
-
-	newconfd "${FILESDIR}/redis-openvas.confd" redis-openvas
-	newinitd "${FILESDIR}/redis-openvas.initd" redis-openvas
-
-	if use prefix; then
-		diropts -m0750
-	else
-		diropts -m0750 -o gvm -g gvm
-	fi
-	keepdir /var/lib/openvas/redis
-
-	readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-	tmpfiles_process redis-openvas.conf
-	optfeature "port scanner" net-analyzer/nmap
-	readme.gentoo_print_elog
-}


             reply	other threads:[~2024-04-03 17:38 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-03 17:38 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-29  7:35 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/openvas-scanner/ Florian Schmaus
2024-12-07 21:33 Florian Schmaus
2024-12-01 14:02 Sam James
2024-10-03 15:50 Jakov Smolić
2024-09-14 10:09 Florian Schmaus
2024-08-20  6:49 Joonas Niilola
2024-07-23  3:55 Sam James
2024-06-06  6:56 Florian Schmaus
2024-04-03 17:38 Florian Schmaus
2024-04-03 17:38 Florian Schmaus
2024-02-28 20:50 Jakov Smolić
2024-02-28  7:17 Florian Schmaus
2023-12-01  9:55 Florian Schmaus
2023-11-21  8:01 Florian Schmaus
2023-10-16  7:36 Florian Schmaus
2023-10-16  7:36 Florian Schmaus
2023-10-09 10:54 Florian Schmaus
2023-07-31 12:57 Florian Schmaus
2023-07-24  7:18 Florian Schmaus
2022-05-09 12:07 Florian Schmaus
2022-05-03 12:40 Florian Schmaus
2022-05-02 16:12 Florian Schmaus
2022-05-02 11:16 Florian Schmaus
2021-04-12 22:50 Sam James
2021-04-03 19:53 Sam James
2020-07-14 12:57 Joonas Niilola
2020-07-14 12:57 Joonas Niilola
2020-07-14 12:57 Joonas Niilola
2020-03-03  6:03 Joonas Niilola
2020-02-08 17:06 David Seifert
2019-12-21 15:06 Joonas Niilola
2019-01-03 19:39 Hanno Boeck
2018-12-31 23:43 Andreas Sturmlechner
2015-12-07  8:22 Justin Lecher
2015-11-18 15:57 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1712165687.fa59a9e412d59a813f75069c51bc9ad37cde1df5.flow@gentoo \
    --to=flow@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox