b578b6b88a
Note that in-place upgrade from 8.0.3-rc will fail due to https://bugs.mysql.com/bug.php?id=89372 So to upgrade use `mysqldump -A` on 8.0.3-rc, remove the data directory, install 8.0.4-rc, restore dump and run `mysql_upgrade`.
206 lines
6.5 KiB
Ruby
206 lines
6.5 KiB
Ruby
class Mysql < Formula
|
|
desc "Open source relational database management system"
|
|
homepage "https://dev.mysql.com/doc/refman/5.7/en/"
|
|
url "https://cdn.mysql.com/Downloads/MySQL-5.7/mysql-boost-5.7.21.tar.gz"
|
|
sha256 "ad29ecb6fb3c3571394fe231633a2d1d188d49e9eb749daa4e8799b7630daa09"
|
|
|
|
bottle do
|
|
sha256 "a7c26e2b52bb4efa8948c808270baabd9a77b7d88b7c66367497f6a4aa1b5954" => :high_sierra
|
|
sha256 "54954ee3932c803edf8dcbcf9b9d1eb6efca440803874715c84bcf8ae57fe3e5" => :sierra
|
|
sha256 "8fe03949331ab255c0b26e3bf88a311cf6f9f5f2de46ef01798d696d2b500652" => :el_capitan
|
|
end
|
|
|
|
devel do
|
|
url "https://cdn.mysql.com/Downloads/MySQL-8.0/mysql-boost-8.0.4-rc.tar.gz"
|
|
sha256 "648b1e39f45d7e4b65bae572f5d475db4a0c5e9db6ede75d8a3762972f312833"
|
|
|
|
fails_with :clang do
|
|
build 800
|
|
cause "Wrong inlining with Clang 8.0, see MySQL Bug #86711"
|
|
end
|
|
# GCC is not supported either, so exclude for El Capitan.
|
|
depends_on :macos => :sierra if DevelopmentTools.clang_build_version == 800
|
|
end
|
|
|
|
option "with-debug", "Build with debug support"
|
|
option "with-embedded", "Build the embedded server"
|
|
option "with-local-infile", "Build with local infile loading support"
|
|
option "with-memcached", "Build with InnoDB Memcached plugin"
|
|
option "with-test", "Build with unit tests"
|
|
|
|
deprecated_option "enable-debug" => "with-debug"
|
|
deprecated_option "enable-local-infile" => "with-local-infile"
|
|
deprecated_option "enable-memcached" => "with-memcached"
|
|
deprecated_option "with-tests" => "with-test"
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "openssl"
|
|
|
|
# https://github.com/Homebrew/homebrew-core/issues/1475
|
|
# Needs at least Clang 3.3, which shipped alongside Lion.
|
|
# Note: MySQL themselves don't support anything below El Capitan.
|
|
depends_on :macos => :lion
|
|
|
|
conflicts_with "mysql-cluster", "mariadb", "percona-server",
|
|
:because => "mysql, mariadb, and percona install the same binaries."
|
|
conflicts_with "mysql-connector-c",
|
|
:because => "both install MySQL client libraries"
|
|
conflicts_with "mariadb-connector-c",
|
|
:because => "both install plugins"
|
|
|
|
def datadir
|
|
var/"mysql"
|
|
end
|
|
|
|
def install
|
|
# -DINSTALL_* are relative to `CMAKE_INSTALL_PREFIX` (`prefix`)
|
|
args = %W[
|
|
-DCOMPILATION_COMMENT=Homebrew
|
|
-DDEFAULT_CHARSET=utf8
|
|
-DDEFAULT_COLLATION=utf8_general_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/plugin
|
|
-DMYSQL_DATADIR=#{datadir}
|
|
-DSYSCONFDIR=#{etc}
|
|
-DWITH_BOOST=boost
|
|
-DWITH_EDITLINE=system
|
|
-DWITH_SSL=yes
|
|
]
|
|
|
|
# To enable unit testing at build, we need to download the unit testing suite
|
|
if build.with? "test"
|
|
args << "-DENABLE_DOWNLOADS=ON"
|
|
else
|
|
args << "-DWITH_UNIT_TESTS=OFF"
|
|
end
|
|
|
|
# Build with debug support
|
|
args << "-DWITH_DEBUG=1" if build.with? "debug"
|
|
|
|
# Build the embedded server
|
|
args << "-DWITH_EMBEDDED_SERVER=ON" if build.with? "embedded"
|
|
|
|
# Build with local infile loading support
|
|
args << "-DENABLED_LOCAL_INFILE=1" if build.with? "local-infile"
|
|
|
|
# Build with InnoDB Memcached plugin
|
|
args << "-DWITH_INNODB_MEMCACHED=ON" if build.with? "memcached"
|
|
|
|
# To enable unit testing at build, we need to download the unit testing suite
|
|
if build.with? "test"
|
|
args << "-DENABLE_DOWNLOADS=ON"
|
|
else
|
|
args << "-DWITH_UNIT_TESTS=OFF"
|
|
end
|
|
|
|
system "cmake", ".", *std_cmake_args, *args
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
(prefix/"mysql-test").cd do
|
|
system "./mysql-test-run.pl", "status", "--vardir=#{Dir.mktmpdir}"
|
|
end
|
|
|
|
# Remove the tests directory if they are not built.
|
|
rm_rf prefix/"mysql-test" if build.without? "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 datadir exists
|
|
datadir.mkpath
|
|
unless (datadir/"mysql/user.frm").exist?
|
|
ENV["TMPDIR"] = nil
|
|
system bin/"mysqld", "--initialize-insecure", "--user=#{ENV["USER"]}",
|
|
"--basedir=#{prefix}", "--datadir=#{datadir}", "--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
|
|
|
|
plist_options :manual => "mysql.server start"
|
|
|
|
def plist; <<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/mysqld_safe</string>
|
|
<string>--datadir=#{datadir}</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{datadir}</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
begin
|
|
# Expects datadir to be a completely clean dir, which testpath isn't.
|
|
dir = Dir.mktmpdir
|
|
system bin/"mysqld", "--initialize-insecure", "--user=#{ENV["USER"]}",
|
|
"--basedir=#{prefix}", "--datadir=#{dir}", "--tmpdir=#{dir}"
|
|
|
|
pid = fork do
|
|
exec bin/"mysqld", "--bind-address=127.0.0.1", "--datadir=#{dir}"
|
|
end
|
|
sleep 2
|
|
|
|
output = shell_output("curl 127.0.0.1:3306")
|
|
output.force_encoding("ASCII-8BIT") if output.respond_to?(:force_encoding)
|
|
assert_match version.to_s, output
|
|
ensure
|
|
Process.kill(9, pid)
|
|
Process.wait(pid)
|
|
end
|
|
end
|
|
end
|