From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6C6FA158090 for ; Mon, 9 May 2022 12:07:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EABBE08FA; Mon, 9 May 2022 12:07:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39683E08F7 for ; Mon, 9 May 2022 12:07:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A2523416B3 for ; Mon, 9 May 2022 12:07:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76CB5453 for ; Mon, 9 May 2022 12:07:23 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1652098036.5589f7f841a34f443d806f00e4fdca2ef2a15f05.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/gvm-libs/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/gvm-libs/gvm-libs-21.4.4-r1.ebuild net-analyzer/gvm-libs/gvm-libs-21.4.4-r2.ebuild X-VCS-Directories: net-analyzer/gvm-libs/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 5589f7f841a34f443d806f00e4fdca2ef2a15f05 X-VCS-Branch: master Date: Mon, 9 May 2022 12:07:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a5c83d92-b1eb-41d9-841a-a6e14ac82437 X-Archives-Hash: 730f9fe4ce39558703901fb3e5fc09c8 commit: 5589f7f841a34f443d806f00e4fdca2ef2a15f05 Author: Florian Schmaus gentoo org> AuthorDate: Mon May 9 11:44:44 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon May 9 12:07:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5589f7f8 net-analyzer/gvm-libs: fixes, ebuild style Signed-off-by: Florian Schmaus gentoo.org> ...s-21.4.4-r1.ebuild => gvm-libs-21.4.4-r2.ebuild} | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/net-analyzer/gvm-libs/gvm-libs-21.4.4-r1.ebuild b/net-analyzer/gvm-libs/gvm-libs-21.4.4-r2.ebuild similarity index 86% rename from net-analyzer/gvm-libs/gvm-libs-21.4.4-r1.ebuild rename to net-analyzer/gvm-libs/gvm-libs-21.4.4-r2.ebuild index 54c52a6248a7..e2705199abaa 100644 --- a/net-analyzer/gvm-libs/gvm-libs-21.4.4-r1.ebuild +++ b/net-analyzer/gvm-libs/gvm-libs-21.4.4-r2.ebuild @@ -3,11 +3,10 @@ EAPI=8 -CMAKE_MAKEFILE_GENERATOR="emake" inherit cmake toolchain-funcs -DESCRIPTION="Greenbone vulnerability management libraries, previously named openvas-libraries" -HOMEPAGE="https://www.greenbone.net/en/ https://github.com/greenbone/gvm-libs/" +DESCRIPTION="Greenbone Vulnerability Management (GVM) libraries, previously named openvas-libraries" +HOMEPAGE="https://www.greenbone.net https://github.com/greenbone/gvm-libs/" SRC_URI="https://github.com/greenbone/gvm-libs/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+" @@ -17,7 +16,6 @@ IUSE="doc ldap test radius" RESTRICT="!test? ( test )" DEPEND=" - acct-group/gvm acct-user/gvm app-crypt/gpgme:= dev-libs/glib:2 @@ -33,11 +31,9 @@ DEPEND=" sys-libs/libxcrypt:= sys-libs/zlib ldap? ( net-nds/openldap:= ) - radius? ( net-dialup/freeradius-client )" - -RDEPEND=" - ${DEPEND}" - + radius? ( net-dialup/freeradius-client ) +" +RDEPEND="${DEPEND}" BDEPEND=" dev-vcs/git sys-devel/bison @@ -50,7 +46,8 @@ BDEPEND=" dev-perl/CGI dev-perl/SQL-Translator ) - test? ( dev-libs/cgreen )" + test? ( dev-libs/cgreen ) +" PATCHES=( "${FILESDIR}"/${PN}-20.8.1-disable-automagic-dep.patch @@ -111,5 +108,7 @@ src_install() { # Set proper permissions on required files/directories keepdir /var/lib/gvm - fowners -R gvm:gvm /var/lib/gvm + if ! use prefix; then + fowners -R gvm:gvm /var/lib/gvm + fi }