summaryrefslogtreecommitdiff
path: root/kde-misc/plasma-pass/files
diff options
context:
space:
mode:
Diffstat (limited to 'kde-misc/plasma-pass/files')
-rw-r--r--kde-misc/plasma-pass/files/plasma-pass-1.2.0-fix-loggingcategories-dir.patch31
-rw-r--r--kde-misc/plasma-pass/files/plasma-pass-1.2.0-no-werror.patch31
2 files changed, 0 insertions, 62 deletions
diff --git a/kde-misc/plasma-pass/files/plasma-pass-1.2.0-fix-loggingcategories-dir.patch b/kde-misc/plasma-pass/files/plasma-pass-1.2.0-fix-loggingcategories-dir.patch
deleted file mode 100644
index 5131f7dd54b2..000000000000
--- a/kde-misc/plasma-pass/files/plasma-pass-1.2.0-fix-loggingcategories-dir.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 5f62fcc30e7d6c8248dfb6a263ee4a49e7c19e3b Mon Sep 17 00:00:00 2001
-From: Pino Toscano <pino@kde.org>
-Date: Wed, 17 Feb 2021 21:02:08 +0100
-Subject: [PATCH] cmake: install plasma-pass.categories in newer location
-
-Install plasma-pass.categories in the proper location for it, in case
-ECM >= 5.59.0 is used.
----
- CMakeLists.txt | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c0bed60..c32b637 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -53,7 +53,11 @@ add_subdirectory(plugin)
- if (BUILD_TESTING)
- add_subdirectory(tests)
- endif()
--install( FILES plasma-pass.categories DESTINATION ${KDE_INSTALL_CONFDIR} )
-+if(ECM_VERSION VERSION_GREATER_EQUAL 5.59)
-+ install(FILES plasma-pass.categories DESTINATION ${KDE_INSTALL_LOGGINGCATEGORIESDIR})
-+else()
-+ install(FILES plasma-pass.categories DESTINATION ${KDE_INSTALL_CONFDIR})
-+endif()
-
- if(ECM_VERSION VERSION_GREATER_EQUAL 5.79)
- kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
---
-GitLab
-
diff --git a/kde-misc/plasma-pass/files/plasma-pass-1.2.0-no-werror.patch b/kde-misc/plasma-pass/files/plasma-pass-1.2.0-no-werror.patch
deleted file mode 100644
index 42c40bfe923a..000000000000
--- a/kde-misc/plasma-pass/files/plasma-pass-1.2.0-no-werror.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 468db75d4a4f2620921c00ebd91fd7d12e7a2bce Mon Sep 17 00:00:00 2001
-From: David Faure <faure@kde.org>
-Date: Sat, 1 May 2021 21:58:56 +0200
-Subject: [PATCH] Remove -Werror, one can't predict what future compilers will
- do
-
-I assume this was supposed to be set only temporarily.
-
-CCMAIL: dvratil@kde.org
----
- CMakeLists.txt | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 8131494..26cea6e 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -46,8 +46,8 @@ find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
- add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
- add_definitions(-DQT_NO_FOREACH)
-
--set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -pedantic")
--set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -pedantic")
-+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic")
-+set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic")
-
- # plasmoid
- plasma_install_package(package org.kde.plasma.pass)
---
-GitLab
-