Gentoo Archives: gentoo-commits

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