commit: 1330c4fb1e6bd9187f533fdf4617051d88ae3c0c
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 28 17:53:30 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 17:53:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1330c4fb
kde-plasma/plasma-firewall: drop 5.25.1*
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-plasma/plasma-firewall/Manifest | 1 -
.../plasma-firewall/plasma-firewall-5.25.1.ebuild | 63 ----------------------
2 files changed, 64 deletions(-)
diff --git a/kde-plasma/plasma-firewall/Manifest
b/kde-plasma/plasma-firewall/Manifest
index 81dc75d71171..bf8f8421582c 100644
--- a/kde-plasma/plasma-firewall/Manifest
+++ b/kde-plasma/plasma-firewall/Manifest
@@ -1,3 +1,2 @@
DIST plasma-firewall-5.24.5.tar.xz 346660 BLAKE2B
767cd4722325e8035735b744afdccfe4114e68756919f3904fcbd2aa25879b09b7bb4fcaffcaf0a2687f5744e1177fb177658b6af0ed3fef7838498c99f583a3
SHA512
4c774b10c32929399a8b01007e3c34ab702803a0aa80ea812bbcc4d4ead02d0e64136f575454fdc2f0e938740afbf6d48025c654831aa5485b86253418bf13d1
-DIST plasma-firewall-5.25.1.tar.xz 355224 BLAKE2B
08d4e6fb1f12449b9fb84a6b76115ecd9ff7156d43adb8de906277ab7382edd589d79a73ec3c2e3b7a00b59d40027c27000d53dedb1701a4ce7b8516a27aab72
SHA512
8479acdc4d2cd1f1d728ec6eb12f611e6f5c0bda12df6b3dc643db6c49a42bdad1dd723a39318f801a10914135094d27aa3006b5f760678cf12cded1c0a5fa70
DIST plasma-firewall-5.25.2.tar.xz 355264 BLAKE2B
c574fe5e528146758dd26e029852cd6ea0230e93e997f5eae7555d56997b02aae7bb3c540059d9631f65066921d4357baf8d5c07e3055aeaeed70a4ea5e4cacd
SHA512
d462cc1aceed6b6c2aa2d88e7a213fec120e7dad6ea37b61031e38300600a688a1bd4ff0b0a979fe270b69723c891576ce490012975e5fffb55d65a0ca519750
diff --git a/kde-plasma/plasma-firewall/plasma-firewall-5.25.1.ebuild
b/kde-plasma/plasma-firewall/plasma-firewall-5.25.1.ebuild
deleted file mode 100644
index 96805ff1f335..000000000000
--- a/kde-plasma/plasma-firewall/plasma-firewall-5.25.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-KFMIN=5.94.0
-QTMIN=5.15.4
-inherit ecm 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 ~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 )
-"
-
-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
-}