* [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-server/files/
@ 2019-03-14 13:58 Brian Evans
0 siblings, 0 replies; 6+ messages in thread
From: Brian Evans @ 2019-03-14 13:58 UTC (permalink / raw
To: gentoo-commits
commit: 67a0008b0a574ea8e092f88e78f7464a272d28d8
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 14 13:58:31 2019 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Thu Mar 14 13:58:31 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67a0008b
dev-db/percona-server: Fix config variable that could stop mysqldump
Make the option loose such that those that use it will and ignored by others
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
dev-db/percona-server/files/my.cnf.distro-client | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-db/percona-server/files/my.cnf.distro-client b/dev-db/percona-server/files/my.cnf.distro-client
index 8bf18363430..a5a0dcb0c16 100644
--- a/dev-db/percona-server/files/my.cnf.distro-client
+++ b/dev-db/percona-server/files/my.cnf.distro-client
@@ -4,7 +4,7 @@
[client]
socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock
character-sets-dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets
-default-character-set=utf8
+loose-default-character-set=utf8
[mysql]
# uncomment the next directive if you are not familiar with SQL
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-server/files/
@ 2019-10-31 1:45 Thomas Deutschmann
0 siblings, 0 replies; 6+ messages in thread
From: Thomas Deutschmann @ 2019-10-31 1:45 UTC (permalink / raw
To: gentoo-commits
commit: 1e197b6d121108fc0ffcfc7c294f9d6aa5bbb423
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 31 01:45:20 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Oct 31 01:45:35 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e197b6d
dev-db/percona-server: add missing files
Fixes 1675444 ("dev-db/percona-server: bump to v8.0.17-8")
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
.../percona-server/files/my.cnf-8.0.distro-client | 23 +++++++++++++++++
.../percona-server/files/my.cnf-8.0.distro-server | 30 ++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/dev-db/percona-server/files/my.cnf-8.0.distro-client b/dev-db/percona-server/files/my.cnf-8.0.distro-client
new file mode 100644
index 00000000000..1c2ee7da1d9
--- /dev/null
+++ b/dev-db/percona-server/files/my.cnf-8.0.distro-client
@@ -0,0 +1,23 @@
+# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/mysql.d/50-distro-client.cnf: The global mysql configuration file.
+
+# The following options will be passed to all MySQL clients
+[client]
+# Should match default server to save a round trip
+loose-default-auth = mysql_native_password
+socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock
+character-sets-dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets
+loose-default-character-set = utf8mb4
+
+[mysql]
+# uncomment the next directive if you are not familiar with SQL
+#safe-updates
+
+[mysqldump]
+quick
+max_allowed_packet = 16M
+
+[myisamchk]
+character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets
+
+[myisampack]
+character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets
diff --git a/dev-db/percona-server/files/my.cnf-8.0.distro-server b/dev-db/percona-server/files/my.cnf-8.0.distro-server
new file mode 100644
index 00000000000..ac087963972
--- /dev/null
+++ b/dev-db/percona-server/files/my.cnf-8.0.distro-server
@@ -0,0 +1,30 @@
+# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/mysql.d/50-distro-server.cnf: The global mysql configuration file.
+
+# add a section [mysqld-8.0] for specific configurations
+[mysqld]
+# Using "mysql_native_password" for compatibility with Perl, PHP, Ruby...
+loose-default-authentication-plugin = mysql_native_password
+character-set-server = utf8mb4
+user = mysql
+port = 3306
+socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock
+pid-file = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysql.pid
+log-error = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err
+basedir = @GENTOO_PORTAGE_EPREFIX@/usr
+datadir = @DATADIR@
+skip-external-locking
+lc_messages_dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql
+#Set this to your desired error message language
+lc_messages = en_US
+
+# security:
+# using "localhost" in connects uses sockets by default
+# skip-networking
+bind-address = 127.0.0.1
+
+log-bin
+server-id = 1
+
+# point the following paths to different dedicated disks
+#tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/
+#log-update = @GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-server/files/
@ 2020-12-21 17:02 Thomas Deutschmann
0 siblings, 0 replies; 6+ messages in thread
From: Thomas Deutschmann @ 2020-12-21 17:02 UTC (permalink / raw
To: gentoo-commits
commit: 727f12a00c711a1e1053cab3896422e2ab729104
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 21 17:02:32 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Dec 21 17:02:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=727f12a0
dev-db/percona-server: restore still required file
Fixes: 61ffd3034c1b ("dev-db/percona-server: drop old")
Closes: https://bugs.gentoo.org/760953
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-db/percona-server/files/my.cnf-5.7 | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dev-db/percona-server/files/my.cnf-5.7 b/dev-db/percona-server/files/my.cnf-5.7
new file mode 100644
index 00000000000..571ebf07a76
--- /dev/null
+++ b/dev-db/percona-server/files/my.cnf-5.7
@@ -0,0 +1,3 @@
+# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration file.
+
+!includedir @GENTOO_PORTAGE_EPREFIX@/etc/mysql/mysql.d
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-server/files/
@ 2021-01-25 15:01 Aaron Bauman
0 siblings, 0 replies; 6+ messages in thread
From: Aaron Bauman @ 2021-01-25 15:01 UTC (permalink / raw
To: gentoo-commits
commit: bd72a415a662480658a0061a789199002748e46d
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Thu Jan 21 15:44:34 2021 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Jan 25 15:01:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd72a415
dev-db/percona-server: remove unused files
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19151
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
dev-db/percona-server/files/my.cnf.distro-client | 21 ------------------
dev-db/percona-server/files/my.cnf.distro-server | 28 ------------------------
2 files changed, 49 deletions(-)
diff --git a/dev-db/percona-server/files/my.cnf.distro-client b/dev-db/percona-server/files/my.cnf.distro-client
deleted file mode 100644
index a5a0dcb0c16..00000000000
--- a/dev-db/percona-server/files/my.cnf.distro-client
+++ /dev/null
@@ -1,21 +0,0 @@
-# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/50-distro-client.cnf: The global mysql configuration file.
-
-# The following options will be passed to all MySQL clients
-[client]
-socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock
-character-sets-dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets
-loose-default-character-set=utf8
-
-[mysql]
-# uncomment the next directive if you are not familiar with SQL
-#safe-updates
-
-[mysqldump]
-quick
-max_allowed_packet = 16M
-
-[myisamchk]
-character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets
-
-[myisampack]
-character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets
diff --git a/dev-db/percona-server/files/my.cnf.distro-server b/dev-db/percona-server/files/my.cnf.distro-server
deleted file mode 100644
index d4ed30c1f08..00000000000
--- a/dev-db/percona-server/files/my.cnf.distro-server
+++ /dev/null
@@ -1,28 +0,0 @@
-# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/50-distro-server.cnf: The global mysql configuration file.
-
-# add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations
-[mysqld]
-character-set-server = utf8
-user = mysql
-port = 3306
-socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock
-pid-file = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysql.pid
-log-error = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err
-basedir = @GENTOO_PORTAGE_EPREFIX@/usr
-datadir = @DATADIR@
-skip-external-locking
-lc_messages_dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mysql
-#Set this to your desired error message language
-lc_messages = en_US
-
-# security:
-# using "localhost" in connects uses sockets by default
-# skip-networking
-bind-address = 127.0.0.1
-
-log-bin
-server-id = 1
-
-# point the following paths to different dedicated disks
-tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/
-#log-update = @GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-server/files/
@ 2022-06-21 4:57 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-06-21 4:57 UTC (permalink / raw
To: gentoo-commits
commit: 967fede5c362faa77db1329ce70e56e6870274b9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 04:48:46 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 04:49:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967fede5
dev-db/percona-server: fix build with GCC 12
Closes: https://bugs.gentoo.org/853085
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../files/percona-server-8.0.26.16-gcc-12.patch | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-12.patch b/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-12.patch
index f80b02ff2eb2..1780d7e478f5 100644
--- a/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-12.patch
+++ b/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-12.patch
@@ -1,4 +1,5 @@
https://bugs.gentoo.org/842168
+https://bugs.gentoo.org/853085
--- a/client/logger.cc
+++ b/client/logger.cc
@@ -27,6 +27,7 @@
@@ -19,3 +20,13 @@ https://bugs.gentoo.org/842168
#include <sstream>
#include <m_string.h>
+--- a/plugin/auth_ldap/src/connection.cc
++++ b/plugin/auth_ldap/src/connection.cc
+@@ -1,6 +1,7 @@
+ #include "plugin/auth_ldap/include/connection.h"
+
+ #include <iostream>
++#include <iterator>
+ #include <regex>
+
+ #include "plugin/auth_ldap/include/plugin_log.h"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-server/files/
@ 2022-06-30 21:32 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-06-30 21:32 UTC (permalink / raw
To: gentoo-commits
commit: 5a76bbcc1f10e8b9d5647155984b4aac029ef6ce
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 30 21:22:45 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 30 21:32:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a76bbcc
dev-db/percona-server: fix build with GCC 12
Closes: https://bugs.gentoo.org/855170
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../files/percona-server-8.0.26.16-gcc-12.patch | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-12.patch b/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-12.patch
index 1780d7e478f5..d465e94effed 100644
--- a/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-12.patch
+++ b/dev-db/percona-server/files/percona-server-8.0.26.16-gcc-12.patch
@@ -1,5 +1,6 @@
https://bugs.gentoo.org/842168
https://bugs.gentoo.org/853085
+https://bugs.gentoo.org/855170
--- a/client/logger.cc
+++ b/client/logger.cc
@@ -27,6 +27,7 @@
@@ -30,3 +31,15 @@ https://bugs.gentoo.org/853085
#include <regex>
#include "plugin/auth_ldap/include/plugin_log.h"
+diff --git a/router/src/harness/include/mysql/harness/net_ts/executor.h b/router/src/harness/include/mysql/harness/net_ts/executor.h
+index 5cf514b..ec61168 100644
+--- a/router/src/harness/include/mysql/harness/net_ts/executor.h
++++ b/router/src/harness/include/mysql/harness/net_ts/executor.h
+@@ -36,6 +36,7 @@
+ #include <thread>
+ #include <type_traits> // decay_t, enable_if
+ #include <unordered_map>
++#include <utility>
+
+ #include "mysql/harness/net_ts/netfwd.h"
+ #include "mysql/harness/stdx/type_traits.h" // conjunction, void_t
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-06-30 21:32 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-25 15:01 [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-server/files/ Aaron Bauman
-- strict thread matches above, loose matches on Subject: below --
2022-06-30 21:32 Sam James
2022-06-21 4:57 Sam James
2020-12-21 17:02 Thomas Deutschmann
2019-10-31 1:45 Thomas Deutschmann
2019-03-14 13:58 Brian Evans
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox