187 lines
6.3 KiB
Ruby
187 lines
6.3 KiB
Ruby
class PostgresqlAT13 < Formula
|
|
desc "Object-relational database system"
|
|
homepage "https://www.postgresql.org/"
|
|
url "https://ftp.postgresql.org/pub/source/v13.9/postgresql-13.9.tar.bz2"
|
|
sha256 "ef1966c0a5e49fbed3370ad2824928cb6b1164617aeeae1606da283f7f33a415"
|
|
license "PostgreSQL"
|
|
|
|
livecheck do
|
|
url "https://ftp.postgresql.org/pub/source/"
|
|
regex(%r{href=["']?v?(13(?:\.\d+)+)/?["' >]}i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_ventura: "2b8a59312cad3b31408ca3e6d686acd711d02f059c4a9c9b694893ce86716b77"
|
|
sha256 arm64_monterey: "03cc819daba98e98a50706aa0620704d901fa044aa8e6ca176d60538a57dfe3a"
|
|
sha256 arm64_big_sur: "eb3cd952427647008c6ba1b6a75df3e0f76bc5f56ee9839d8c316c92ec6a7266"
|
|
sha256 ventura: "8a8fb5d5e0d60e3fa9ee32ce6325b6f9833d0751c707f36835af461938cb3ffc"
|
|
sha256 monterey: "10d84161c288f9e4d5209dd10dae30d1d0115777b91d030a6b5eed034de74d0e"
|
|
sha256 big_sur: "2e1abb35c5740446eecff3c6c735fe614a58f199fe19d32a706f605bd4383aa3"
|
|
sha256 catalina: "e2652d49accad137ac70f120efa7d205f0cfb6a7e62f293741c9aba09c70354f"
|
|
sha256 x86_64_linux: "51109b372f848c28033b2d45cc734eb0296b4e72ece6855387d3eca32b9a57fd"
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
# https://www.postgresql.org/support/versioning/
|
|
deprecate! date: "2025-11-13", because: :unsupported
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "icu4c"
|
|
|
|
# GSSAPI provided by Kerberos.framework crashes when forked.
|
|
# See https://github.com/Homebrew/homebrew-core/issues/47494.
|
|
depends_on "krb5"
|
|
|
|
depends_on "openssl@1.1"
|
|
depends_on "readline"
|
|
|
|
uses_from_macos "libxml2"
|
|
uses_from_macos "libxslt"
|
|
uses_from_macos "openldap"
|
|
uses_from_macos "perl"
|
|
|
|
on_linux do
|
|
depends_on "linux-pam"
|
|
depends_on "util-linux"
|
|
end
|
|
|
|
def install
|
|
ENV.delete "PKG_CONFIG_LIBDIR" if MacOS.version == :catalina
|
|
ENV.prepend "LDFLAGS", "-L#{Formula["openssl@1.1"].opt_lib} -L#{Formula["readline"].opt_lib}"
|
|
ENV.prepend "CPPFLAGS", "-I#{Formula["openssl@1.1"].opt_include} -I#{Formula["readline"].opt_include}"
|
|
|
|
args = %W[
|
|
--disable-debug
|
|
--prefix=#{prefix}
|
|
--datadir=#{opt_pkgshare}
|
|
--libdir=#{opt_lib}
|
|
--includedir=#{opt_include}
|
|
--sysconfdir=#{etc}
|
|
--docdir=#{doc}
|
|
--enable-thread-safety
|
|
--with-gssapi
|
|
--with-icu
|
|
--with-ldap
|
|
--with-libxml
|
|
--with-libxslt
|
|
--with-openssl
|
|
--with-pam
|
|
--with-perl
|
|
--with-uuid=e2fs
|
|
]
|
|
if OS.mac?
|
|
args += %w[
|
|
--with-bonjour
|
|
--with-tcl
|
|
]
|
|
end
|
|
|
|
# PostgreSQL by default uses xcodebuild internally to determine this,
|
|
# which does not work on CLT-only installs.
|
|
args << "PG_SYSROOT=#{MacOS.sdk_path}" if MacOS.sdk_root_needed?
|
|
|
|
system "./configure", *args
|
|
|
|
# Work around busted path magic in Makefile.global.in. This can't be specified
|
|
# in ./configure, but needs to be set here otherwise install prefixes containing
|
|
# the string "postgres" will get an incorrect pkglibdir.
|
|
# See https://github.com/Homebrew/homebrew-core/issues/62930#issuecomment-709411789
|
|
system "make", "pkglibdir=#{opt_lib}/postgresql",
|
|
"pkgincludedir=#{opt_include}/postgresql",
|
|
"includedir_server=#{opt_include}/postgresql/server"
|
|
system "make", "install-world", "datadir=#{pkgshare}",
|
|
"libdir=#{lib}",
|
|
"pkglibdir=#{lib}/postgresql",
|
|
"includedir=#{include}",
|
|
"pkgincludedir=#{include}/postgresql",
|
|
"includedir_server=#{include}/postgresql/server",
|
|
"includedir_internal=#{include}/postgresql/internal"
|
|
|
|
if OS.linux?
|
|
inreplace lib/"postgresql/pgxs/src/Makefile.global",
|
|
"LD = #{HOMEBREW_PREFIX}/Homebrew/Library/Homebrew/shims/linux/super/ld",
|
|
"LD = #{HOMEBREW_PREFIX}/bin/ld"
|
|
end
|
|
end
|
|
|
|
def post_install
|
|
(var/"log").mkpath
|
|
postgresql_datadir.mkpath
|
|
|
|
# Don't initialize database, it clashes when testing other PostgreSQL versions.
|
|
return if ENV["HOMEBREW_GITHUB_ACTIONS"]
|
|
|
|
system "#{bin}/initdb", "--locale=C", "-E", "UTF-8", postgresql_datadir unless pg_version_exists?
|
|
end
|
|
|
|
def postgresql_datadir
|
|
var/name
|
|
end
|
|
|
|
def postgresql_log_path
|
|
var/"log/#{name}.log"
|
|
end
|
|
|
|
def pg_version_exists?
|
|
(postgresql_datadir/"PG_VERSION").exist?
|
|
end
|
|
|
|
def old_postgres_data_dir
|
|
var/"postgres"
|
|
end
|
|
|
|
# Figure out what version of PostgreSQL the old data dir is
|
|
# using
|
|
def old_postgresql_datadir_version
|
|
pg_version = old_postgres_data_dir/"PG_VERSION"
|
|
pg_version.exist? && pg_version.read.chomp
|
|
end
|
|
|
|
def caveats
|
|
caveats = ""
|
|
|
|
# Extract the version from the formula name
|
|
pg_formula_version = version.major.to_s
|
|
# ... and check it against the old data dir postgres version number
|
|
# to see if we need to print a warning re: data dir
|
|
if old_postgresql_datadir_version == pg_formula_version
|
|
caveats += <<~EOS
|
|
Previous versions of postgresql shared the same data directory.
|
|
|
|
You can migrate to a versioned data directory by running:
|
|
mv -v "#{old_postgres_data_dir}" "#{postgresql_datadir}"
|
|
|
|
(Make sure PostgreSQL is stopped before executing this command)
|
|
|
|
EOS
|
|
end
|
|
|
|
caveats += <<~EOS
|
|
This formula has created a default database cluster with:
|
|
initdb --locale=C -E UTF-8 #{postgresql_datadir}
|
|
For more details, read:
|
|
https://www.postgresql.org/docs/#{version.major}/app-initdb.html
|
|
EOS
|
|
|
|
caveats
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"postgres", "-D", f.postgresql_datadir]
|
|
keep_alive true
|
|
log_path f.postgresql_log_path
|
|
error_log_path f.postgresql_log_path
|
|
working_dir HOMEBREW_PREFIX
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/initdb", testpath/"test" unless ENV["HOMEBREW_GITHUB_ACTIONS"]
|
|
assert_equal opt_pkgshare.to_s, shell_output("#{bin}/pg_config --sharedir").chomp
|
|
assert_equal opt_lib.to_s, shell_output("#{bin}/pg_config --libdir").chomp
|
|
assert_equal (opt_lib/"postgresql").to_s, shell_output("#{bin}/pg_config --pkglibdir").chomp
|
|
assert_equal (opt_include/"postgresql").to_s, shell_output("#{bin}/pg_config --pkgincludedir").chomp
|
|
assert_equal (opt_include/"postgresql/server").to_s, shell_output("#{bin}/pg_config --includedir-server").chomp
|
|
end
|
|
end
|