aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-05-27 19:48:08 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2024-05-27 19:48:08 +0200
commit29f4279b550974c41cc97b070c4c4f0a88e95b2f (patch)
treea8fbb02800cae82920b8c04ff604328aaa8cf117 /kde-plasma/plasma-firewall
parentkde-plasma/plasma-disks: drop 6.0.90 (diff)
downloadkde-29f4279b550974c41cc97b070c4c4f0a88e95b2f.tar.gz
kde-29f4279b550974c41cc97b070c4c4f0a88e95b2f.tar.bz2
kde-29f4279b550974c41cc97b070c4c4f0a88e95b2f.zip
kde-plasma/plasma-firewall: drop 6.0.90
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-firewall')
-rw-r--r--kde-plasma/plasma-firewall/Manifest1
-rw-r--r--kde-plasma/plasma-firewall/plasma-firewall-6.0.90.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/kde-plasma/plasma-firewall/Manifest b/kde-plasma/plasma-firewall/Manifest
deleted file mode 100644
index a32e415305..0000000000
--- a/kde-plasma/plasma-firewall/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST plasma-firewall-6.0.90.tar.xz 372752 BLAKE2B f69d46b1cb1e4bce83a259094986f7641d77434d718fc710ec88eccedfa8c0c184f75e3db1a14dd7b83f7d52ab699dc4d78f2fec4698524d9e467143d847edb7 SHA512 dd9b791b0099212d5309724bb61c7cb64d75704efd888877a4a24b8a8683a99f811de63b55b804d2993c14d93ad162fb20e5c5569f0f2d749c51483d7e844268
diff --git a/kde-plasma/plasma-firewall/plasma-firewall-6.0.90.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-6.0.90.ebuild
deleted file mode 100644
index 5d2362ffcf..0000000000
--- a/kde-plasma/plasma-firewall/plasma-firewall-6.0.90.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_TEST="forceoptional"
-PYTHON_COMPAT=( python3_{10..12} )
-KFMIN=6.2.0
-QTMIN=6.7.1
-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="6"
-KEYWORDS="~amd64"
-IUSE="firewalld +ufw"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( firewalld ufw )"
-
-DEPEND="
- >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,xml]
- >=dev-qt/qtdeclarative-${QTMIN}:6
- >=kde-frameworks/kauth-${KFMIN}:6
- >=kde-frameworks/kcmutils-${KFMIN}:6
- >=kde-frameworks/kconfig-${KFMIN}:6
- >=kde-frameworks/kcoreaddons-${KFMIN}:6
- >=kde-frameworks/ki18n-${KFMIN}:6
-"
-RDEPEND="${DEPEND}
- ${PYTHON_DEPS}
- firewalld? ( net-firewall/firewalld )
- ufw? ( net-firewall/ufw )
-"
-BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6"
-
-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
-}