From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 965CE1584AD for ; Thu, 01 May 2025 04:18:13 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 810EC34305B for ; Thu, 01 May 2025 04:18:13 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 70757110280; Thu, 01 May 2025 04:18:12 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 686DE110280 for ; Thu, 01 May 2025 04:18:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1DF0E343058 for ; Thu, 01 May 2025 04:18:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 742CD12A for ; Thu, 01 May 2025 04:18:10 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1746072536.81830f8875459a1b704c3b813306075950b67159.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mariadb/mariadb-11.4.5-r1.ebuild dev-db/mariadb/mariadb-11.4.5.ebuild X-VCS-Directories: dev-db/mariadb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 81830f8875459a1b704c3b813306075950b67159 X-VCS-Branch: master Date: Thu, 01 May 2025 04:18:10 +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: 480522c2-8658-445a-984d-64a76a95679e X-Archives-Hash: 97da4251513784f357038c6f83e6ec08 commit: 81830f8875459a1b704c3b813306075950b67159 Author: Lothar Serra Mari serra me> AuthorDate: Sat Apr 12 13:52:00 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 1 04:08:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81830f88 dev-db/mariadb: Skip ssl when setting the root password for 11.4 Starting with MariaDB 11.3, SSL is enabled on the server by default, so while setting up the root password while skipping the default config file, we have to run the MariaDB client with the --skip-ssl option. Bug: https://bugs.gentoo.org/951865 Signed-off-by: Lothar Serra Mari serra.me> Part-of: https://github.com/gentoo/gentoo/pull/41557 Closes: https://github.com/gentoo/gentoo/pull/41557 Signed-off-by: Sam James gentoo.org> dev-db/mariadb/{mariadb-11.4.5.ebuild => mariadb-11.4.5-r1.ebuild} | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-db/mariadb/mariadb-11.4.5.ebuild b/dev-db/mariadb/mariadb-11.4.5-r1.ebuild similarity index 99% rename from dev-db/mariadb/mariadb-11.4.5.ebuild rename to dev-db/mariadb/mariadb-11.4.5-r1.ebuild index 574ca4b42667..3a71ebc4cf43 100644 --- a/dev-db/mariadb/mariadb-11.4.5.ebuild +++ b/dev-db/mariadb/mariadb-11.4.5-r1.ebuild @@ -1294,6 +1294,8 @@ pkg_config() { cmd=( "${mysql_binary}" --no-defaults + # Skip SSL for client connections, see bug #951865 + --skip-ssl "--socket='${socket}'" -hlocalhost "-e \"${sql}\""