forked from pool/postgresql
Compare commits
7 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 1005b90ef7 | |||
| 655fc6f3c6 | |||
| 78ebe9d856 | |||
| 556b2d7a68 | |||
| 255769fca9 | |||
| bc93ff23f3 | |||
| 7fec1e465b |
@@ -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 \
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user