SHA256
1
0
forked from pool/postgresql

7 Commits

Author SHA256 Message Date
1005b90ef7 Accepting request 1224220 from server:database:postgresql
- Bump major to 17 for SLE.

- bsc#1219340: The last fix was not correct. Improve it by removing
  the dependency again and call fillup only if it is installed.

OBS-URL: https://build.opensuse.org/request/show/1224220
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql?expand=0&rev=72
2024-11-15 14:38:19 +00:00
655fc6f3c6 sync
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql?expand=0&rev=159
2024-11-14 12:55:50 +00:00
78ebe9d856 Accepting request 1201994 from server:database:postgresql
- Bump major and default to 17 for Factory and TW.

OBS-URL: https://build.opensuse.org/request/show/1201994
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql?expand=0&rev=71
2024-09-23 13:18:56 +00:00
556b2d7a68 - Bump major and default to 17 for Factory and TW.
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql?expand=0&rev=158
2024-09-19 11:31:26 +00:00
255769fca9 Accepting request 1200762 from server:database:postgresql
- bsc#1230423: Relax the dependency of extensions on the server
  version from exact major.minor to greater or equal, after Tom
  Lane confirmed on the PostgreSQL packagers list that ABI
  stability is being taken care of between minor releases.

OBS-URL: https://build.opensuse.org/request/show/1200762
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postgresql?expand=0&rev=70
2024-09-15 10:32:52 +00:00
bc93ff23f3 typo
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql?expand=0&rev=157
2024-09-13 07:28:01 +00:00
7fec1e465b - bsc#1230423: Relax the dependency of extensions on the server
versopn from exact major.minor to greater or equal, after Tom
  Lane confirmed on the PostgreSQL packagers list that ABI
  stability is being taken care of between minor releases.

OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql?expand=0&rev=156
2024-09-12 08:30:29 +00:00
3 changed files with 30 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ Obsoletes: %{pg_name}-%{ext_name}-llvmjit < %{version}-%{release} \
%nil
%pg_server_requires \
%{requires_eq %{pg_name}-server} \
%{requires_ge %{pg_name}-server} \
%if %{postgresql_has_llvm} \
Recommends: %{pg_name}-llvmjit \
%pg_obsolete_llvm_subpackage \

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Wed Nov 13 15:52:30 UTC 2024 - Reinhard Max <max@suse.com>
- Bump major to 17 for SLE.
-------------------------------------------------------------------
Thu Sep 19 11:30:29 UTC 2024 - Reinhard Max <max@suse.com>
- Bump major and default to 17 for Factory and TW.
-------------------------------------------------------------------
Thu Sep 12 08:28:00 UTC 2024 - Reinhard Max <max@suse.com>
- bsc#1230423: Relax the dependency of extensions on the server
version from exact major.minor to greater or equal, after Tom
Lane confirmed on the PostgreSQL packagers list that ABI
stability is being taken care of between minor releases.
-------------------------------------------------------------------
Tue Feb 27 15:28:14 UTC 2024 - Reinhard Max <max@suse.com>
- bsc#1219340: The last fix was not correct. Improve it by removing
the dependency again and call fillup only if it is installed.
-------------------------------------------------------------------
Thu Feb 8 12:09:14 UTC 2024 - Reinhard Max <max@suse.com>

View File

@@ -15,8 +15,8 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define pgmajor 16
%define defaultpackage postgresql16
%define pgmajor 17
%define defaultpackage postgresql17
%if ! %{defined _rpmmacrodir}
%define _rpmmacrodir %{_rpmconfigdir}/macros.d
@@ -131,7 +131,6 @@ BuildRequires: pkgconfig(systemd)
%{?systemd_ordering}
%else
Requires(postun): %insserv_prereq
Requires(pre): %fillup_prereq
%endif
@@ -413,7 +412,9 @@ fi
%endif
%post server
%fillup_only -n postgresql
if [ -x /bin/fillup ]; then
%fillup_only -n postgresql
fi
%if %{with systemd}
if test -x /usr/bin/systemctl; then
PROFILE="/var/lib/pgsql/.bash_profile"