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 0F7DD158094 for ; Thu, 21 Jul 2022 22:40:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E9EDE0871; Thu, 21 Jul 2022 22:40:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 2C981E0871 for ; Thu, 21 Jul 2022 22:40:03 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BAA3341040 for ; Thu, 21 Jul 2022 22:40:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADAFA542 for ; Thu, 21 Jul 2022 22:39:59 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1658443161.28f7686eec572ee9d5e6c956b68c4582197f763d.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/firehol/firehol-3.1.7-r1.ebuild net-firewall/firehol/firehol-3.1.7-r2.ebuild X-VCS-Directories: net-firewall/firehol/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 28f7686eec572ee9d5e6c956b68c4582197f763d X-VCS-Branch: master Date: Thu, 21 Jul 2022 22:39:59 +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: 85d557f4-1587-42f5-b03b-c07bdf32ae6f X-Archives-Hash: 4390c1a982fedc4fd1e1bd73a9d27413 commit: 28f7686eec572ee9d5e6c956b68c4582197f763d Author: James Le Cuirot gentoo org> AuthorDate: Thu Jul 21 22:39:21 2022 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Thu Jul 21 22:39:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f7686e net-firewall/firehol: Install systemd service units, EAPI 8 Closes: https://bugs.gentoo.org/856964 Signed-off-by: James Le Cuirot gentoo.org> .../firehol/{firehol-3.1.7-r1.ebuild => firehol-3.1.7-r2.ebuild} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/net-firewall/firehol/firehol-3.1.7-r1.ebuild b/net-firewall/firehol/firehol-3.1.7-r2.ebuild similarity index 94% rename from net-firewall/firehol/firehol-3.1.7-r1.ebuild rename to net-firewall/firehol/firehol-3.1.7-r2.ebuild index 1432243602f9..79ef83977169 100644 --- a/net-firewall/firehol/firehol-3.1.7-r1.ebuild +++ b/net-firewall/firehol/firehol-3.1.7-r2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit linux-info +inherit linux-info systemd DESCRIPTION="iptables firewall generator" HOMEPAGE="https://firehol.org/ https://github.com/firehol/firehol" @@ -64,4 +64,6 @@ src_install() { newinitd "${FILESDIR}"/firehol.initd firehol newconfd "${FILESDIR}"/fireqos.confd fireqos newinitd "${FILESDIR}"/fireqos.initd fireqos + + systemd_dounit contrib/fire{hol,qos}.service }