summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-03-14 21:15:55 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2023-03-14 21:15:55 +0100
commitf497b472082bd42e19f6a6d829b31bc15c17c6c1 (patch)
tree94e33d0e8efa97aada556301722e4498ad324589
parentc8545cf3f02cb988fe6eb19407428662c267a20f (diff)
downloadkde-f497b472082bd42e19f6a6d829b31bc15c17c6c1.tar.gz
kde-f497b472082bd42e19f6a6d829b31bc15c17c6c1.tar.bz2
kde-f497b472082bd42e19f6a6d829b31bc15c17c6c1.zip
kde-plasma/plasma-firewall: drop 5.27.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-plasma/plasma-firewall/Manifest1
-rw-r--r--kde-plasma/plasma-firewall/plasma-firewall-5.27.3.ebuild65
2 files changed, 0 insertions, 66 deletions
diff --git a/kde-plasma/plasma-firewall/Manifest b/kde-plasma/plasma-firewall/Manifest
deleted file mode 100644
index 2e9b28f7adc..00000000000
--- a/kde-plasma/plasma-firewall/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST plasma-firewall-5.27.3.tar.xz 361904 BLAKE2B 5561aebe26ff6173eca709ec1bcfc3ad48cb007b13207a89d68403d11aa0ca3cf1b8c5342f22600f30474c81f71444dea670f5193f411c378e077b4dc8d1754f SHA512 6a8a9507a6c819ad308c5e0eb91e5900243c65d8ba02494f857a88cd656ebc0196c88c551d7cfe9e860e93fddd878cd69011acfb08711e0f9b508a7e801c2499
diff --git a/kde-plasma/plasma-firewall/plasma-firewall-5.27.3.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-5.27.3.ebuild
deleted file mode 100644
index 8d777543eab..00000000000
--- a/kde-plasma/plasma-firewall/plasma-firewall-5.27.3.ebuild
+++ /dev/null
@@ -1,65 +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
-}
-
-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
-}