From 575319695ccf04677439f055c6d0415d8f86bc66 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Fri, 29 Jan 2021 16:39:41 +0100 Subject: games-board/cockatrice: remove unused patch(es) Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger Closes: https://github.com/gentoo/gentoo/pull/19254 Signed-off-by: James Le Cuirot --- .../files/cockatrice-20190304-qt-5.15.patch | 20 ------------- games-board/cockatrice/files/use-ccache.patch | 33 ---------------------- 2 files changed, 53 deletions(-) delete mode 100644 games-board/cockatrice/files/cockatrice-20190304-qt-5.15.patch delete mode 100644 games-board/cockatrice/files/use-ccache.patch (limited to 'games-board') diff --git a/games-board/cockatrice/files/cockatrice-20190304-qt-5.15.patch b/games-board/cockatrice/files/cockatrice-20190304-qt-5.15.patch deleted file mode 100644 index 878a8d428246..000000000000 --- a/games-board/cockatrice/files/cockatrice-20190304-qt-5.15.patch +++ /dev/null @@ -1,20 +0,0 @@ -From 7fa1936d0f4efffa16ae28d6bd3f9e727e207046 Mon Sep 17 00:00:00 2001 -From: ebbit1q -Date: Fri, 19 Jun 2020 16:50:09 +0200 -Subject: [PATCH] qt 5.15 compatibility (#4027) - ---- - cockatrice/src/replay_timeline_widget.cpp | 1 + - 27 files changed, 101 insertions(+), 39 deletions(-) - -diff --git a/cockatrice/src/replay_timeline_widget.cpp b/cockatrice/src/replay_timeline_widget.cpp -index 6d04dce80..e79ad5f5c 100644 ---- a/cockatrice/src/replay_timeline_widget.cpp -+++ b/cockatrice/src/replay_timeline_widget.cpp -@@ -1,6 +1,7 @@ - #include "replay_timeline_widget.h" - #include -+#include - #include - #include - #include diff --git a/games-board/cockatrice/files/use-ccache.patch b/games-board/cockatrice/files/use-ccache.patch deleted file mode 100644 index 16deeaf0bb73..000000000000 --- a/games-board/cockatrice/files/use-ccache.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 494501bbc88d30d9f1ceb6fb3fbd428eeb58ddee Mon Sep 17 00:00:00 2001 -From: James Le Cuirot -Date: Wed, 13 Mar 2019 22:18:45 +0000 -Subject: [PATCH] Add USE_CCACHE option to CMake so that ccache can be forcibly - disabled - ---- - CMakeLists.txt | 15 +++++++++------ - 1 file changed, 9 insertions(+), 6 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index cc39e77..59eec3d 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -25,12 +25,15 @@ ELSE() - ENDIF() - - # Early detect ccache -+OPTION(USE_CCACHE "Cache the build results with ccache" ON) -+if(USE_CCACHE) - find_program(CCACHE_PROGRAM ccache) - if(CCACHE_PROGRAM) - # Support Unix Makefiles and Ninja - set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}") - MESSAGE(STATUS "Found CCache ${CCACHE_PROGRAM}") - endif() -+endif() - - # A project name is needed for CPack - # Version can be overriden by git tags, see cmake/getversion.cmake --- -2.20.1 - -- cgit v1.2.3-65-gdbad