diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-02-22 11:14:09 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-02-22 11:23:07 +0100 |
commit | f21b65f7413ce6777c3fc43f8b6f88641311899f (patch) | |
tree | 78174ffd82f7d2d06cf27aeeb8fc186cde27e36c /kde-plasma/plasma-firewall | |
parent | kde-plasma/plasma-disks: drop 5.27.0 (diff) | |
download | gentoo-f21b65f7413ce6777c3fc43f8b6f88641311899f.tar.gz gentoo-f21b65f7413ce6777c3fc43f8b6f88641311899f.tar.bz2 gentoo-f21b65f7413ce6777c3fc43f8b6f88641311899f.zip |
kde-plasma/plasma-firewall: drop 5.27.0
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.0.ebuild | 65 |
2 files changed, 0 insertions, 66 deletions
diff --git a/kde-plasma/plasma-firewall/Manifest b/kde-plasma/plasma-firewall/Manifest index caf1e7a1ba23..0873c5c68125 100644 --- a/kde-plasma/plasma-firewall/Manifest +++ b/kde-plasma/plasma-firewall/Manifest @@ -1,3 +1,2 @@ DIST plasma-firewall-5.26.5.tar.xz 358560 BLAKE2B 5a5a15045414879bc155eafdec60941ba62559129cad5eb6b026e98973fa39ca7169e599190e04de5f9a7097727a98283e810f046265da122fd35f87c2be3659 SHA512 cd9ec0eef5511cab11211aac2ed14b593638386d41ce6e378053699418ac8c4698aa42d637763dae56668a794d1f877213a328dee86fe7777b909b3932bfb755 -DIST plasma-firewall-5.27.0.tar.xz 361776 BLAKE2B d7166983b071a976fed9aa09910c72e036bb1a737ea9c189a614007f77312e27246d1862c4462b1f72d02bf631ea0932446cb651fee8fb8f21f646ed905446b3 SHA512 fa493ed2ea25bd94731771506f9041ac2f67ab91f92516122d837da228ca56e6a4fb1c6043b5a2e8155962d6dd1f777f46623733d5d551d7712670eb6914532c DIST plasma-firewall-5.27.1.tar.xz 361820 BLAKE2B 5c134be4e1c074860c71254487dca955b04c1f732559463babee9d00f06415788a26639fd1831ad9f741add18561397609648cb0158272c429b73b1b607abc5d SHA512 eea2b8dc14102830206d0c11ef1927f7e2f10a864f2619f452c09f9ca83906d93607dcbb664a2010b7d38cf5236a6276d1fc54935d2f68b651a5eac67af0d4ea diff --git a/kde-plasma/plasma-firewall/plasma-firewall-5.27.0.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-5.27.0.ebuild deleted file mode 100644 index 8d777543eabd..000000000000 --- a/kde-plasma/plasma-firewall/plasma-firewall-5.27.0.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 -} |