public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-firewall/
Date: Wed, 16 Jul 2025 19:03:32 +0000 (UTC)	[thread overview]
Message-ID: <1752692585.91f75d23bdb0a5122f3f18a027865fcfa82c100b.asturm@gentoo> (raw)

commit:     91f75d23bdb0a5122f3f18a027865fcfa82c100b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 15 15:43:52 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jul 16 19:03:05 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91f75d23

kde-plasma/plasma-firewall: drop 6.4.2

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-plasma/plasma-firewall/Manifest                |  1 -
 .../plasma-firewall/plasma-firewall-6.4.2.ebuild   | 60 ----------------------
 2 files changed, 61 deletions(-)

diff --git a/kde-plasma/plasma-firewall/Manifest b/kde-plasma/plasma-firewall/Manifest
index 5e0107d6caed..d6712be3c49f 100644
--- a/kde-plasma/plasma-firewall/Manifest
+++ b/kde-plasma/plasma-firewall/Manifest
@@ -1,4 +1,3 @@
 DIST plasma-firewall-6.3.5.tar.xz 382388 BLAKE2B 8868eb466c9b476978e7d640b2d780d259feb2c562f61cf4aae8097074f55e25662fe1364bf65851a5aeed2db80960b11852eab6abf6e1d2159e7a65f4626f51 SHA512 78545fa56e46c7cce80f68c6f497282b6b47e7ffc50a9b2f2d1899ed4148fe636a7907ab56f01cf1b4eccf8517cfe662d82340f2acd445c1eb9dcf46437f6838
 DIST plasma-firewall-6.3.6.tar.xz 381556 BLAKE2B 04d7bc5e8439396c322da1d05848d0864a06f53819e9b92bb8d2cd764ae322ac44bea34621a0f920c3735264aafef2baf93e8eaf4b03ef08bb162e2c97d05daa SHA512 ff7e16f40197acdd11c90c4ebec590890107abe02530553785371dddf7c31db88d940fb81b059a37de0e08e0eb4147aef9fb5111ff08150a2b7c218d7b72b478
-DIST plasma-firewall-6.4.2.tar.xz 381872 BLAKE2B 3e429eba70fa0ab93bb73e810daf75b74613723d3d8e53efa15b7f6cf40e3308c946e76e504226dba40cdd1b2430a5ad5c069730df39638308ba6a6d2b11faec SHA512 4c2b68e67fe912c0d0bbd8efe6295b19bac1284a3f7686267f23beb48131d0f4de4283e195b02597d02d0f075f6ee736deb1c98da36cbfebaeca2418a841227c
 DIST plasma-firewall-6.4.3.tar.xz 381816 BLAKE2B 073eb8285100c9d535e3b5b3e7a23c4ecc333196f4fe7a828a2c3c9e5224cbb3582743d0a0c8f0ea3f8fb87a5117ae04ae1839d13a2e9340119be6ab2425b0ed SHA512 307784f589f1818d0d3ad8e8b1b6bfe48ec23ccf9c6260864d4a60b67c0478fcf56db4ce6d4cb6b42da787bb591944e9f6d62b1591c90093640dfa437e81dd1b

diff --git a/kde-plasma/plasma-firewall/plasma-firewall-6.4.2.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-6.4.2.ebuild
deleted file mode 100644
index 315445c9097b..000000000000
--- a/kde-plasma/plasma-firewall/plasma-firewall-6.4.2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_TEST="forceoptional"
-PYTHON_COMPAT=( python3_{10..13} )
-KFMIN=6.14.0
-QTMIN=6.8.1
-inherit ecm plasma.kde.org python-single-r1 xdg
-
-DESCRIPTION="Plasma frontend for Firewalld or UFW"
-HOMEPAGE="https://invent.kde.org/network/plasma-firewall"
-
-LICENSE="GPL-2+"
-SLOT="6"
-KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="firewalld +ufw"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( firewalld ufw )"
-
-DEPEND="
-	>=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,xml]
-	>=dev-qt/qtdeclarative-${QTMIN}:6
-	>=kde-frameworks/kauth-${KFMIN}:6
-	>=kde-frameworks/kcmutils-${KFMIN}:6
-	>=kde-frameworks/kconfig-${KFMIN}:6
-	>=kde-frameworks/kcoreaddons-${KFMIN}:6
-	>=kde-frameworks/ki18n-${KFMIN}:6
-"
-RDEPEND="${DEPEND}
-	${PYTHON_DEPS}
-	firewalld? ( net-firewall/firewalld )
-	ufw? ( net-firewall/ufw )
-"
-BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6"
-
-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 () {
-	xdg_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
-}


             reply	other threads:[~2025-07-16 19:03 UTC|newest]

Thread overview: 170+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-16 19:03 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-17 12:13 [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-firewall/ Arthur Zamarin
2025-09-17 11:36 Arthur Zamarin
2025-09-09 15:09 Andreas Sturmlechner
2025-08-05 21:23 Andreas Sturmlechner
2025-07-15 15:37 Andreas Sturmlechner
2025-07-09 16:26 Andreas Sturmlechner
2025-07-02 17:22 Andreas Sturmlechner
2025-07-01 19:41 Andreas Sturmlechner
2025-06-24 18:11 Andreas Sturmlechner
2025-06-17 18:08 Andreas Sturmlechner
2025-05-26 18:04 Andreas Sturmlechner
2025-05-26  4:58 Sam James
2025-05-21 11:02 Arthur Zamarin
2025-05-06 19:21 Andreas Sturmlechner
2025-04-24 22:16 Sam James
2025-04-02 16:34 Andreas Sturmlechner
2025-03-11 20:52 Andreas Sturmlechner
2025-02-25 17:37 Andreas Sturmlechner
2025-02-18 18:44 Andreas Sturmlechner
2025-02-11 17:59 Andreas Sturmlechner
2025-01-26 11:19 Arthur Zamarin
2025-01-10 10:13 WANG Xuerui
2025-01-01 21:05 Andreas Sturmlechner
2024-12-10 23:46 Andreas Sturmlechner
2024-12-04 17:43 Sam James
2024-11-26 18:25 Andreas Sturmlechner
2024-10-22 15:45 Andreas Sturmlechner
2024-10-15 18:03 Andreas Sturmlechner
2024-10-08 15:36 Andreas Sturmlechner
2024-10-07 18:02 Andreas Sturmlechner
2024-10-04  8:48 Sam James
2024-09-21  7:13 Arthur Zamarin
2024-09-21  7:12 Arthur Zamarin
2024-09-10 16:36 Andreas Sturmlechner
2024-08-06 14:26 Andreas Sturmlechner
2024-07-26 11:17 Arthur Zamarin
2024-07-16 16:32 Andreas Sturmlechner
2024-07-12 15:24 Arthur Zamarin
2024-07-02 17:57 Andreas Sturmlechner
2024-07-02 12:07 Jakov Smolić
2024-06-27 17:18 Andreas Sturmlechner
2024-06-27 10:04 Sam James
2024-06-27  9:43 Arthur Zamarin
2024-06-25 22:33 Sam James
2024-06-18 14:52 Andreas Sturmlechner
2024-04-16 19:54 Andreas Sturmlechner
2024-03-26 19:56 Andreas Sturmlechner
2024-03-12 16:32 Andreas Sturmlechner
2024-03-11 20:57 Arthur Zamarin
2024-03-11 13:17 Arthur Zamarin
2024-03-06 19:34 Andreas Sturmlechner
2024-03-06 15:47 Andreas Sturmlechner
2024-03-04 23:15 Andreas Sturmlechner
2024-02-17  5:25 Sam James
2023-12-23 18:30 Andreas Sturmlechner
2023-12-20  8:45 Arthur Zamarin
2023-12-07  9:06 Andreas Sturmlechner
2023-11-23 16:51 Sam James
2023-11-23 16:38 Sam James
2023-11-23 15:16 Sam James
2023-10-24 22:37 Sam James
2023-09-26 18:14 Arthur Zamarin
2023-09-26 15:35 Arthur Zamarin
2023-09-26 15:28 Arthur Zamarin
2023-09-13 17:44 Andreas Sturmlechner
2023-08-16 16:31 Andreas Sturmlechner
2023-08-16 13:33 Arthur Zamarin
2023-08-16 13:23 Arthur Zamarin
2023-08-01 10:58 Andreas Sturmlechner
2023-07-23 21:54 Sam James
2023-07-15 10:31 Arthur Zamarin
2023-06-20 22:24 Andreas Sturmlechner
2023-05-22 12:55 Andreas Sturmlechner
2023-05-22  8:27 Arthur Zamarin
2023-05-21 19:51 Sam James
2023-05-21  6:10 Arthur Zamarin
2023-05-09 15:01 Andreas Sturmlechner
2023-04-22 15:10 Arthur Zamarin
2023-04-22 15:04 Arthur Zamarin
2023-04-22 14:57 Arthur Zamarin
2023-04-17 17:17 Andreas Sturmlechner
2023-04-10 18:35 Andreas Sturmlechner
2023-04-04 19:07 Andreas Sturmlechner
2023-03-14 20:14 Andreas Sturmlechner
2023-02-28 15:44 Andreas Sturmlechner
2023-02-22 10:23 Andreas Sturmlechner
2023-02-14 11:27 Andreas Sturmlechner
2023-02-05 18:32 Andreas Sturmlechner
2023-02-01  9:47 Andreas Sturmlechner
2023-02-01  6:41 Arthur Zamarin
2023-01-24 18:40 Arthur Zamarin
2023-01-20 13:11 Andreas Sturmlechner
2023-01-04 15:20 Andreas Sturmlechner
2022-12-09  8:20 Arthur Zamarin
2022-11-29 18:59 Andreas Sturmlechner
2022-11-08 16:11 Andreas Sturmlechner
2022-10-29 14:03 Yixun Lan
2022-10-26 13:51 Andreas Sturmlechner
2022-10-26  4:42 Arthur Zamarin
2022-10-18 13:47 Andreas Sturmlechner
2022-10-11 12:40 Andreas Sturmlechner
2022-10-10  9:54 Andreas Sturmlechner
2022-09-30  3:52 Sam James
2022-09-30  2:18 Sam James
2022-09-06 19:22 Andreas Sturmlechner
2022-08-07 15:51 Andreas Sturmlechner
2022-08-07  5:12 Sam James
2022-08-02 18:38 Andreas Sturmlechner
2022-07-30  8:51 Agostino Sarubbo
2022-07-28 11:03 Agostino Sarubbo
2022-07-13  9:17 Andreas Sturmlechner
2022-06-28 17:54 Andreas Sturmlechner
2022-06-21 21:28 Andreas Sturmlechner
2022-06-14 12:44 Andreas Sturmlechner
2022-05-29 20:44 Andreas Sturmlechner
2022-05-28 20:35 Jakov Smolić
2022-05-28  7:04 Agostino Sarubbo
2022-05-27 11:14 Jakov Smolić
2022-05-03 22:41 Sam James
2022-04-29 13:33 Agostino Sarubbo
2022-04-29 13:29 Agostino Sarubbo
2022-04-29  5:38 Sam James
2022-03-29 15:57 Andreas Sturmlechner
2022-03-08 17:18 Andreas Sturmlechner
2022-02-22 16:55 Andreas Sturmlechner
2022-02-15 17:51 Andreas Sturmlechner
2022-02-08 13:10 Andreas Sturmlechner
2022-01-25  9:49 Andreas Sturmlechner
2022-01-24 22:37 Sam James
2022-01-19  9:26 Jakov Smolić
2022-01-18 23:39 Jakov Smolić
2022-01-18 17:40 Andreas Sturmlechner
2022-01-04 15:10 Andreas Sturmlechner
2021-12-14  9:27 Andreas Sturmlechner
2021-12-13 23:04 Sam James
2021-12-13 18:32 Jakov Smolić
2021-12-13  0:10 Sam James
2021-11-30 14:32 Andreas Sturmlechner
2021-11-09 17:15 Andreas Sturmlechner
2021-10-31  3:17 Sam James
2021-10-27  5:02 Sam James
2021-10-20  6:51 Andreas Sturmlechner
2021-10-14 10:32 Andreas Sturmlechner
2021-10-01  6:44 Andreas Sturmlechner
2021-09-23  0:29 Sam James
2021-09-16 11:14 Andreas Sturmlechner
2021-09-16  1:20 Sam James
2021-09-15  2:24 Sam James
2021-08-18  0:35 Yixun Lan
2021-07-29 18:03 Andreas Sturmlechner
2021-07-27 19:15 Andreas Sturmlechner
2021-07-06 17:20 Andreas Sturmlechner
2021-06-23  6:27 Andreas Sturmlechner
2021-06-16 14:14 Sam James
2021-06-16 12:32 Sam James
2021-06-12 12:52 Sam James
2021-06-12  6:25 Sam James
2021-06-12  1:03 Sam James
2021-06-10 18:05 Georgy Yakovlev
2021-06-05 10:57 Mikle Kolyada
2021-05-09 12:11 Andreas Sturmlechner
2021-04-06 14:12 Andreas Sturmlechner
2021-03-16 14:43 Andreas Sturmlechner
2021-03-02 20:24 Andreas Sturmlechner
2021-02-23 21:19 Andreas Sturmlechner
2021-02-22  8:31 Sam James
2021-02-22  7:14 Sam James
2021-02-22  7:12 Sam James
2021-02-16 14:39 Andreas Sturmlechner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1752692585.91f75d23bdb0a5122f3f18a027865fcfa82c100b.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox