diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-07-24 12:51:46 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-07-24 15:26:08 +0200 |
commit | b2dd52ba759e476a0453ba354a603c91d94c3c1d (patch) | |
tree | 39a326ba1492f257b18cfb65ddc51ad9d62c3878 /kde-plasma/plasma-firewall | |
parent | kde-plasma/plasma-disks: drop 5.27.5 (diff) | |
download | gentoo-b2dd52ba759e476a0453ba354a603c91d94c3c1d.tar.gz gentoo-b2dd52ba759e476a0453ba354a603c91d94c3c1d.tar.bz2 gentoo-b2dd52ba759e476a0453ba354a603c91d94c3c1d.zip |
kde-plasma/plasma-firewall: drop 5.27.5
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-firewall')
-rw-r--r-- | kde-plasma/plasma-firewall/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/plasma-firewall/plasma-firewall-5.27.5.ebuild | 70 |
2 files changed, 0 insertions, 71 deletions
diff --git a/kde-plasma/plasma-firewall/Manifest b/kde-plasma/plasma-firewall/Manifest index 1700afd082a2..a4c596d4fb24 100644 --- a/kde-plasma/plasma-firewall/Manifest +++ b/kde-plasma/plasma-firewall/Manifest @@ -1,2 +1 @@ -DIST plasma-firewall-5.27.5.tar.xz 362476 BLAKE2B 57566389b37f5ad46b06e4b8cbe383362d1dbd7825cd017868b77693d1383deaa2cc9fc670963b7eba359759cad7c124bb72581c025dd0c5990e3a368dc5f79f SHA512 307194544e119efb3291e65076d5f016ae358a24a555aa50036498333f91b45baef4126c3a75fb4ad44fc9288fb89a0c334187625246b2c758ecd6113b80fe89 DIST plasma-firewall-5.27.6.tar.xz 363172 BLAKE2B a999196d3680c959615c09989475312f855f58ce27054627c03daa289369ee12db2754740113e0c0330ddf5096ac12adec03b42003488c7213e0516d07c0dded SHA512 93ba3a0aab403df2174892962cb68c55da6c5ed14bbac1c6de939fdae3077d700e05688f29f16f59107b9b0dccd8d75808c566a55e115bf151452a55a7ea2ca8 diff --git a/kde-plasma/plasma-firewall/plasma-firewall-5.27.5.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-5.27.5.ebuild deleted file mode 100644 index 9bc6068e1218..000000000000 --- a/kde-plasma/plasma-firewall/plasma-firewall-5.27.5.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -ECM_TEST="forceoptional" -PYTHON_COMPAT=( python3_{9..11} ) -KFMIN=5.102.0 -QTMIN=5.15.7 -inherit ecm plasma.kde.org python-single-r1 - -DESCRIPTION="Plasma frontend for Firewalld or UFW" -HOMEPAGE="https://invent.kde.org/network/plasma-firewall" - -LICENSE="GPL-2+" -SLOT="5" -KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86" -IUSE="firewalld +ufw" - -REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( firewalld ufw )" - -DEPEND=" - >=dev-qt/qtdbus-${QTMIN}:5 - >=dev-qt/qtdeclarative-${QTMIN}:5 - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtnetwork-${QTMIN}:5 - >=dev-qt/qtx11extras-${QTMIN}:5 - >=dev-qt/qtxml-${QTMIN}:5 - >=kde-frameworks/kauth-${KFMIN}:5 - >=kde-frameworks/kcmutils-${KFMIN}:5 - >=kde-frameworks/kconfig-${KFMIN}:5 - >=kde-frameworks/kcoreaddons-${KFMIN}:5 - >=kde-frameworks/kdeclarative-${KFMIN}:5 - >=kde-frameworks/ki18n-${KFMIN}:5 -" -RDEPEND="${DEPEND} - ${PYTHON_DEPS} - firewalld? ( net-firewall/firewalld ) - ufw? ( net-firewall/ufw ) -" -BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:5" - -src_prepare() { - ecm_src_prepare - # this kind of cmake magic doesn't work for us at all. - sed -e "1 s:^.*$:\#\!/usr/bin/env ${EPYTHON}:" \ - -i kcm/backends/ufw/helper/kcm_ufw_helper.py.cmake || die -} - -src_configure() { - local mycmakeargs=( - -DBUILD_FIREWALLD_BACKEND=$(usex firewalld) - -DBUILD_UFW_BACKEND=$(usex ufw) - ) - ecm_src_configure -} - -src_test() { - local -x QT_QPA_PLATFORM=offscreen - ecm_src_test -} - -pkg_postinst () { - ecm_pkg_postinst - - if ! has_version sys-apps/systemd; then - ewarn "${PN} is not functional without sys-apps/systemd at this point." - ewarn "See also: https://bugs.gentoo.org/778527" - fi -} |