Commit 3f3f8d70 authored by Ed Reel's avatar Ed Reel Committed by GitHub

Update postgres from 9.6.16-1 to 10.17 (#5836)

parent 4640010b
...@@ -3,43 +3,41 @@ require 'package' ...@@ -3,43 +3,41 @@ require 'package'
class Postgres < Package class Postgres < Package
description 'PostgreSQL is a powerful, open source object-relational database system.' description 'PostgreSQL is a powerful, open source object-relational database system.'
homepage 'https://www.postgresql.org/' homepage 'https://www.postgresql.org/'
version '9.6.16-1' version '10.17'
license 'PostgreSQL and GPL-2' license 'PostgreSQL and GPL-2'
compatibility 'all' compatibility 'all'
source_url 'https://ftp.postgresql.org/pub/source/v9.6.16/postgresql-9.6.16.tar.bz2' source_url 'https://ftp.postgresql.org/pub/source/v10.17/postgresql-10.17.tar.bz2'
source_sha256 '5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7' source_sha256 '5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c'
binary_url({ binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/postgres/9.6.16-1_armv7l/postgres-9.6.16-1-chromeos-armv7l.tar.xz', aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/postgres/10.17_armv7l/postgres-10.17-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/postgres/9.6.16-1_armv7l/postgres-9.6.16-1-chromeos-armv7l.tar.xz', armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/postgres/10.17_armv7l/postgres-10.17-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/postgres/9.6.16-1_i686/postgres-9.6.16-1-chromeos-i686.tar.xz', i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/postgres/10.17_i686/postgres-10.17-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/postgres/9.6.16-1_x86_64/postgres-9.6.16-1-chromeos-x86_64.tar.xz' x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/postgres/10.17_x86_64/postgres-10.17-chromeos-x86_64.tar.xz',
}) })
binary_sha256({ binary_sha256({
aarch64: '6211702e02c1cd622ce2c5b27d72ef69136fe0b59e099a9360130224455281ba', aarch64: '67ec0a8d3aa3fa72a86a6041d74cf17ba16919e373127f19c50b88518d830a08',
armv7l: '6211702e02c1cd622ce2c5b27d72ef69136fe0b59e099a9360130224455281ba', armv7l: '67ec0a8d3aa3fa72a86a6041d74cf17ba16919e373127f19c50b88518d830a08',
i686: 'cd46d490470c4cd16d09f23f63b78ecd92bcb74739f19fee42eeb86ca70f563d', i686: '0e6b22d4eaab62bfd4eac9586569d8d28b842e2386af2a03374887a6edf8d384',
x86_64: 'ea73f2fb333ee217ae2adf184b54d300b5b856c0ad1848349f78fd46390e1932' x86_64: '60acfd4374380012bce2cda3d6e2df788f340c180fb725f5166a46c48932a17f',
}) })
# Feel free to change this directory prior to compiling. # Feel free to change this directory prior to compiling.
# Future work: this directory isn't FHS compliant # Future work: this directory isn't FHS compliant
PGDATA = "#{CREW_PREFIX}/data/pgsql".freeze PGDATA = "#{CREW_PREFIX}/pgsql/data".freeze
def self.build def self.build
system "sed -i 's,PGDATA=\"/usr/local/pgsql/data\",PGDATA=\"#{PGDATA}\",' contrib/start-scripts/linux" system "sed -i 's,PGDATA=\"/usr/local/pgsql/data\",PGDATA=\"#{PGDATA}\",' contrib/start-scripts/linux"
system "./configure \ system "./configure #{CREW_OPTIONS}"
--prefix=#{CREW_PREFIX} \
--libdir=#{CREW_LIB_PREFIX}"
system 'make world' system 'make world'
end end
def self.install def self.install
# This conditional is needed for installation only. # This conditional is needed for installation only.
unless Dir.exist? PGDATA.to_s unless Dir.exist? PGDATA
system 'mkdir', '-p', PGDATA.to_s FileUtils.mkdir_p PGDATA
system 'chmod', '700', PGDATA.to_s FileUtils.chmod 0o700, PGDATA
end end
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install-world' system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install-world'
...@@ -47,6 +45,10 @@ class Postgres < Package ...@@ -47,6 +45,10 @@ class Postgres < Package
@postgresenv = <<~POSTGRESEOF @postgresenv = <<~POSTGRESEOF
# PostgreSQL configuration # PostgreSQL configuration
export PGDATA="#{PGDATA}" export PGDATA="#{PGDATA}"
# Start server on login
#if [ -f #{CREW_PREFIX}/bin/pg_ctl ]; then
# pg_ctl -l #{CREW_PREFIX}/tmp/pgsql.log start
#fi
POSTGRESEOF POSTGRESEOF
IO.write("#{CREW_DEST_PREFIX}/etc/env.d/postgres", @postgresenv) IO.write("#{CREW_DEST_PREFIX}/etc/env.d/postgres", @postgresenv)
end end
...@@ -56,12 +58,35 @@ class Postgres < Package ...@@ -56,12 +58,35 @@ class Postgres < Package
# there is no need to initialize the data directory and display messages again. # there is no need to initialize the data directory and display messages again.
unless File.exist? "#{PGDATA}/PG_VERSION" unless File.exist? "#{PGDATA}/PG_VERSION"
system "initdb -D #{PGDATA}" system "initdb -D #{PGDATA}"
end
puts
puts 'To complete the installation, execute the following:'.lightblue
puts 'source ~/.bashrc'.lightblue
puts puts
puts 'To start postgres: pg_ctl -l logfile start'.lightblue puts 'To start postgres: pg_ctl -l logfile start'.lightblue
puts 'To stop postgres: pg_ctl stop'.lightblue puts 'To stop postgres: pg_ctl stop'.lightblue
puts 'Create a database: createdb <dbname>'.lightblue puts 'Create a database: createdb <dbname>'.lightblue
puts 'Connect to database: psql <dbname>'.lightblue puts 'Connect to database: psql <dbname>'.lightblue
puts puts
puts "To configure, edit #{CREW_DEST_PREFIX}/etc/env.d/postgres".lightblue
puts "Remember to 'source ~/.bashrc' after changes".lightblue
puts
end
def self.remove
if Dir.exists? PGDATA
puts "WARNING: This will delete all databases!".orange
print "Would you like to remove #{PGDATA}? [y/N] "
case STDIN.getc
when 'y', 'Y'
FileUtils.rm_rf PGDATA
if Dir.exists? "#{CREW_PREFIX}/pgsql"
FileUtils.rm_rf "#{CREW_PREFIX}/pgsql"
end
puts "#{PGDATA} removed.".lightred
else
puts "#{PGDATA} saved.".lightgreen
end
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment