Hello community, here is the log from the commit of package postgresql for openSUSE:Leap:15.2 checked in at 2020-03-13 10:55:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/postgresql (Old) and /work/SRC/openSUSE:Leap:15.2/.postgresql.new.3160 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "postgresql" Fri Mar 13 10:55:02 2020 rev:34 rq:780987 version:12 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/postgresql/postgresql.changes 2020-02-25 12:17:01.800413426 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.postgresql.new.3160/postgresql.changes 2020-03-13 10:55:03.664335682 +0100 @@ -8 +8,34 @@ -Tue Nov 5 09:50:40 UTC 2019 - Reinhard Max <[email protected]> +Thu Nov 14 12:36:59 UTC 2019 - Reinhard Max <[email protected]> + +- Sync ownership of /run/postgresql in the file list with tmpfiles. + +------------------------------------------------------------------- +Tue Oct 22 13:08:50 UTC 2019 - Marcus Rueckert <[email protected]> + +- bump to 12 + +------------------------------------------------------------------- +Mon Oct 7 08:26:39 UTC 2019 - Reinhard Max <[email protected]> + +- Use the correct content for .bash_profile (boo#1153168). + +------------------------------------------------------------------- +Mon Sep 23 14:03:32 UTC 2019 - Reinhard Max <[email protected]> + +- Stop shipping SUSEfirewall2 config files (bsc#1151591). +- Fix installation of bash_profile for SLE11 (pre systemd). + +------------------------------------------------------------------- +Fri Feb 22 07:46:53 UTC 2019 - Franck Bui <[email protected]> + +- Drop use of $FIRST_ARG in .spec + + The use of $FIRST_ARG was probably required because of the + %service_* rpm macros were playing tricks with the shell positional + parameters. This is bad practice and error prones so let's assume + that no macros should do that anymore and hence it's safe to assume + that positional parameters remains unchanged after any rpm macro + call. + +------------------------------------------------------------------- +Tue Feb 19 16:05:22 UTC 2019 - Reinhard Max <[email protected]> @@ -12,0 +46,4 @@ + +------------------------------------------------------------------- +Thu Jan 31 13:23:56 UTC 2019 - Reinhard Max <[email protected]> + @@ -15 +52,34 @@ -- Sync spec file with Factory as far as applicable. +- Use /run/postgresql instead of /var/run/postgresql in %ghost and + postgresql-tmpfiles.conf to avoid rpmlint warnings and errors. + +------------------------------------------------------------------- +Fri Nov 30 13:14:40 UTC 2018 - Marcus Rueckert <[email protected]> + +- add /var/run/postgresql to the filelist. as %ghost for systemd + systems and directly for non systemd systems + +------------------------------------------------------------------- +Fri Nov 30 11:05:00 UTC 2018 - Marcus Rueckert <[email protected]> + +- fix the unexpanded macro in the description of server-devel + +------------------------------------------------------------------- +Thu Nov 15 14:34:28 UTC 2018 - Reinhard Max <[email protected]> + +- Also bump the default package to 11. + +------------------------------------------------------------------- +Wed Nov 7 16:57:50 UTC 2018 - Marcus Rueckert <[email protected]> + +- add server-devel and llvmjit package file sections + +------------------------------------------------------------------- +Thu Oct 25 13:14:25 UTC 2018 - Reinhard Max <[email protected]> + +- Add the new subpackages server-devel and llvmjit that were + introduced with postgresql11. + +------------------------------------------------------------------- +Mon Jul 2 17:08:32 UTC 2018 - [email protected] + +- bump to 11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ postgresql.spec ++++++ --- /var/tmp/diff_new_pack.BWHiA5/_old 2020-03-13 10:55:04.084335981 +0100 +++ /var/tmp/diff_new_pack.BWHiA5/_new 2020-03-13 10:55:04.088335984 +0100 @@ -15,7 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -%define defaultpackage postgresql10 +%define defaultpackage postgresql%version #Compat macro for new _fillupdir macro introduced in Nov 2017 %if ! %{defined _fillupdir} @@ -32,7 +32,7 @@ Summary: Basic Clients and Utilities for PostgreSQL License: PostgreSQL Group: Productivity/Databases/Tools -Version: 10 +Version: 12 Release: 0 Url: https://www.postgresql.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -102,6 +102,41 @@ PostgreSQL server, which will in turn allow you to create and maintain PostgreSQL databases. +%package server-devel +Summary: PostgreSQL server development header files and utilities +Group: Development/Libraries/C and C++ +Provides: postgresql-server-devel-noarch = %version-%release +Requires: postgresql-server-devel-implementation +Recommends: %defaultpackage-server-devel + +%description server-devel +PostgreSQL is an advanced object-relational database management system +that supports an extended subset of the SQL standard, including +transactions, foreign keys, subqueries, triggers, and user-defined +types and functions. + +This package contains the header files and libraries needed to compile +C extensions that link into the PostgreSQL server. For building client +applications, see the %defaultpackage-devel package. + +%package llvmjit +Summary: Just-in-time compilation support for PostgreSQL +Group: Productivity/Databases/Servers +Provides: postgresql-llvmjit-noarch = %version-%release +Requires: postgresql-llvmjit-implementation +Recommends: %defaultpackage-llvmjit + +%description llvmjit +PostgreSQL is an advanced object-relational database management system +that supports an extended subset of the SQL standard, including +transactions, foreign keys, sub-queries, triggers, and user-defined +types and functions. + +This package contains support for just-in-time compiling parts of +PostgreSQL queries. Using LLVM it compiles e.g. expressions and tuple +deforming into native code, with the goal of accelerating analytics +queries. + %package test Summary: The test suite for PostgreSQL Group: Productivity/Databases/Servers @@ -279,7 +314,7 @@ # Save the "enabled" and "active" state across the transition of # ownership of postgresql.service from postgresql-init to # postgresql-server. -if [ "$FIRST_ARG" -ge 1 ]; then \ +if [ $1 -ge 1 ]; then \ if [ x$(systemctl is-enabled postgresql.service 2>/dev/null ||:) = "xenabled" ]; then touch %eflag fi @@ -387,6 +422,14 @@ %defattr(-,root,root,-) %doc README +%files server-devel +%defattr(-,root,root,-) +%doc README + +%files llvmjit +%defattr(-,root,root,-) +%doc README + %files plperl %defattr(-,root,root,-) %doc README ++++++ postgresql-tmpfiles.conf ++++++ --- /var/tmp/diff_new_pack.BWHiA5/_old 2020-03-13 10:55:04.156336033 +0100 +++ /var/tmp/diff_new_pack.BWHiA5/_new 2020-03-13 10:55:04.156336033 +0100 @@ -1,3 +1,3 @@ # For the PostgreSQL server's unix domain socket -d /run/postgresql 1775 postgres postgres - +d /run/postgresql 1775 postgres postgres - - C /var/lib/pgsql/.bash_profile 0640 postgres postgres - /usr/share/postgresql/bash_profile
