Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-firewall/
Date: Tue, 08 Feb 2022 13:10:43
Message-Id: 1644325811.861efaddb52c522bc67f2cc9189bcb4b57eafeb5.asturm@gentoo
1 commit: 861efaddb52c522bc67f2cc9189bcb4b57eafeb5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 8 13:05:22 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 8 13:10:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=861efadd
7
8 kde-plasma/plasma-firewall: drop 5.23.90*
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 kde-plasma/plasma-firewall/Manifest | 1 -
13 .../plasma-firewall/plasma-firewall-5.23.90.ebuild | 64 ----------------------
14 2 files changed, 65 deletions(-)
15
16 diff --git a/kde-plasma/plasma-firewall/Manifest b/kde-plasma/plasma-firewall/Manifest
17 index 678a973cdb8e..d34adfc24a3b 100644
18 --- a/kde-plasma/plasma-firewall/Manifest
19 +++ b/kde-plasma/plasma-firewall/Manifest
20 @@ -1,3 +1,2 @@
21 DIST plasma-firewall-5.23.5.tar.xz 344132 BLAKE2B 3277329f223f5b4afe33bcf663b8c9f999a8dda4cab593e04d57fb8b2d6d4d899f76f803ca6cc8e3ef718bbcb09f2cb6d24dbaa1c3abcbfa5e163dd791f066ca SHA512 c18b25ad85f57da80edfc03cd445d317162ad2f952fe7ecd09f43af274798acd965de0f8643a636bee74e3572f0ab66f3db876126009b9c98f486a1cfe0e386e
22 -DIST plasma-firewall-5.23.90.tar.xz 345700 BLAKE2B fe77b1011f5d53910cfbadbed45c43e850381e89ece154bf3d93e1e8bb2f6a1aae3974354bc9506a34703a4fc078b0447bba85a57f505972a0db5532bcbfab67 SHA512 da8fea62ccdcee0945b04a04c02f92d4664194ce0b0d661ab4053d7e32cce5ac303b6c995ffc5246b2f1cf6c5f60b75f70713d33ebb06980beb855acc29f1a93
23 DIST plasma-firewall-5.24.0.tar.xz 344992 BLAKE2B 593b8e1133b9c3e6778f3d95d87ee0c3dda9888ab3ab170f78ee1160207054b609933638c12ba88052c13f8204ce894201bf8a005364587cba509d6f0e04706f SHA512 6b07149dc4c2e20d901327ea8e99d85ddcddc006df3354ad57660280d54d1d8164e8862f145b2ca232e054c440602ba61fbe249cd0c29781fb2cc2c6adf7730c
24
25 diff --git a/kde-plasma/plasma-firewall/plasma-firewall-5.23.90.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-5.23.90.ebuild
26 deleted file mode 100644
27 index 5ac26b7e39d1..000000000000
28 --- a/kde-plasma/plasma-firewall/plasma-firewall-5.23.90.ebuild
29 +++ /dev/null
30 @@ -1,64 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -KFMIN=5.90.0
38 -QTMIN=5.15.2
39 -inherit ecm kde.org python-single-r1
40 -
41 -DESCRIPTION="Plasma frontend for Firewalld or UFW"
42 -HOMEPAGE="https://invent.kde.org/network/plasma-firewall"
43 -
44 -LICENSE="GPL-2+"
45 -SLOT="5"
46 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
47 -IUSE="firewalld +ufw"
48 -
49 -REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( firewalld ufw )"
50 -
51 -DEPEND="
52 - >=dev-qt/qtdbus-${QTMIN}:5
53 - >=dev-qt/qtdeclarative-${QTMIN}:5
54 - >=dev-qt/qtgui-${QTMIN}:5
55 - >=dev-qt/qtnetwork-${QTMIN}:5
56 - >=dev-qt/qtx11extras-${QTMIN}:5
57 - >=dev-qt/qtxml-${QTMIN}:5
58 - >=kde-frameworks/kauth-${KFMIN}:5
59 - >=kde-frameworks/kcmutils-${KFMIN}:5
60 - >=kde-frameworks/kconfig-${KFMIN}:5
61 - >=kde-frameworks/kcoreaddons-${KFMIN}:5
62 - >=kde-frameworks/kdeclarative-${KFMIN}:5
63 - >=kde-frameworks/ki18n-${KFMIN}:5
64 - >=kde-frameworks/plasma-${KFMIN}:5
65 -"
66 -RDEPEND="${DEPEND}
67 - ${PYTHON_DEPS}
68 - firewalld? ( net-firewall/firewalld )
69 - ufw? ( net-firewall/ufw )
70 -"
71 -
72 -src_prepare() {
73 - ecm_src_prepare
74 - # this kind of cmake magic doesn't work for us at all.
75 - sed -e "1 s:^.*$:\#\!/usr/bin/env ${EPYTHON}:" \
76 - -i kcm/backends/ufw/helper/kcm_ufw_helper.py.cmake || die
77 -}
78 -
79 -src_configure() {
80 - local mycmakeargs=(
81 - -DBUILD_FIREWALLD_BACKEND=$(usex firewalld)
82 - -DBUILD_UFW_BACKEND=$(usex ufw)
83 - )
84 - ecm_src_configure
85 -}
86 -
87 -pkg_postinst () {
88 - ecm_pkg_postinst
89 -
90 - if ! has_version sys-apps/systemd; then
91 - ewarn "${PN} is not functional without sys-apps/systemd at this point."
92 - ewarn "See also: https://bugs.gentoo.org/778527"
93 - fi
94 -}