summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2021-01-29 16:39:41 +0100
committerJames Le Cuirot <chewi@gentoo.org>2021-01-29 21:55:53 +0000
commit575319695ccf04677439f055c6d0415d8f86bc66 (patch)
tree6f3cba6e33e060b8cdb38828d0e547aef641e8bf /games-board
parentdev-python/treq: Version bump to 21.1.0 (diff)
downloadgentoo-575319695ccf04677439f055c6d0415d8f86bc66.tar.gz
gentoo-575319695ccf04677439f055c6d0415d8f86bc66.tar.bz2
gentoo-575319695ccf04677439f055c6d0415d8f86bc66.zip
games-board/cockatrice: remove unused patch(es)
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/19254 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-board')
-rw-r--r--games-board/cockatrice/files/cockatrice-20190304-qt-5.15.patch20
-rw-r--r--games-board/cockatrice/files/use-ccache.patch33
2 files changed, 0 insertions, 53 deletions
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 <ebbit1q@gmail.com>
-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 <QPainter>
-+#include <QPainterPath>
- #include <QPalette>
- #include <QTimer>
- #include <cmath>
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 <chewi@gentoo.org>
-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
-