234 lines
8.3 KiB
Ruby
234 lines
8.3 KiB
Ruby
class PerconaServer < Formula
|
|
desc "Drop-in MySQL replacement"
|
|
homepage "https://www.percona.com"
|
|
url "https://downloads.percona.com/downloads/Percona-Server-8.0/Percona-Server-8.0.29-21/source/tarball/percona-server-8.0.29-21.tar.gz"
|
|
sha256 "a54c45b23719d4f6ba1e409bb2916c59dc0c9aaae98e24299ff26f150ad4f735"
|
|
license "BSD-3-Clause"
|
|
revision 2
|
|
|
|
livecheck do
|
|
url "https://www.percona.com/downloads/Percona-Server-LATEST/"
|
|
regex(/value=.*?Percona-Server[._-]v?(\d+(?:\.\d+)+-\d+)["' >]/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_ventura: "1a61fec9e5d4003e9e0c5d9205091ce76f50bd821b0a4500a818593236d419c0"
|
|
sha256 arm64_monterey: "0133d8fe76dbc77d4d780e377b99ae220e5dd571edad87d421e5fbe2e757da1d"
|
|
sha256 arm64_big_sur: "4da7726e3988cf850c41e7a796e6d734d6bf4e06e7829a9e0bf280976d304f3a"
|
|
sha256 ventura: "cb4b17cbbc933936a14e16fc304bd5baaa537f7bdfb4fd7df0258b92ce312d66"
|
|
sha256 monterey: "0828b310ec01954e21d01a2d1b1e63d168fe2d5f4ddb8252a1541607bc0839b0"
|
|
sha256 big_sur: "336ecb45561368ce58b2591f54e52e212b2c2967b123f860e2366a1c6276f981"
|
|
sha256 catalina: "6a8b7df8f17f928511a3a257895513f67f76c8916870c14499a0cecfe497d49a"
|
|
sha256 x86_64_linux: "5fbb09fa511901a89990c5b87c4408723a7cb32e5766d3d55ddf8a73dde46ff2"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "icu4c"
|
|
depends_on "libevent"
|
|
depends_on "libfido2"
|
|
depends_on "lz4"
|
|
depends_on "openssl@1.1"
|
|
depends_on "protobuf"
|
|
depends_on "zstd"
|
|
|
|
uses_from_macos "curl"
|
|
uses_from_macos "cyrus-sasl"
|
|
uses_from_macos "libedit"
|
|
uses_from_macos "openldap"
|
|
uses_from_macos "zlib"
|
|
|
|
on_linux do
|
|
depends_on "patchelf" => :build
|
|
depends_on "libtirpc"
|
|
depends_on "readline"
|
|
|
|
# Fix build with OpenLDAP 2.5+, which merged libldap_r into libldap
|
|
patch :DATA
|
|
end
|
|
|
|
conflicts_with "mariadb", "mysql", because: "percona, mariadb, and mysql install the same binaries"
|
|
conflicts_with "percona-xtrabackup", because: "both install a `kmip.h`"
|
|
|
|
# https://bugs.mysql.com/bug.php?id=86711
|
|
# https://github.com/Homebrew/homebrew-core/pull/20538
|
|
fails_with :clang do
|
|
build 800
|
|
cause "Wrong inlining with Clang 8.0, see MySQL Bug #86711"
|
|
end
|
|
|
|
fails_with :gcc do
|
|
version "6"
|
|
cause "GCC 7.1 or newer is required"
|
|
end
|
|
|
|
# https://github.com/percona/percona-server/blob/Percona-Server-#{version}/cmake/boost.cmake
|
|
resource "boost" do
|
|
url "https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.bz2"
|
|
sha256 "fc9f85fc030e233142908241af7a846e60630aa7388de9a5fafb1f3a26840854"
|
|
end
|
|
|
|
# Patch out check for Homebrew `boost`.
|
|
# This should not be necessary when building inside `brew`.
|
|
# https://github.com/Homebrew/homebrew-test-bot/pull/820
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/030f7433e89376ffcff836bb68b3903ab90f9cdc/percona-server/boost-check.patch"
|
|
sha256 "3223f7eebd04b471de1c21104c46b2cdec3fe7b26e13535bdcd0d7b8fd341bde"
|
|
end
|
|
|
|
def install
|
|
# Fix mysqlrouter_passwd RPATH to link to metadata_cache.so
|
|
inreplace "router/src/http/src/CMakeLists.txt",
|
|
"ADD_INSTALL_RPATH(mysqlrouter_passwd \"${ROUTER_INSTALL_RPATH}\")",
|
|
"\\0\nADD_INSTALL_RPATH(mysqlrouter_passwd \"${RPATH_ORIGIN}/../${ROUTER_INSTALL_PLUGINDIR}\")"
|
|
|
|
# Disable ABI checking
|
|
inreplace "cmake/abi_check.cmake", "RUN_ABI_CHECK 1", "RUN_ABI_CHECK 0" if OS.linux?
|
|
|
|
# -DINSTALL_* are relative to `CMAKE_INSTALL_PREFIX` (`prefix`)
|
|
args = %W[
|
|
-DFORCE_INSOURCE_BUILD=1
|
|
-DCOMPILATION_COMMENT=Homebrew
|
|
-DDEFAULT_CHARSET=utf8mb4
|
|
-DDEFAULT_COLLATION=utf8mb4_0900_ai_ci
|
|
-DINSTALL_DOCDIR=share/doc/#{name}
|
|
-DINSTALL_INCLUDEDIR=include/mysql
|
|
-DINSTALL_INFODIR=share/info
|
|
-DINSTALL_MANDIR=share/man
|
|
-DINSTALL_MYSQLSHAREDIR=share/mysql
|
|
-DINSTALL_PLUGINDIR=lib/percona-server/plugin
|
|
-DMYSQL_DATADIR=#{var}/mysql
|
|
-DSYSCONFDIR=#{etc}
|
|
-DENABLED_LOCAL_INFILE=1
|
|
-DWITH_EMBEDDED_SERVER=ON
|
|
-DWITH_INNODB_MEMCACHED=ON
|
|
-DWITH_UNIT_TESTS=OFF
|
|
-DWITH_SYSTEM_LIBS=ON
|
|
-DWITH_EDITLINE=system
|
|
-DWITH_FIDO=system
|
|
-DWITH_ICU=system
|
|
-DWITH_LIBEVENT=system
|
|
-DWITH_LZ4=system
|
|
-DWITH_PROTOBUF=system
|
|
-DWITH_SSL=system
|
|
-DOPENSSL_ROOT_DIR=#{Formula["openssl@1.1"].opt_prefix}
|
|
-DWITH_ZLIB=system
|
|
-DWITH_ZSTD=system
|
|
]
|
|
|
|
# MySQL >5.7.x mandates Boost as a requirement to build & has a strict
|
|
# version check in place to ensure it only builds against expected release.
|
|
# This is problematic when Boost releases don't align with MySQL releases.
|
|
(buildpath/"boost").install resource("boost")
|
|
args << "-DWITH_BOOST=#{buildpath}/boost"
|
|
|
|
# Percona MyRocks does not compile on macOS
|
|
# https://bugs.launchpad.net/percona-server/+bug/1741639
|
|
args << "-DWITHOUT_ROCKSDB=1"
|
|
|
|
# TokuDB does not compile on macOS
|
|
# https://bugs.launchpad.net/percona-server/+bug/1531446
|
|
args << "-DWITHOUT_TOKUDB=1"
|
|
|
|
system "cmake", ".", *std_cmake_args, *args
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
(prefix/"mysql-test").cd do
|
|
test_args = ["--vardir=#{Dir.mktmpdir}"]
|
|
# For Linux, disable failing on warning: "Setting thread 31563 nice to 0 failed"
|
|
# Docker containers lack CAP_SYS_NICE capability by default.
|
|
test_args << "--nowarnings" if OS.linux?
|
|
system "./mysql-test-run.pl", "status", *test_args
|
|
end
|
|
|
|
# Remove the tests directory
|
|
rm_rf prefix/"mysql-test"
|
|
|
|
# Don't create databases inside of the prefix!
|
|
# See: https://github.com/Homebrew/homebrew/issues/4975
|
|
rm_rf prefix/"data"
|
|
|
|
# Fix up the control script and link into bin.
|
|
inreplace "#{prefix}/support-files/mysql.server",
|
|
/^(PATH=".*)(")/,
|
|
"\\1:#{HOMEBREW_PREFIX}/bin\\2"
|
|
bin.install_symlink prefix/"support-files/mysql.server"
|
|
|
|
# Install my.cnf that binds to 127.0.0.1 by default
|
|
(buildpath/"my.cnf").write <<~EOS
|
|
# Default Homebrew MySQL server config
|
|
[mysqld]
|
|
# Only allow connections from localhost
|
|
bind-address = 127.0.0.1
|
|
EOS
|
|
etc.install "my.cnf"
|
|
end
|
|
|
|
def post_install
|
|
# Make sure the var/mysql directory exists
|
|
(var/"mysql").mkpath
|
|
|
|
# Don't initialize database, it clashes when testing other MySQL-like implementations.
|
|
return if ENV["HOMEBREW_GITHUB_ACTIONS"]
|
|
|
|
unless (var/"mysql/mysql/user.frm").exist?
|
|
ENV["TMPDIR"] = nil
|
|
system bin/"mysqld", "--initialize-insecure", "--user=#{ENV["USER"]}",
|
|
"--basedir=#{prefix}", "--datadir=#{var}/mysql", "--tmpdir=/tmp"
|
|
end
|
|
end
|
|
|
|
def caveats
|
|
s = <<~EOS
|
|
We've installed your MySQL database without a root password. To secure it run:
|
|
mysql_secure_installation
|
|
MySQL is configured to only allow connections from localhost by default
|
|
To connect run:
|
|
mysql -uroot
|
|
EOS
|
|
if (my_cnf = ["/etc/my.cnf", "/etc/mysql/my.cnf"].find { |x| File.exist? x })
|
|
s += <<~EOS
|
|
A "#{my_cnf}" from another install may interfere with a Homebrew-built
|
|
server starting up correctly.
|
|
EOS
|
|
end
|
|
s
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"mysqld_safe", "--datadir=#{var}/mysql"]
|
|
keep_alive true
|
|
working_dir var/"mysql"
|
|
end
|
|
|
|
test do
|
|
(testpath/"mysql").mkpath
|
|
(testpath/"tmp").mkpath
|
|
system bin/"mysqld", "--no-defaults", "--initialize-insecure", "--user=#{ENV["USER"]}",
|
|
"--basedir=#{prefix}", "--datadir=#{testpath}/mysql", "--tmpdir=#{testpath}/tmp"
|
|
port = free_port
|
|
fork do
|
|
system "#{bin}/mysqld", "--no-defaults", "--user=#{ENV["USER"]}",
|
|
"--datadir=#{testpath}/mysql", "--port=#{port}", "--tmpdir=#{testpath}/tmp"
|
|
end
|
|
sleep 5
|
|
assert_match "information_schema",
|
|
shell_output("#{bin}/mysql --port=#{port} --user=root --password= --execute='show databases;'")
|
|
system "#{bin}/mysqladmin", "--port=#{port}", "--user=root", "--password=", "shutdown"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- a/plugin/auth_ldap/CMakeLists.txt
|
|
+++ b/plugin/auth_ldap/CMakeLists.txt
|
|
@@ -36,7 +36,7 @@ IF(WITH_LDAP)
|
|
|
|
# libler?
|
|
MYSQL_ADD_PLUGIN(authentication_ldap_simple ${ALP_SOURCES_SIMPLE}
|
|
- LINK_LIBRARIES ldap_r MODULE_ONLY MODULE_OUTPUT_NAME "authentication_ldap_simple")
|
|
+ LINK_LIBRARIES ldap MODULE_ONLY MODULE_OUTPUT_NAME "authentication_ldap_simple")
|
|
|
|
IF(UNIX)
|
|
IF(INSTALL_MYSQLTESTDIR)
|