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: Mon, 04 Oct 2021 13:04:16
Message-Id: 1633351943.1872208376d5acdef94f1e550431315dce551c43.asturm@gentoo
1 commit: 1872208376d5acdef94f1e550431315dce551c43
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 12:52:23 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 12:52:23 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=18722083
7
8 kde-plasma/plasma-firewall: drop 5.22.90*
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 .../plasma-firewall-5.22.90-r1.ebuild | 64 ----------------------
13 1 file changed, 64 deletions(-)
14
15 diff --git a/kde-plasma/plasma-firewall/plasma-firewall-5.22.90-r1.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-5.22.90-r1.ebuild
16 deleted file mode 100644
17 index dfd7cff045..0000000000
18 --- a/kde-plasma/plasma-firewall/plasma-firewall-5.22.90-r1.ebuild
19 +++ /dev/null
20 @@ -1,64 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -KFMIN=5.86.0
28 -QTMIN=5.15.2
29 -inherit ecm 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="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
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 - >=kde-frameworks/plasma-${KFMIN}:5
55 -"
56 -RDEPEND="${DEPEND}
57 - ${PYTHON_DEPS}
58 - firewalld? ( net-firewall/firewalld )
59 - ufw? ( net-firewall/ufw )
60 -"
61 -
62 -src_prepare() {
63 - ecm_src_prepare
64 - # this kind of cmake magic doesn't work for us at all.
65 - sed -e "1 s:^.*$:\#\!/usr/bin/env ${EPYTHON}:" \
66 - -i kcm/backends/ufw/helper/kcm_ufw_helper.py.cmake || die
67 -}
68 -
69 -src_configure() {
70 - local mycmakeargs=(
71 - -DBUILD_FIREWALLD_BACKEND=$(usex firewalld)
72 - -DBUILD_UFW_BACKEND=$(usex ufw)
73 - )
74 - ecm_src_configure
75 -}
76 -
77 -pkg_postinst () {
78 - ecm_pkg_postinst
79 -
80 - if ! has_version sys-apps/systemd; then
81 - ewarn "${PN} is not functional without sys-apps/systemd at this point."
82 - ewarn "See also: https://bugs.gentoo.org/778527"
83 - fi
84 -}