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

Commit

Permalink
New bundles : 9.2.21, 9.3.17, 9.4.12, 9.5.7, 9.6.3 (Issue neard/neard…
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed May 30, 2017
1 parent d8630fb commit 69e397f
Show file tree
Hide file tree
Showing 23 changed files with 292 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
@@ -1,9 +1,13 @@
# Changelog

## r3 (2017/05/30)

* New bundles : 9.2.21, 9.3.17, 9.4.12, 9.5.7, 9.6.3 (Issue crazy-max/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
* New bundles : 9.1.24, 9.2.19, 9.3.15, 9.4.10, 9.5.5, 9.6.1 (Issue crazy-max/neard#176)

## r1 (2016/10/12)

* Init repo with PostgreSQL 9.1.22, 9.2.17, 9.3.13, 9.4.8, 9.5.3, 9.6.0
* Init repo with PostgreSQL 9.1.22, 9.2.17, 9.3.13, 9.4.8, 9.5.3, 9.6.0 (Issue crazy-max/neard#119)
5 changes: 5 additions & 0 deletions bin/postgresql9.2.21/init.bat
@@ -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.2.21/neard.conf
@@ -0,0 +1,14 @@
postgresqlVersion = "9.2.21"
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.2.21/pg_hba.conf.nrd
@@ -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.2.21/postgresql.conf.nrd
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.2.21/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.2.21/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.2.21/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.3.17/init.bat
@@ -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.3.17/neard.conf
@@ -0,0 +1,14 @@
postgresqlVersion = "9.3.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.3.17/pg_hba.conf.nrd
@@ -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.3.17/postgresql.conf.nrd
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.3.17/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.3.17/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.3.17/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.12/init.bat
@@ -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.12/neard.conf
@@ -0,0 +1,14 @@
postgresqlVersion = "9.4.12"
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.12/pg_hba.conf.nrd
@@ -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.12/postgresql.conf.nrd
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.12/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.12/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.12/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.7/init.bat
@@ -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.7/neard.conf
@@ -0,0 +1,14 @@
postgresqlVersion = "9.5.7"
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.7/pg_hba.conf.nrd
@@ -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.7/postgresql.conf.nrd
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.7/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.7/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.7/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.3/init.bat
@@ -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.3/neard.conf
@@ -0,0 +1,14 @@
postgresqlVersion = "9.6.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/postgresql9.6.3/pg_hba.conf.nrd
@@ -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.3/postgresql.conf.nrd
@@ -0,0 +1,35 @@
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.3/data'
hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.3/data/pg_hba.conf'
ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.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
2 changes: 1 addition & 1 deletion build.properties
@@ -1,5 +1,5 @@
bundle.name = postgresql
bundle.release = r2
bundle.release = r3
bundle.type = bins
bundle.format = 7z

Expand Down
5 changes: 5 additions & 0 deletions releases.properties
Expand Up @@ -2,11 +2,16 @@
9.1.24 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.1.24-r2.7z
9.2.17 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.2.17-r1.7z
9.2.19 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.2.19-r2.7z
9.2.21 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.2.21-r3.7z
9.3.13 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.3.13-r1.7z
9.3.15 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.3.15-r2.7z
9.3.17 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.3.17-r3.7z
9.4.8 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.4.8-r1.7z
9.4.10 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.4.10-r2.7z
9.4.12 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.4.12-r3.7z
9.5.3 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.5.3-r1.7z
9.5.5 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.5.5-r2.7z
9.5.7 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.5.7-r3.7z
9.6.0 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.6.0-r1.7z
9.6.1 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.6.1-r2.7z
9.6.3 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.6.3-r3.7z

0 comments on commit 69e397f

Please sign in to comment.