From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kded/files/, kde-frameworks/kded/
Date: Sat, 22 Apr 2023 16:21:05 +0000 (UTC) [thread overview]
Message-ID: <1682180448.dc96b3626150b4d3ac39c6c78d46217d2c29539b.asturm@gentoo> (raw)
commit: dc96b3626150b4d3ac39c6c78d46217d2c29539b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 22 16:12:37 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 22 16:20:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc96b362
kde-frameworks/kded: drop 5.102.0-r1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-frameworks/kded/Manifest | 1 -
...0-only-recreate-icons-if-icon-dir-changed.patch | 34 ------------------
kde-frameworks/kded/kded-5.102.0-r1.ebuild | 42 ----------------------
3 files changed, 77 deletions(-)
diff --git a/kde-frameworks/kded/Manifest b/kde-frameworks/kded/Manifest
index c4dc945e8061..3c413816d41a 100644
--- a/kde-frameworks/kded/Manifest
+++ b/kde-frameworks/kded/Manifest
@@ -1,3 +1,2 @@
-DIST kded-5.102.0.tar.xz 40968 BLAKE2B d7bf8ac8e5def70dce42afa4050bd1a0ecb5a6354b58ca16eee5cc8ea0ee368c0125e290643318b288cc18db102925bf5a77664b7f23e8e234205d3d95e488a5 SHA512 971eca90bca7218c0637a62740aaefa2bb3fb68a2941bd8c25bf65b79e07b69cdf1d629733b2511382b6fab2cd112f194ef09939d8043e96d9242d4253eb1e83
DIST kded-5.104.0.tar.xz 40996 BLAKE2B 98bd89c5eed1f5c48ec9333a8259aa3042beb9541e6774e3be28bad1dcd714933c4dc1326321382957456915534b31215616237360b7d73885414a71b831f701 SHA512 cee37b7d384db7b4ba283132b60166e14edf58a0941aaac37aab00ceb1958990f9bf963df417d874025c6eaa1b0a89091355207edacbe15735e1115d59c8f11e
DIST kded-5.105.0.tar.xz 41008 BLAKE2B 8c9a036db7a53b722f9afbc0b750bb02652d67867e8f9d27df786b35c567370ef3421f69c4510974a8d2b1acad069081b020288acaade23449d500adef4b5853 SHA512 5c03add4258343dacdeccfd6b4e79a3285b166dda6e01cf2aee5444cad8f41946007ed197e0c91bc3f5062cc1ef9cc254620623c81e5f033b03df7db5a1b8581
diff --git a/kde-frameworks/kded/files/kded-5.102.0-only-recreate-icons-if-icon-dir-changed.patch b/kde-frameworks/kded/files/kded-5.102.0-only-recreate-icons-if-icon-dir-changed.patch
deleted file mode 100644
index 3fd652bd2483..000000000000
--- a/kde-frameworks/kded/files/kded-5.102.0-only-recreate-icons-if-icon-dir-changed.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 23cb03267ae1b1cdb8a75be1992d2fbf122aaa6e Mon Sep 17 00:00:00 2001
-From: David Redondo <kde@david-redondo.de>
-Date: Tue, 24 Jan 2023 10:20:01 +0100
-Subject: [PATCH] Only recreate icons if an icon dir changed
-
-Other paths that we are watching can end in "icons"
-as we are watching subdirs. Make sure to not take the wrong code
-path and only do an icon change if one our watched icon dirs
-changes.
-BUG:463353
-FIXED-IN:5.103
-
-
-(cherry picked from commit b6a3e25e81014110f1e0f470832006cc60cbc86d)
----
- src/kded.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/kded.cpp b/src/kded.cpp
-index 1f90f9c..b473f1c 100644
---- a/src/kded.cpp
-+++ b/src/kded.cpp
-@@ -525,7 +525,7 @@ void Kded::dirDeleted(const QString &path)
-
- void Kded::update(const QString &path)
- {
-- if (path.endsWith(QLatin1String("/icons"))) {
-+ if (path.endsWith(QLatin1String("/icons")) && m_pDirWatch->contains(path)) {
- // If the dir was created or updated there could be new folders to merge into the active theme(s)
- QDBusMessage message = QDBusMessage::createSignal(QStringLiteral("/KIconLoader"), QStringLiteral("org.kde.KIconLoader"), QStringLiteral("iconChanged"));
- message << 0;
---
-GitLab
-
diff --git a/kde-frameworks/kded/kded-5.102.0-r1.ebuild b/kde-frameworks/kded/kded-5.102.0-r1.ebuild
deleted file mode 100644
index e7f6ee3ecfde..000000000000
--- a/kde-frameworks/kded/kded-5.102.0-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_QTHELP="false"
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.5
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Central daemon of KDE workspaces"
-
-LICENSE="LGPL-2+"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
-IUSE="+man"
-
-DEPEND="
- >=dev-qt/qtdbus-${QTMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
- =kde-frameworks/kconfig-${PVCUT}*:5[dbus]
- =kde-frameworks/kcoreaddons-${PVCUT}*:5
- =kde-frameworks/kcrash-${PVCUT}*:5
- =kde-frameworks/kdbusaddons-${PVCUT}*:5
- =kde-frameworks/kinit-${PVCUT}*:5
- =kde-frameworks/kservice-${PVCUT}*:5
-"
-RDEPEND="${DEPEND}"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )"
-
-PATCHES=(
- "${FILESDIR}/${P}-only-recreate-icons-if-icon-dir-changed.patch" # KDE-bug 463353
-)
-
-src_configure() {
- local mycmakeargs=(
- $(cmake_use_find_package man KF5DocTools)
- )
-
- ecm_src_configure
-}
next reply other threads:[~2023-04-22 16:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-22 16:21 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-01-29 0:12 [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kded/files/, kde-frameworks/kded/ Andreas Sturmlechner
2017-12-02 21:57 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=1682180448.dc96b3626150b4d3ac39c6c78d46217d2c29539b.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