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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A956C1382C5 for ; Thu, 21 May 2020 18:55:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B55ABE0957; Thu, 21 May 2020 18:55:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E3B6E0957 for ; Thu, 21 May 2020 18:55:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84BBD34EFC4 for ; Thu, 21 May 2020 18:55:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3DEA5230 for ; Thu, 21 May 2020 18:55:28 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1590087318.859a0561299baaa12fab87388ca2c6ac715a47b8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/fwbuilder/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild X-VCS-Directories: net-firewall/fwbuilder/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 859a0561299baaa12fab87388ca2c6ac715a47b8 X-VCS-Branch: master Date: Thu, 21 May 2020 18:55:28 +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: ea007d6d-e5ab-46d6-b9cd-4103cb513395 X-Archives-Hash: 53e8acf4dff523edcfb70741f423713d commit: 859a0561299baaa12fab87388ca2c6ac715a47b8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 21 18:54:54 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 21 18:55:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=859a0561 net-firewall/fwbuilder: EAPI-7, fix HOMEPAGE, fix DESCRIPTION, xdg-utils Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild b/net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild index c1b9b02547e..23cb633f9ae 100644 --- a/net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild +++ b/net-firewall/fwbuilder/fwbuilder-5.3.7.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=7 -inherit autotools gnome2-utils qmake-utils +inherit autotools qmake-utils xdg-utils -DESCRIPTION="A firewall GUI" -HOMEPAGE="http://www.fwbuilder.org/" +DESCRIPTION="GUI management for iptables, PF, Cisco ASA/PIX/FWSM, Cisco router ACL and more" +HOMEPAGE="https://github.com/fwbuilder/fwbuilder" SRC_URI="https://github.com/fwbuilder/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+" @@ -61,12 +61,12 @@ src_install() { } pkg_postinst() { - gnome2_icon_cache_update + xdg_icon_cache_update elog "You need to install sys-apps/iproute2" elog "in order to run the firewall script." } pkg_postrm() { - gnome2_icon_cache_update + xdg_icon_cache_update }