summaryrefslogtreecommitdiff
path: root/kde-apps
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-11-19 03:03:00 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-11-19 03:03:00 +0000
commitf2e359c456b051f95efc92e21299d55a302e58ed (patch)
tree9d844c8fa1373b6f4244c1cfbe55eea7cdf62701 /kde-apps
parentf9f6fa91738181ebe9aca71b75d157d8b5df5335 (diff)
gentoo auto-resync : 19:11:2024 - 03:03:00
Diffstat (limited to 'kde-apps')
-rw-r--r--kde-apps/Manifest.gzbin36245 -> 36243 bytes
-rw-r--r--kde-apps/konsole/Manifest1
-rw-r--r--kde-apps/konsole/files/konsole-24.05.2-cmake.patch136
3 files changed, 0 insertions, 137 deletions
diff --git a/kde-apps/Manifest.gz b/kde-apps/Manifest.gz
index 5bd0fb38ba2d..f9ce72d51af7 100644
--- a/kde-apps/Manifest.gz
+++ b/kde-apps/Manifest.gz
Binary files differ
diff --git a/kde-apps/konsole/Manifest b/kde-apps/konsole/Manifest
index 01a9be612ea2..c7b913abcf26 100644
--- a/kde-apps/konsole/Manifest
+++ b/kde-apps/konsole/Manifest
@@ -1,4 +1,3 @@
-AUX konsole-24.05.2-cmake.patch 4607 BLAKE2B e0ac57c4901a8374625ec368b37f05b86a0be33321902d39138c2e6067043c43be2bd40dfda79f8a2f20fb868e9607e25ee72558154be09f0bdbcb6538ca0a70 SHA512 da8387a5ba1beaffaa42b8b18b2892f16dc5bd60f7a3b4f87285d84992c1c12d8f80b983860b6dd8e12d4cbce50e7c4ccf13d913a8b87d247f82671a3dfda9e7
DIST konsole-24.08.1.tar.xz 1778532 BLAKE2B cd10bd32c9292770b666575e63798db0113e93112132b439c48e752c7efb04b5a0985671f69111b603bb2b11a1f6a6392761831cfeac47cdb5ebd1a0a41d1a77 SHA512 635487b6325159ef01b0eafa593463538275d1882e4befe44f300540e4479df065de90a7d08c7ead5fc88af48f590f4203b1b8e22a318850a0ca43a17e59203d
DIST konsole-24.08.3.tar.xz 1803744 BLAKE2B efdebf8879c4908ff177bbf4961c5da4dd0b0d31eb965eba657011d472b12c181e07d89baf4e176b76fe7a749b2a3cec78760bc11685b751a6e1e9c1e60328fd SHA512 39f012c233517b2185c440b03548502e044b0a6561587e40227ef339637e2fa6b8a635873da028e9356dc99fe2cc76d5dc8d957189f2a4b5eb561543c2ab5cba
EBUILD konsole-24.08.1.ebuild 1749 BLAKE2B 3887716642bd0f44cbd2e27a3a9fa2ac2b9ded800a49f02dbf518ff2999736acdcd2ceb2c569ef5bd05caacd2c7726ddfc041f7867cd735bb417702418e52ee9 SHA512 8b7cc7231adcfaa89735567f88f7002153999a77c9831a94b227c3e5aabb7dc2f578d89d7cf93db795819b84b9f829f52d85775ed81672fadd053a58a7b77074
diff --git a/kde-apps/konsole/files/konsole-24.05.2-cmake.patch b/kde-apps/konsole/files/konsole-24.05.2-cmake.patch
deleted file mode 100644
index 19064a3fde4c..000000000000
--- a/kde-apps/konsole/files/konsole-24.05.2-cmake.patch
+++ /dev/null
@@ -1,136 +0,0 @@
-From 3800a40653355dd165fe68f80611228fa94656ee Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner <asturm@gentoo.org>
-Date: Sun, 7 Jul 2024 23:27:32 +0200
-Subject: [PATCH] Drop faux X11 dependency and switch WITHOUT_X11 option to
- WITH_X11
-
-X11 is nowhere needed in the codebase. Follow-up to 2f116f9fb2438a6e66b6702b3cc2ace9d0205f96
-
-Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-(cherry picked from commit c5f2315c9df05ca069de25ab741d9fc38a6de21a)
----
- CMakeLists.txt | 7 +------
- src/MainWindow.cpp | 8 ++++----
- src/WindowSystemInfo.cpp | 4 ++--
- src/config-konsole.h.cmake | 2 +-
- src/main.cpp | 4 ++--
- 5 files changed, 10 insertions(+), 15 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index bd30a9888..0f00be8f3 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -95,12 +95,7 @@ set_package_properties(KF6DocTools PROPERTIES DESCRIPTION
- find_package(ICU 61.0 COMPONENTS uc i18n REQUIRED)
-
- if(NOT APPLE)
-- option(WITHOUT_X11 "Build without X11 integration (skips finding X11)" OFF)
-- if (NOT WITHOUT_X11)
-- find_package(X11)
-- set_package_properties(X11 PROPERTIES TYPE OPTIONAL)
-- set(HAVE_X11 ${X11_FOUND})
-- endif()
-+ option(WITH_X11 "Build with X11 integration" ON)
- endif()
-
- # Check for function GETPWUID
-diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp
-index c034288df..163105357 100644
---- a/src/MainWindow.cpp
-+++ b/src/MainWindow.cpp
-@@ -35,7 +35,7 @@
- #include <KWindowSystem>
- #include <KXMLGUIFactory>
-
--#if HAVE_X11
-+#if WITH_X11
- #include <KX11Extras>
- #endif
-
-@@ -156,7 +156,7 @@ void MainWindow::activationRequest(const QString &xdgActivationToken)
- KWindowSystem::setCurrentXdgActivationToken(xdgActivationToken);
-
- if (KWindowSystem::isPlatformX11()) {
--#if HAVE_X11
-+#if WITH_X11
- KX11Extras::forceActiveWindow(winId());
- #endif
- } else {
-@@ -713,7 +713,7 @@ bool MainWindow::queryClose()
- // NOTE: Some, if not all, of the below KWindowSystem calls are only
- // implemented under x11 (KDE4.8 kdelibs/kdeui/windowmanagement).
-
--#if HAVE_X11
-+#if WITH_X11
- // make sure the window is shown on current desktop and is not minimized
- KX11Extras::setOnDesktop(winId(), KX11Extras::currentDesktop());
- #endif
-@@ -1022,7 +1022,7 @@ void MainWindow::setRemoveWindowTitleBarAndFrame(bool frameless)
- }
-
- if (KWindowSystem::isPlatformX11()) {
--#if HAVE_X11
-+#if WITH_X11
- const auto oldGeometry = saveGeometry();
- // This happens for every Konsole window. It depends on
- // the fact that every window is processed in single thread
-diff --git a/src/WindowSystemInfo.cpp b/src/WindowSystemInfo.cpp
-index d6cad5f68..28cc3bd6c 100644
---- a/src/WindowSystemInfo.cpp
-+++ b/src/WindowSystemInfo.cpp
-@@ -11,7 +11,7 @@
-
- #include <QtGlobal>
-
--#if HAVE_X11
-+#if WITH_X11
- #include <KWindowSystem>
- #include <KX11Extras>
- #endif
-@@ -22,7 +22,7 @@ bool WindowSystemInfo::HAVE_TRANSPARENCY = false;
-
- bool WindowSystemInfo::compositingActive()
- {
--#if HAVE_X11
-+#if WITH_X11
- return !KWindowSystem::isPlatformX11() || KX11Extras::compositingActive();
- #else
- return true;
-diff --git a/src/config-konsole.h.cmake b/src/config-konsole.h.cmake
-index b860764d3..b9fac1e56 100644
---- a/src/config-konsole.h.cmake
-+++ b/src/config-konsole.h.cmake
-@@ -3,7 +3,7 @@
- /* Defined if on DragonFly BSD */
- #cmakedefine01 HAVE_OS_DRAGONFLYBSD
-
--#cmakedefine01 HAVE_X11
-+#cmakedefine01 WITH_X11
-
- /* If defined, remove public access to dbus sendInput/runCommand */
- #cmakedefine01 REMOVE_SENDTEXT_RUNCOMMAND_DBUS_METHODS
-diff --git a/src/main.cpp b/src/main.cpp
-index 9f3b88286..b05877f3d 100644
---- a/src/main.cpp
-+++ b/src/main.cpp
-@@ -284,7 +284,7 @@ bool shouldUseNewProcess(int argc, char *argv[])
- QStringList qtProblematicOptions;
- qtProblematicOptions << QStringLiteral("--session") << QStringLiteral("--name") << QStringLiteral("--reverse") << QStringLiteral("--stylesheet")
- << QStringLiteral("--graphicssystem");
--#if HAVE_X11
-+#if WITH_X11
- qtProblematicOptions << QStringLiteral("--display") << QStringLiteral("--visual");
- #endif
- for (const QString &option : std::as_const(qtProblematicOptions)) {
-@@ -296,7 +296,7 @@ bool shouldUseNewProcess(int argc, char *argv[])
- // take KDE options into consideration
- QStringList kdeProblematicOptions;
- kdeProblematicOptions << QStringLiteral("--config") << QStringLiteral("--style");
--#if HAVE_X11
-+#if WITH_X11
- kdeProblematicOptions << QStringLiteral("--waitforwm");
- #endif
-
---
-2.45.2
-