homebrew-core/Formula/temporal_tables.rb

64 lines
2.1 KiB
Ruby

class TemporalTables < Formula
desc "Temporal Tables PostgreSQL Extension"
homepage "https://pgxn.org/dist/temporal_tables/"
url "https://github.com/arkhipov/temporal_tables/archive/v1.2.0.tar.gz"
sha256 "e6d1b31a124e8597f61b86f08b6a18168f9cd9da1db77f2a8dd1970b407b7610"
license "BSD-2-Clause"
revision 2
bottle do
cellar :any_skip_relocation
rebuild 1
sha256 "6003cd60f9e85afa2dbb6a6a3e07dbfff6bba2a5df8fe9b6d3452907cd7d16f6" => :catalina
sha256 "2700d10e8b75bb9daec60112aeaaf52878de609d8e2b7e8efcc1b02db2144939" => :mojave
sha256 "86291d5a0cdee29beae607f70436c61db901c6483a6f9eaab63c1c4385a4112c" => :high_sierra
end
depends_on "postgresql"
# Fix for postgresql 11 compatibility:
# https://github.com/arkhipov/temporal_tables/issues/38
patch do
url "https://github.com/mlt/temporal_tables/commit/24906c44.diff?full_index=1"
sha256 "9c20bde0bafb9cbf0fee9a4922134069e403c728660f6b9c0d6ee3ae7e48cdfc"
end
# Fix for postgresql 12 compatibility:
# https://github.com/arkhipov/temporal_tables/issues/47
patch do
url "https://github.com/mlt/temporal_tables/commit/a6772d195946f3a14e73b7d3aff200ab872753f4.patch?full_index=1"
sha256 "c15d7fa8a4ad7a047304c430e039776f6214a40bcc71f9a9ae627cb5cf73647e"
end
def install
ENV["PG_CONFIG"] = Formula["postgresql"].opt_bin/"pg_config"
# Use stage directory to prevent installing to pg_config-defined dirs,
# which would not be within this package's Cellar.
mkdir "stage"
system "make", "install", "DESTDIR=#{buildpath}/stage"
lib.install Dir["stage/**/lib/*"]
(share/"postgresql/extension").install Dir["stage/**/share/postgresql/extension/*"]
end
test do
return if ENV["CI"]
pg_bin = Formula["postgresql"].opt_bin
pg_port = "55562"
system "#{pg_bin}/initdb", testpath/"test"
pid = fork { exec "#{pg_bin}/postgres", "-D", testpath/"test", "-p", pg_port }
begin
sleep 2
system "#{pg_bin}/createdb", "-p", pg_port, "test"
system "#{pg_bin}/psql", "-p", pg_port, "-d", "test", "--command", "CREATE EXTENSION temporal_tables;"
ensure
Process.kill 9, pid
Process.wait pid
end
end
end