Skip to content
This repository has been archived by the owner on Sep 10, 2023. It is now read-only.

Commit

Permalink
PostgreSQL 9.4.22, 9.5.17, 9.6.13, 10.8, 11.3 (Issue neard/neard#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed May 24, 2019
1 parent 22f52bf commit a2d0296
Show file tree
Hide file tree
Showing 23 changed files with 292 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Changelog

## r4 (2019/05/24)

* PostgreSQL 9.4.22, 9.5.17, 9.6.13, 10.8, 11.3 (Issue neard/neard#418)

## r3 (2017/05/30)

* New bundles : 9.2.21, 9.3.17, 9.4.12, 9.5.7, 9.6.3 (Issue neard/neard#268)
* PostgreSQL 9.2.21, 9.3.17, 9.4.12, 9.5.7, 9.6.3 (Issue neard/neard#268)

## r2 (2016/12/01)

* New bundles : 9.1.24, 9.2.19, 9.3.15, 9.4.10, 9.5.5, 9.6.1 (Issue neard/neard#176)
* PostgreSQL 9.1.24, 9.2.19, 9.3.15, 9.4.10, 9.5.5, 9.6.1 (Issue neard/neard#176)

## r1 (2016/10/12)

Expand Down
5 changes: 5 additions & 0 deletions bin/postgresql10.8/init.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@ECHO OFF

%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf"
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf"
14 changes: 14 additions & 0 deletions bin/postgresql10.8/neard.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "10.8"
postgresqlCtlExe = "bin/pg_ctl.exe"
postgresqlCliExe = "bin/psql.exe"
postgresqlDumpExe = "bin/pg_dump.exe"
postgresqlDumpAllExe = "bin/pg_dumpall.exe"
postgresqlConf = "data/postgresql.conf"
postgresqlUserConf = "data/pg_hba.conf"
postgresqlAltConf = "postgresql.conf.nrd"
postgresqlAltUserConf = "pg_hba.conf.nrd"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""

bundleRelease = "@RELEASE_VERSION@"
2 changes: 2 additions & 0 deletions bin/postgresql10.8/pg_hba.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
35 changes: 35 additions & 0 deletions bin/postgresql10.8/postgresql.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql10.8/data/pg_ident.conf'

#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
listen_addresses = '*'
port = 5432
max_connections = 100

#------------------------------------------------------------------------------
# RESOURCE USAGE (except WAL)
#------------------------------------------------------------------------------
shared_buffers = 32MB

#------------------------------------------------------------------------------
# ERROR REPORTING AND LOGGING
#------------------------------------------------------------------------------
log_destination = 'stderr'
logging_collector = on
log_directory = '~NEARD_LIN_PATH~/logs'
log_filename = 'postgresql.log'
log_file_mode = 0777
log_truncate_on_rotation = off
log_rotation_age = 0
log_rotation_size = 0

client_min_messages = notice
log_min_messages = warning
log_min_error_statement = error
log_min_duration_statement = -1
5 changes: 5 additions & 0 deletions bin/postgresql11.3/init.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@ECHO OFF

%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf"
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf"
14 changes: 14 additions & 0 deletions bin/postgresql11.3/neard.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "11.3"
postgresqlCtlExe = "bin/pg_ctl.exe"
postgresqlCliExe = "bin/psql.exe"
postgresqlDumpExe = "bin/pg_dump.exe"
postgresqlDumpAllExe = "bin/pg_dumpall.exe"
postgresqlConf = "data/postgresql.conf"
postgresqlUserConf = "data/pg_hba.conf"
postgresqlAltConf = "postgresql.conf.nrd"
postgresqlAltUserConf = "pg_hba.conf.nrd"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""

bundleRelease = "@RELEASE_VERSION@"
2 changes: 2 additions & 0 deletions bin/postgresql11.3/pg_hba.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
35 changes: 35 additions & 0 deletions bin/postgresql11.3/postgresql.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.3/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.3/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql11.3/data/pg_ident.conf'

#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
listen_addresses = '*'
port = 5432
max_connections = 100

#------------------------------------------------------------------------------
# RESOURCE USAGE (except WAL)
#------------------------------------------------------------------------------
shared_buffers = 32MB

#------------------------------------------------------------------------------
# ERROR REPORTING AND LOGGING
#------------------------------------------------------------------------------
log_destination = 'stderr'
logging_collector = on
log_directory = '~NEARD_LIN_PATH~/logs'
log_filename = 'postgresql.log'
log_file_mode = 0777
log_truncate_on_rotation = off
log_rotation_age = 0
log_rotation_size = 0

client_min_messages = notice
log_min_messages = warning
log_min_error_statement = error
log_min_duration_statement = -1
5 changes: 5 additions & 0 deletions bin/postgresql9.4.22/init.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@ECHO OFF

%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf"
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf"
14 changes: 14 additions & 0 deletions bin/postgresql9.4.22/neard.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "9.4.22"
postgresqlCtlExe = "bin/pg_ctl.exe"
postgresqlCliExe = "bin/psql.exe"
postgresqlDumpExe = "bin/pg_dump.exe"
postgresqlDumpAllExe = "bin/pg_dumpall.exe"
postgresqlConf = "data/postgresql.conf"
postgresqlUserConf = "data/pg_hba.conf"
postgresqlAltConf = "postgresql.conf.nrd"
postgresqlAltUserConf = "pg_hba.conf.nrd"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""

bundleRelease = "@RELEASE_VERSION@"
2 changes: 2 additions & 0 deletions bin/postgresql9.4.22/pg_hba.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
35 changes: 35 additions & 0 deletions bin/postgresql9.4.22/postgresql.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.22/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.22/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.22/data/pg_ident.conf'

#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
listen_addresses = '*'
port = 5432
max_connections = 100

#------------------------------------------------------------------------------
# RESOURCE USAGE (except WAL)
#------------------------------------------------------------------------------
shared_buffers = 32MB

#------------------------------------------------------------------------------
# ERROR REPORTING AND LOGGING
#------------------------------------------------------------------------------
log_destination = 'stderr'
logging_collector = on
log_directory = '~NEARD_LIN_PATH~/logs'
log_filename = 'postgresql.log'
log_file_mode = 0777
log_truncate_on_rotation = off
log_rotation_age = 0
log_rotation_size = 0

client_min_messages = notice
log_min_messages = warning
log_min_error_statement = error
log_min_duration_statement = -1
5 changes: 5 additions & 0 deletions bin/postgresql9.5.17/init.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@ECHO OFF

%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf"
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf"
14 changes: 14 additions & 0 deletions bin/postgresql9.5.17/neard.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "9.5.17"
postgresqlCtlExe = "bin/pg_ctl.exe"
postgresqlCliExe = "bin/psql.exe"
postgresqlDumpExe = "bin/pg_dump.exe"
postgresqlDumpAllExe = "bin/pg_dumpall.exe"
postgresqlConf = "data/postgresql.conf"
postgresqlUserConf = "data/pg_hba.conf"
postgresqlAltConf = "postgresql.conf.nrd"
postgresqlAltUserConf = "pg_hba.conf.nrd"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""

bundleRelease = "@RELEASE_VERSION@"
2 changes: 2 additions & 0 deletions bin/postgresql9.5.17/pg_hba.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
35 changes: 35 additions & 0 deletions bin/postgresql9.5.17/postgresql.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.17/data/pg_ident.conf'

#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
listen_addresses = '*'
port = 5452
max_connections = 100

#------------------------------------------------------------------------------
# RESOURCE USAGE (except WAL)
#------------------------------------------------------------------------------
shared_buffers = 52MB

#------------------------------------------------------------------------------
# ERROR REPORTING AND LOGGING
#------------------------------------------------------------------------------
log_destination = 'stderr'
logging_collector = on
log_directory = '~NEARD_LIN_PATH~/logs'
log_filename = 'postgresql.log'
log_file_mode = 0777
log_truncate_on_rotation = off
log_rotation_age = 0
log_rotation_size = 0

client_min_messages = notice
log_min_messages = warning
log_min_error_statement = error
log_min_duration_statement = -1
5 changes: 5 additions & 0 deletions bin/postgresql9.6.13/init.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@ECHO OFF

%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1
copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf"
copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf"
14 changes: 14 additions & 0 deletions bin/postgresql9.6.13/neard.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
postgresqlVersion = "9.6.13"
postgresqlCtlExe = "bin/pg_ctl.exe"
postgresqlCliExe = "bin/psql.exe"
postgresqlDumpExe = "bin/pg_dump.exe"
postgresqlDumpAllExe = "bin/pg_dumpall.exe"
postgresqlConf = "data/postgresql.conf"
postgresqlUserConf = "data/pg_hba.conf"
postgresqlAltConf = "postgresql.conf.nrd"
postgresqlAltUserConf = "pg_hba.conf.nrd"
postgresqlPort = "5432"
postgresqlRootUser = "postgres"
postgresqlRootPwd = ""

bundleRelease = "@RELEASE_VERSION@"
2 changes: 2 additions & 0 deletions bin/postgresql9.6.13/pg_hba.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# TYPE DATABASE USER ADDRESS METHOD
host all all 127.0.0.1/32 trust
35 changes: 35 additions & 0 deletions bin/postgresql9.6.13/postgresql.conf.nrd
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.13/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.13/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.13/data/pg_ident.conf'

#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
listen_addresses = '*'
port = 5432
max_connections = 100

#------------------------------------------------------------------------------
# RESOURCE USAGE (except WAL)
#------------------------------------------------------------------------------
shared_buffers = 32MB

#------------------------------------------------------------------------------
# ERROR REPORTING AND LOGGING
#------------------------------------------------------------------------------
log_destination = 'stderr'
logging_collector = on
log_directory = '~NEARD_LIN_PATH~/logs'
log_filename = 'postgresql.log'
log_file_mode = 0777
log_truncate_on_rotation = off
log_rotation_age = 0
log_rotation_size = 0

client_min_messages = notice
log_min_messages = warning
log_min_error_statement = error
log_min_duration_statement = -1
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bundle.name = postgresql
bundle.release = r3
bundle.release = r4
bundle.type = bins
bundle.format = 7z

Expand Down
5 changes: 5 additions & 0 deletions releases.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@
9.4.8 = https://github.com/neard/module-postgresql/releases/download/r1/neard-postgresql-9.4.8-r1.7z
9.4.10 = https://github.com/neard/module-postgresql/releases/download/r2/neard-postgresql-9.4.10-r2.7z
9.4.12 = https://github.com/neard/module-postgresql/releases/download/r3/neard-postgresql-9.4.12-r3.7z
9.4.22 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-9.4.22-r4.7z
9.5.3 = https://github.com/neard/module-postgresql/releases/download/r1/neard-postgresql-9.5.3-r1.7z
9.5.5 = https://github.com/neard/module-postgresql/releases/download/r2/neard-postgresql-9.5.5-r2.7z
9.5.7 = https://github.com/neard/module-postgresql/releases/download/r3/neard-postgresql-9.5.7-r3.7z
9.5.17 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-9.5.17-r4.7z
9.6.0 = https://github.com/neard/module-postgresql/releases/download/r1/neard-postgresql-9.6.0-r1.7z
9.6.1 = https://github.com/neard/module-postgresql/releases/download/r2/neard-postgresql-9.6.1-r2.7z
9.6.3 = https://github.com/neard/module-postgresql/releases/download/r3/neard-postgresql-9.6.3-r3.7z
9.6.13 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-9.6.13-r4.7z
10.8 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-10.8-r4.7z
11.3 = https://github.com/neard/module-postgresql/releases/download/r4/neard-postgresql-11.3-r4.7z

0 comments on commit a2d0296

Please sign in to comment.