Hello community,

here is the log from the commit of package postgresql95 for openSUSE:Factory 
checked in at 2019-09-05 12:30:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/postgresql95 (Old)
 and      /work/SRC/openSUSE:Factory/.postgresql95.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "postgresql95"

Thu Sep  5 12:30:14 2019 rev:18 rq:723111 version:9.5.19

Changes:
--------
--- /work/SRC/openSUSE:Factory/postgresql95/postgresql95.changes        
2019-07-13 14:00:15.274900621 +0200
+++ /work/SRC/openSUSE:Factory/.postgresql95.new.7948/postgresql95.changes      
2019-09-05 12:30:16.779620778 +0200
@@ -1,0 +2,14 @@
+Mon Aug 12 14:48:48 UTC 2019 - Reinhard Max <m...@suse.com>
+
+- Update to 9.5.19:
+  * https://www.postgresql.org/about/news/1960/
+  * https://www.postgresql.org/docs/9.5/release-9-5-19.html
+  * CVE-2019-10208, bsc#1145092: TYPE in pg_temp executes arbitrary
+    SQL during SECURITY DEFINER execution.
+
+-------------------------------------------------------------------
+Fri Aug  2 08:54:22 UTC 2019 - Martin Liška <mli...@suse.cz>
+
+- Use FAT LTO objects in order to provide proper static library.
+
+-------------------------------------------------------------------

Old:
----
  postgresql-9.5.18.tar.bz2

New:
----
  postgresql-9.5.19.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ postgresql95.spec ++++++
--- /var/tmp/diff_new_pack.ECsW3W/_old  2019-09-05 12:30:18.031620533 +0200
+++ /var/tmp/diff_new_pack.ECsW3W/_new  2019-09-05 12:30:18.035620532 +0200
@@ -71,7 +71,7 @@
 Summary:        Basic Clients and Utilities for PostgreSQL
 License:        PostgreSQL
 Group:          Productivity/Databases/Tools
-Version:        9.5.18
+Version:        9.5.19
 Release:        0
 %define pg_minor_version %(echo %version | sed -r 
's/^([0-9]+\\.[0-9]+).*/\\1/')
 Source0:        
https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
@@ -324,13 +324,14 @@
 %patch4
 %patch6 -p1
 %patch8 -p1
-%patch9 -p1
+%patch9
 touch -r tmp configure
 rm tmp
 find src/test/ -name '*.orig' -delete
 find -name .gitignore -delete
 
 %build
+%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
 PACKAGE_TARNAME=%name %configure \
         --bindir=%pgbindir \
         --libdir=%pglibdir \

++++++ postgresql-9.5.18.tar.bz2 -> postgresql-9.5.19.tar.bz2 ++++++
/work/SRC/openSUSE:Factory/postgresql95/postgresql-9.5.18.tar.bz2 
/work/SRC/openSUSE:Factory/.postgresql95.new.7948/postgresql-9.5.19.tar.bz2 
differ: char 11, line 1

++++++ postgresql-var-run-socket.patch ++++++
--- /var/tmp/diff_new_pack.ECsW3W/_old  2019-09-05 12:30:18.091620521 +0200
+++ /var/tmp/diff_new_pack.ECsW3W/_new  2019-09-05 12:30:18.091620521 +0200
@@ -13,11 +13,9 @@
 override it via postgresql.conf.)
 
 
-Index: postgresql-9.5.2/src/bin/pg_upgrade/test.sh
-===================================================================
---- postgresql-9.5.2.orig/src/bin/pg_upgrade/test.sh
-+++ postgresql-9.5.2/src/bin/pg_upgrade/test.sh
-@@ -148,6 +148,12 @@ done
+--- src/bin/pg_upgrade/test.sh.orig
++++ src/bin/pg_upgrade/test.sh
+@@ -159,6 +159,12 @@ done
  EXTRA_REGRESS_OPTS="$EXTRA_REGRESS_OPTS --port=$PGPORT"
  export EXTRA_REGRESS_OPTS
  
@@ -27,14 +25,12 @@
 +
 +POSTMASTER_OPTS="$POSTMASTER_OPTS -c unix_socket_directories='$PGHOST'"
 +
- # enable echo so the user can see what is being executed
- set -x
+ standard_initdb "$oldbindir"/initdb
+ "$oldbindir"/pg_ctl start -l "$logdir/postmaster1.log" -o "$POSTMASTER_OPTS" 
-w
  
-Index: postgresql-9.5.2/src/backend/utils/misc/guc.c
-===================================================================
---- postgresql-9.5.2.orig/src/backend/utils/misc/guc.c
-+++ postgresql-9.5.2/src/backend/utils/misc/guc.c
-@@ -3196,7 +3196,7 @@ static struct config_string ConfigureNam
+--- src/backend/utils/misc/guc.c.orig
++++ src/backend/utils/misc/guc.c
+@@ -3205,7 +3205,7 @@ static struct config_string ConfigureNam
                },
                &Unix_socket_directories,
  #ifdef HAVE_UNIX_SOCKETS
@@ -43,11 +39,9 @@
  #else
                "",
  #endif
-Index: postgresql-9.5.2/src/bin/initdb/initdb.c
-===================================================================
---- postgresql-9.5.2.orig/src/bin/initdb/initdb.c
-+++ postgresql-9.5.2/src/bin/initdb/initdb.c
-@@ -1210,7 +1210,7 @@ setup_config(void)
+--- src/bin/initdb/initdb.c.orig
++++ src/bin/initdb/initdb.c
+@@ -1218,7 +1218,7 @@ setup_config(void)
  
  #ifdef HAVE_UNIX_SOCKETS
        snprintf(repltok, sizeof(repltok), "#unix_socket_directories = '%s'",
@@ -56,10 +50,8 @@
  #else
        snprintf(repltok, sizeof(repltok), "#unix_socket_directories = ''");
  #endif
-Index: postgresql-9.5.2/src/include/pg_config_manual.h
-===================================================================
---- postgresql-9.5.2.orig/src/include/pg_config_manual.h
-+++ postgresql-9.5.2/src/include/pg_config_manual.h
+--- src/include/pg_config_manual.h.orig
++++ src/include/pg_config_manual.h
 @@ -169,7 +169,7 @@
   * here's where to twiddle it.  You can also override this at runtime
   * with the postmaster's -k switch.


Reply via email to