From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF90C138334 for ; Thu, 31 Oct 2019 01:45:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15F2CE082D; Thu, 31 Oct 2019 01:45:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C92DFE082D for ; Thu, 31 Oct 2019 01:45:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE85F34C5C8 for ; Thu, 31 Oct 2019 01:45:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1CAC7F9 for ; Thu, 31 Oct 2019 01:45:40 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1572486335.1e197b6d121108fc0ffcfc7c294f9d6aa5bbb423.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/percona-server/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/percona-server/files/my.cnf-8.0.distro-client dev-db/percona-server/files/my.cnf-8.0.distro-server X-VCS-Directories: dev-db/percona-server/files/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 1e197b6d121108fc0ffcfc7c294f9d6aa5bbb423 X-VCS-Branch: master Date: Thu, 31 Oct 2019 01:45:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: afb40d1a-359d-4867-b690-92bb6be9afc8 X-Archives-Hash: 02e1444984d5285559b821db1445a572 commit: 1e197b6d121108fc0ffcfc7c294f9d6aa5bbb423 Author: Thomas Deutschmann gentoo org> AuthorDate: Thu Oct 31 01:45:20 2019 +0000 Commit: Thomas Deutschmann gentoo 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 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