summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-04-04 19:01:55 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-04-06 10:18:12 +0200
commitcfdb78127e181165b0693a640794d83dbba26bf2 (patch)
tree6143b215b2c41b3b3a53463e856157c0c3ca5d5e /kde-apps/akonadi/files
parentdev-libs/plasma-wayland-protocols: Drop 1.2.0-r1 (diff)
downloadgentoo-cfdb78127e181165b0693a640794d83dbba26bf2.tar.gz
gentoo-cfdb78127e181165b0693a640794d83dbba26bf2.tar.bz2
gentoo-cfdb78127e181165b0693a640794d83dbba26bf2.zip
kde-apps/akonadi: drop 20.12.2*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/akonadi/files')
-rw-r--r--kde-apps/akonadi/files/akonadi-20.12.2-mysql8-conf.patch75
1 files changed, 0 insertions, 75 deletions
diff --git a/kde-apps/akonadi/files/akonadi-20.12.2-mysql8-conf.patch b/kde-apps/akonadi/files/akonadi-20.12.2-mysql8-conf.patch
deleted file mode 100644
index 8edf9d605dde..000000000000
--- a/kde-apps/akonadi/files/akonadi-20.12.2-mysql8-conf.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-From 9c666d0d6039a87f6286014c7d9c7281a5bd9dd1 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner <asturm@gentoo.org>
-Date: Tue, 16 Feb 2021 21:38:14 +0100
-Subject: [PATCH] MySQL server settings: Make use of 'loose_' option prefix
-
-Idea by one of the Gentoo MySQL maintainers. This makes MySQL skip over
-unsupported options rather than fail, which is important with >=MySQL-8.
-
-See also:
-https://dev.mysql.com/doc/refman/8.0/en/option-files.html#option-file-syntax
-https://mariadb.com/kb/en/configuring-mariadb-with-option-files/#option-prefixes
-
-BUG: 421922
-
-Thanks-to: Thomas Deutschmann <whissi@gentoo.org>
----
- src/server/storage/mysql-global-mobile.conf | 6 +++---
- src/server/storage/mysql-global.conf | 6 +++---
- 2 files changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/src/server/storage/mysql-global-mobile.conf b/src/server/storage/mysql-global-mobile.conf
-index 19649d347..48e150af7 100644
---- a/src/server/storage/mysql-global-mobile.conf
-+++ b/src/server/storage/mysql-global-mobile.conf
-@@ -65,7 +65,7 @@ innodb_large_prefix=1
- log_error=mysql.err
-
- # print warnings and connection errors (default:1)
--log_warnings=2
-+loose_log_warnings=2
-
- # Convert table named to lowercase
- lower_case_table_names=1
-@@ -80,10 +80,10 @@ max_connections=256
- # (make sense when having the same query multiple times)
-
- # Memory allocated for caching query results (default:0 (disabled))
--query_cache_size=0
-+loose_query_cache_size=0
-
- # Do not cache results (default:1)
--query_cache_type=0
-+loose_query_cache_type=0
-
- # Do not use the privileges mechanisms
- skip_grant_tables
-diff --git a/src/server/storage/mysql-global.conf b/src/server/storage/mysql-global.conf
-index ab4a4a1e3..b67a4ec1e 100644
---- a/src/server/storage/mysql-global.conf
-+++ b/src/server/storage/mysql-global.conf
-@@ -62,7 +62,7 @@ innodb_log_file_size=64M
- log_error=mysql.err
-
- # print warnings and connection errors (default:1)
--log_warnings=2
-+loose_log_warnings=2
-
- # Convert table named to lowercase
- lower_case_table_names=1
-@@ -77,10 +77,10 @@ max_connections=256
- # (make sense when having the same query multiple times)
-
- # Memory allocated for caching query results (default:0 (disabled))
--query_cache_size=0
-+loose_query_cache_size=0
-
- # Do not cache results (default:1)
--query_cache_type=0
-+loose_query_cache_type=0
-
- # Do not use the privileges mechanisms
- skip_grant_tables
---
-2.30.1
-