diff --git a/postgresql-12.7.tar.bz2.sha256 b/postgresql-12.7.tar.bz2.sha256 deleted file mode 100644 index 7bbec0d68bb9caf613e4c5cea6dff3529a62ace3..0000000000000000000000000000000000000000 --- a/postgresql-12.7.tar.bz2.sha256 +++ /dev/null @@ -1 +0,0 @@ -8490741f47c88edc8b6624af009ce19fda4dc9b31c4469ce2551d84075d5d995 postgresql-12.7.tar.bz2 diff --git a/postgresql-14.8-US.pdf b/postgresql-14.8-US.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e75e9b5179fd4d23bfe5d371b81137652b2a852 Binary files /dev/null and b/postgresql-14.8-US.pdf differ diff --git a/postgresql-12.7.tar.bz2 b/postgresql-14.8.tar.bz2 similarity index 66% rename from postgresql-12.7.tar.bz2 rename to postgresql-14.8.tar.bz2 index 408ea5a5faed306c4aad3ae2d18d2932fc5cba5a..684dbc6deb2ecadf2ee6f4988f5d2484ff0c7790 100644 Binary files a/postgresql-12.7.tar.bz2 and b/postgresql-14.8.tar.bz2 differ diff --git a/postgresql-14.8.tar.bz2.sha256 b/postgresql-14.8.tar.bz2.sha256 new file mode 100644 index 0000000000000000000000000000000000000000..783600949d30691c2b34265b85739ca2be1c844e --- /dev/null +++ b/postgresql-14.8.tar.bz2.sha256 @@ -0,0 +1 @@ +39d38f0030737ed03835debeefee3b37d335462ce4995e2497bc38d621ebe45a postgresql-14.8.tar.bz2 diff --git a/postgresql-logging.patch b/postgresql-logging.patch index 76ff7b8c75cb11ff33fb55ba25891e738a555b5e..50ebdaa7b25ca2f10f9c1fc71f6a044a73e152bd 100644 --- a/postgresql-logging.patch +++ b/postgresql-logging.patch @@ -1,10 +1,7 @@ -Default to stderr-based logging with a week's worth of daily logfiles. - - -diff -Naur postgresql-9.1rc1.orig/src/backend/utils/misc/postgresql.conf.sample postgresql-9.1rc1/src/backend/utils/misc/postgresql.conf.sample ---- postgresql-9.1rc1.orig/src/backend/utils/misc/postgresql.conf.sample 2011-08-18 17:23:13.000000000 -0400 -+++ postgresql-9.1rc1/src/backend/utils/misc/postgresql.conf.sample 2011-08-18 18:39:39.697526799 -0400 -@@ -279,7 +279,7 @@ +diff -up postgresql-14beta2/src/backend/utils/misc/postgresql.conf.sample.patch2 postgresql-14beta2/src/backend/utils/misc/postgresql.conf.sample +--- postgresql-14beta2/src/backend/utils/misc/postgresql.conf.sample.patch2 2021-06-21 23:07:55.000000000 +0200 ++++ postgresql-14beta2/src/backend/utils/misc/postgresql.conf.sample 2021-06-25 19:37:21.868632721 +0200 +@@ -435,7 +435,7 @@ # requires logging_collector to be on. # This is used when logging to stderr: @@ -13,7 +10,7 @@ diff -Naur postgresql-9.1rc1.orig/src/backend/utils/misc/postgresql.conf.sample # into log files. Required to be on for # csvlogs. # (change requires restart) -@@ -355,11 +355,11 @@ +@@ -443,16 +443,16 @@ # These are only used if logging_collector is on: #log_directory = 'log' # directory where log files are written, # can be absolute or relative to PGDATA @@ -22,15 +19,6 @@ diff -Naur postgresql-9.1rc1.orig/src/backend/utils/misc/postgresql.conf.sample # can include strftime() escapes #log_file_mode = 0600 # creation mode for log files, # begin with 0 to use octal notation --#log_truncate_on_rotation = off # If on, an existing log file with the -+log_truncate_on_rotation = on # If on, an existing log file with the - # same name as the new log file will be - # truncated rather than appended to. - # But such truncation only occurs on -@@ -367,9 +367,9 @@ - # or size-driven rotation. Default is - # off, meaning append to existing files - # in all cases. -#log_rotation_age = 1d # Automatic rotation of logfiles will +log_rotation_age = 1d # Automatic rotation of logfiles will # happen after that time. 0 disables. @@ -38,4 +26,8 @@ diff -Naur postgresql-9.1rc1.orig/src/backend/utils/misc/postgresql.conf.sample +log_rotation_size = 0 # Automatic rotation of logfiles will # happen after that much log output. # 0 disables. - +-#log_truncate_on_rotation = off # If on, an existing log file with the ++log_truncate_on_rotation = on # If on, an existing log file with the + # same name as the new log file will be + # truncated rather than appended to. + # But such truncation only occurs on diff --git a/postgresql-server-pg_config.patch b/postgresql-server-pg_config.patch index 22134a0f642b80812d72c00738de70b54c9868b3..9ce0b4ba4f053cd8d67df428d88ac56917cc00fd 100644 --- a/postgresql-server-pg_config.patch +++ b/postgresql-server-pg_config.patch @@ -6,9 +6,9 @@ rhbz#1618698 change, rather provide pg_server_config binary, which int urn means that we'll have to fix only a minimal set of packages which really build PostgreSQL server modules. -diff -up postgresql-13.1/src/bin/pg_config/Makefile.patch9 postgresql-13.1/src/bin/pg_config/Makefile ---- postgresql-13.1/src/bin/pg_config/Makefile.patch9 2020-11-18 09:28:30.885453275 +0100 -+++ postgresql-13.1/src/bin/pg_config/Makefile 2020-11-18 09:31:33.926325327 +0100 +diff -ur postgresql-14rc1/src/bin/pg_config/Makefile pgsql14/src/bin/pg_config/Makefile +--- postgresql-14rc1/src/bin/pg_config/Makefile 2021-09-20 23:33:01.000000000 +0200 ++++ pgsql14/src/bin/pg_config/Makefile 2021-09-22 10:48:06.484093152 +0200 @@ -11,6 +11,8 @@ PGFILEDESC = "pg_config - report configuration information" PGAPPICON=win32 @@ -18,7 +18,7 @@ diff -up postgresql-13.1/src/bin/pg_config/Makefile.patch9 postgresql-13.1/src/b subdir = src/bin/pg_config top_builddir = ../../.. include $(top_builddir)/src/Makefile.global -@@ -19,22 +21,22 @@ OBJS = \ +@@ -19,22 +21,22 @@ $(WIN32RES) \ pg_config.o @@ -47,12 +47,12 @@ diff -up postgresql-13.1/src/bin/pg_config/Makefile.patch9 postgresql-13.1/src/b rm -rf tmp_check check: -diff -up postgresql-13.1/src/bin/pg_config/nls.mk.patch9 postgresql-13.1/src/bin/pg_config/nls.mk ---- postgresql-13.1/src/bin/pg_config/nls.mk.patch9 2020-11-18 09:28:30.885453275 +0100 -+++ postgresql-13.1/src/bin/pg_config/nls.mk 2020-11-18 09:32:00.735599526 +0100 +diff -ur postgresql-14rc1/src/bin/pg_config/nls.mk pgsql14/src/bin/pg_config/nls.mk +--- postgresql-14rc1/src/bin/pg_config/nls.mk 2021-09-20 23:33:01.000000000 +0200 ++++ pgsql14/src/bin/pg_config/nls.mk 2021-09-22 10:48:51.492460567 +0200 @@ -1,4 +1,4 @@ # src/bin/pg_config/nls.mk -CATALOG_NAME = pg_config +CATALOG_NAME = pg_server_config - AVAIL_LANGUAGES = cs de es fr he it ja ko pl pt_BR ru sv tr uk vi zh_CN + AVAIL_LANGUAGES = cs de el es fr he it ja ko pl pt_BR ru sv tr uk vi zh_CN GETTEXT_FILES = pg_config.c ../../common/config_info.c ../../common/exec.c diff --git a/postgresql-setup-8.5.tar.gz b/postgresql-setup-8.5.tar.gz deleted file mode 100644 index d7b376cb9caeb351a35197c9a0af2546b50c130f..0000000000000000000000000000000000000000 Binary files a/postgresql-setup-8.5.tar.gz and /dev/null differ diff --git a/postgresql-setup-8.8.tar.gz b/postgresql-setup-8.8.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..df8da8e1e1942df965db695054163bb124b22fad Binary files /dev/null and b/postgresql-setup-8.8.tar.gz differ diff --git a/postgresql.spec b/postgresql.spec index 865403560f64f1eb2ca5798cdc0f3142017d3c70..f3d7275120343b82a7b4133d7f6e97e05d407bf6 100644 --- a/postgresql.spec +++ b/postgresql.spec @@ -30,8 +30,8 @@ Summary: PostgreSQL client programs Name: postgresql -%global majorversion 13 -Version: %{majorversion}.11 +%global majorversion 14 +Version: %{majorversion}.8 Release: 1 # The PostgreSQL license is very similar to other MIT licenses, but the OSI @@ -39,12 +39,12 @@ Release: 1 License: PostgreSQL Url: http://www.postgresql.org/ -%global prevmajorversion 12 -%global prevversion %{prevmajorversion}.7 +%global prevmajorversion 13 +%global prevversion %{prevmajorversion}.11 %global prev_prefix %{_libdir}/pgsql/postgresql-%{prevmajorversion} %global precise_version %{?epoch:%epoch:}%version-%release -%global setup_version 8.5 +%global setup_version 8.8 %global service_name postgresql.service @@ -869,7 +869,7 @@ find_lang_bins server.lst \ initdb pg_basebackup pg_controldata pg_ctl pg_resetwal pg_rewind plpgsql \ postgres pg_checksums pg_verifybackup find_lang_bins contrib.lst \ - pg_archivecleanup pg_test_fsync pg_test_timing pg_waldump + pg_amcheck pg_archivecleanup pg_test_fsync pg_test_timing pg_waldump find_lang_bins main.lst \ pg_dump pg_upgrade pgscripts psql \ %if ! %external_libpq @@ -962,8 +962,8 @@ make -C postgresql-setup-%{setup_version} check %files contrib -f contrib.lst %doc contrib/spi/*.example %{_bindir}/oid2name +%{_bindir}/pg_amcheck %{_bindir}/pg_archivecleanup -%{_bindir}/pg_standby %{_bindir}/pg_test_fsync %{_bindir}/pg_test_timing %{_bindir}/pg_waldump @@ -1001,11 +1001,13 @@ make -C postgresql-setup-%{setup_version} check %{_datadir}/pgsql/extension/lo* %{_datadir}/pgsql/extension/ltree* %{_datadir}/pgsql/extension/moddatetime* +%{_datadir}/pgsql/extension/old_snapshot* %{_datadir}/pgsql/extension/pageinspect* %{_datadir}/pgsql/extension/pg_buffercache* %{_datadir}/pgsql/extension/pg_freespacemap* %{_datadir}/pgsql/extension/pg_prewarm* %{_datadir}/pgsql/extension/pg_stat_statements* +%{_datadir}/pgsql/extension/pg_surgery* %{_datadir}/pgsql/extension/pg_trgm* %{_datadir}/pgsql/extension/pg_visibility* %{_datadir}/pgsql/extension/pgcrypto* @@ -1066,11 +1068,13 @@ make -C postgresql-setup-%{setup_version} check %{_libdir}/pgsql/ltree_plpython3.so %endif %{_libdir}/pgsql/moddatetime.so +%{_libdir}/pgsql/old_snapshot.so %{_libdir}/pgsql/pageinspect.so %{_libdir}/pgsql/passwordcheck.so %{_libdir}/pgsql/pg_buffercache.so %{_libdir}/pgsql/pg_freespacemap.so %{_libdir}/pgsql/pg_stat_statements.so +%{_libdir}/pgsql/pg_surgery.so %{_libdir}/pgsql/pg_trgm.so %{_libdir}/pgsql/pg_visibility.so %{_libdir}/pgsql/pgcrypto.so @@ -1086,9 +1090,9 @@ make -C postgresql-setup-%{setup_version} check %{_libdir}/pgsql/tsm_system_time.so %{_libdir}/pgsql/unaccent.so %{_mandir}/man1/oid2name.* +%{_mandir}/man1/pg_amcheck.* %{_mandir}/man1/pg_archivecleanup.* %{_mandir}/man1/pg_recvlogical.* -%{_mandir}/man1/pg_standby.* %{_mandir}/man1/pg_test_fsync.* %{_mandir}/man1/pg_test_timing.* %{_mandir}/man1/pg_waldump.* @@ -1136,6 +1140,8 @@ make -C postgresql-setup-%{setup_version} check %{_datadir}/pgsql/postgres.bki %{_datadir}/pgsql/snowball_create.sql %{_datadir}/pgsql/sql_features.txt +%{_datadir}/pgsql/system_constraints.sql +%{_datadir}/pgsql/system_functions.sql %{_datadir}/pgsql/system_views.sql %{_datadir}/pgsql/timezonesets/ %{_datadir}/pgsql/tsearch_data/ @@ -1287,6 +1293,9 @@ make -C postgresql-setup-%{setup_version} check %changelog +* Tue Aug 1 2023 dillon chen - 14.8-1 +- update to 14.8 + * Thu Jul 27 2023 dillon chen - 13.11-1 - update to 13.11