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 7310F15800F for ; Sat, 7 Jan 2023 07:57:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C772E07E2; Sat, 7 Jan 2023 07:57:29 +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 4899EE07E2 for ; Sat, 7 Jan 2023 07:57:29 +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 56329340E3B for ; Sat, 7 Jan 2023 07:57:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BA217F4 for ; Sat, 7 Jan 2023 07:57:26 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1673078243.967792e36d92e65e33753f336b74155bb76e7c55.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/monitorix/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-misc/monitorix/monitorix-3.15.0.ebuild X-VCS-Directories: www-misc/monitorix/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 967792e36d92e65e33753f336b74155bb76e7c55 X-VCS-Branch: master Date: Sat, 7 Jan 2023 07:57:26 +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: 947b91db-2a24-4527-ad9b-020e8759756e X-Archives-Hash: d3c0c3b82841b8ae15f680acd1e12ae3 commit: 967792e36d92e65e33753f336b74155bb76e7c55 Author: Joonas Niilola gentoo org> AuthorDate: Sat Jan 7 07:56:59 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Jan 7 07:57:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967792e3 www-misc/monitorix: remove redundant sed from 3.15 Signed-off-by: Joonas Niilola gentoo.org> www-misc/monitorix/monitorix-3.15.0.ebuild | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/www-misc/monitorix/monitorix-3.15.0.ebuild b/www-misc/monitorix/monitorix-3.15.0.ebuild index b2cc4792490a..005ac2f5bda9 100644 --- a/www-misc/monitorix/monitorix-3.15.0.ebuild +++ b/www-misc/monitorix/monitorix-3.15.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="8" +EAPI=8 inherit systemd optfeature @@ -14,22 +14,21 @@ SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND=" - acct-user/monitorix acct-group/monitorix + acct-user/monitorix + dev-perl/CGI dev-perl/Config-General dev-perl/DBI dev-perl/HTTP-Server-Simple dev-perl/IO-Socket-SSL - dev-perl/libwww-perl dev-perl/MIME-Lite dev-perl/XML-Simple - net-analyzer/rrdtool[graph,perl] - dev-perl/CGI" + dev-perl/libwww-perl + net-analyzer/rrdtool[graph,perl]" src_prepare() { # Put better Gentoo defaults in the configuration file. - sed -e "s|\(base_dir.*\)/usr/share/${PN}|\1/usr/share/${PN}/htdocs|" \ - -e "s|\(secure_log.*\)/var/log/secure|\1/var/log/auth.log|" \ + sed -e "s|\(secure_log.*\)/var/log/secure|\1/var/log/auth.log|" \ -e "s|nobody|${PN}|g" -i ${PN}.conf || die # Update systemd binary location sed -e "s|/usr/bin|/usr/sbin|g" -i docs/${PN}.service || die