multiple packages: Add SLES 16 support
authorDevrim Gunduz <devrim@gunduz.org>
Wed, 8 Oct 2025 06:33:02 +0000 (09:33 +0300)
committerDevrim Gunduz <devrim@gunduz.org>
Wed, 8 Oct 2025 06:33:02 +0000 (09:33 +0300)
19 files changed:
rpm/redhat/main/non-common/pg_hint_plan/main/pg_hint_plan.spec
rpm/redhat/main/non-common/pg_net/main/pg_net.spec
rpm/redhat/main/non-common/pg_partman/main/pg_partman.spec
rpm/redhat/main/non-common/pg_prioritize/main/pg_prioritize.spec
rpm/redhat/main/non-common/pg_qualstats/main/pg_qualstats.spec
rpm/redhat/main/non-common/pg_readonly/main/pg_readonly.spec
rpm/redhat/main/non-common/pg_rewrite/main/pg_rewrite.spec
rpm/redhat/main/non-common/pg_roaringbitmap/main/pg_roaringbitmap.spec
rpm/redhat/main/non-common/pg_show_plans/main/pg_show_plans.spec
rpm/redhat/main/non-common/pg_similarity/main/pg_similarity.spec
rpm/redhat/main/non-common/pg_snakeoil/main/pg_snakeoil.spec
rpm/redhat/main/non-common/pgimportdoc/main/pgimportdoc.spec
rpm/redhat/main/non-common/pgmeminfo/main/pgmeminfo.spec
rpm/redhat/main/non-common/pgmp/main/pgmp.spec
rpm/redhat/main/non-common/pgnodemx/main/pgnodemx.spec
rpm/redhat/main/non-common/pgpcre/main/pgpcre.spec
rpm/redhat/main/non-common/pgpdf/main/pgpdf.spec
rpm/redhat/main/non-common/pgq/main/pgq.spec
rpm/redhat/main/non-common/pgsentinel/main/pgsentinel.spec

index 4ff6c58ad5d16e11df8fd5d744216396d5e6d661..a4d10580401e57b1d5be49ce81a2a3a04cea804c 100644 (file)
@@ -30,7 +30,7 @@
 Summary:       Tweak PostgreSQL execution plans using so-called "hints" in SQL comments
 Name:          %{sname}_%{pgmajorversion}
 Version:       %{pghintplanversion}
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 License:       MIT
 Source0:       https://github.com/ossc-db/pg_hint_plan/archive/refs/tags/REL%{pgmajorversion}_%{git_tag}.tar.gz
 URL:           https://github.com/ossc-db/%{sname}/
@@ -52,13 +52,17 @@ properties of the data, for example, correlation between columns.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_hint_plan
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
@@ -97,6 +101,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin:$PATH %{__make} %{?_smp_mflags} DESTDIR=%{build
 %endif
 
 %changelog
+* Tue Oct 7 2025 Devrim Gündüz <devrim@gunduz.org> - %{pghintplanversion}-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - %{pghintplanversion}-2PGDG
 - Bump release number (missed in previous commit)
 
index aff61318e25e7df22b64a9aabec2a2799d89d711..c75f7529a467137a582fbaa26ee5b06b614b20b3 100644 (file)
@@ -5,7 +5,7 @@
 Summary:       A PostgreSQL extension that enables asynchronous (non-blocking) HTTP/HTTPS requests with SQL
 Name:          %{sname}_%{pgmajorversion}
 Version:       0.19.7
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 URL:           https://github.com/supabase/%{sname}
 Source0:       https://github.com/supabase/%{sname}/archive/refs/tags/v%{version}.tar.gz
 License:       Apache-2.0
@@ -29,19 +29,24 @@ possibilities.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_net
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
 This package provides JIT support for pg_net
 %endif
 
+
 %prep
 %setup -q -n %{sname}-%{version}
 
@@ -68,6 +73,9 @@ PATH=%{pginstdir}/bin:$PATH %{__make} USE_PGXS=1 %{?_smp_mflags} DESTDIR=%{build
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 0.19.7-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 0.19.7-2PGDG
 - Bump release number (missed in previous commit)
 
index 71eb92f586ae6a475327e3d273bcd66ad686787b..fc5bbee2ef16d6a69582f732fbb6713d36a40481 100644 (file)
@@ -6,7 +6,7 @@ Summary:        A PostgreSQL extension to manage partitioned tables by time or ID
 
 Name:          %{sname}_%{pgmajorversion}
 Version:       5.2.4
-Release:       3PGDG%{?dist}
+Release:       4PGDG%{?dist}
 License:       PostgreSQL
 Source0:       https://github.com/pgpartman/%{sname}/archive/v%{version}.tar.gz
 URL:           https://github.com/pgpartman/%{sname}
@@ -37,17 +37,21 @@ cases.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_partman
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
-This packages provides JIT support for pg_partman
+This package provides JIT support for pg_partman
 %endif
 
 %prep
@@ -86,6 +90,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} %{?_smp_mflags} install DESTDI
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 5.2.4-4PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 5.2.4-3PGDG
 - Bump release number (missed in previous commit)
 
index 525a0644ca628a7b74758ab7379a7041ae5a94d6..b6cd65ab1eafc1a1249b6a14a12a36c0f8781689 100644 (file)
@@ -6,7 +6,7 @@
 Summary:       Get and set the nice priorities of PostgreSQL backends
 Name:          %{pname}_%{pgmajorversion}
 Version:       1.0.4
-Release:       8PGDG%{?dist}
+Release:       9PGDG%{?dist}
 License:       PostgreSQL
 Source0:       http://api.pgxn.org/dist/%{sname}/%{version}/%{sname}-%{version}.zip
 URL:           https://github.com/schmiddy/%{pname}
@@ -25,10 +25,14 @@ which you may be familiar with from the nice or renice programs.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_prioritize
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
 BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
 Requires:      llvm >= 19.0
@@ -66,6 +70,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} DESTDIR=%{buildroot} %{?_smp_m
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 1.0.4-9PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 1.0.4-8PGDG
 - Bump release number (missed in previous commit)
 
index 56acbfce099a307531926b0f02eefd2e191e2b60..65e47367954834286a7eb4678152f3450d184ff2 100644 (file)
@@ -5,7 +5,7 @@
 Summary:       A PostgreSQL extension collecting statistics about predicates
 Name:          %{sname}_%{pgmajorversion}
 Version:       2.1.2
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 License:       PostgreSQL
 Source0:       https://github.com/powa-team/%{sname}/archive/%{version}.tar.gz
 URL:           https://github.com/powa-team/%{sname}
@@ -31,13 +31,17 @@ together.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_qualstats
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
@@ -77,6 +81,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} %{?_smp_mflags} install DESTDI
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 2.1.2-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 2.1.2-2PGDG
 - Bump release number (missed in previous commit)
 
index 8e4057e49179676ba7c20ced0a2e26ba2bac7e58..f1e6e0ab30f84b4330bfefcbb79efd7d6df69c11 100644 (file)
@@ -5,11 +5,11 @@
 Summary:       PostgreSQL extension which allows to set all cluster databases read only.
 Name:          %{sname}_%{pgmajorversion}
 Version:       1.0.3
-Release:       6PGDG%{?dist}
+Release:       7PGDG%{?dist}
 License:       PostgreSQL
 Source0:       https://api.pgxn.org/dist/%{sname}/%{version}/%{sname}-%{version}.zip
 URL:           https://github.com/pierreforstmann/%{sname}
-BuildRequires: postgresql%{pgmajorversion}-devel pgdg-srpm-macros
+BuildRequires: postgresql%{pgmajorversion}-devel
 Requires:      postgresql%{pgmajorversion}-server
 
 %description
@@ -25,17 +25,21 @@ read-only status in a permanent way.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_readonly
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
-This packages provides JIT support for pg_readonly
+This package provides JIT support for pg_readonly
 %endif
 
 %prep
@@ -70,6 +74,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} %{?_smp_mflags} install DESTDI
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 1.0.3-7PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 1.0.3-6PGDG
 - Bump release number (missed in previous commit)
 
index 2083ef90b87a9b010b925e18bb421cc6c38c15d9..5174ba06f0d90d9a3ea47e7df9c2db0d39bc34aa 100644 (file)
@@ -9,7 +9,7 @@
 Summary:       PostgreSQL tool to rewrite a table
 Name:          %{sname}_%{pgmajorversion}
 Version:       %{pgrwmajver}.%{pgrwmidver}.%{pgrwminver}
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 License:       PostgreSQL
 URL:           https://github.com/%{sname}/%{sname}
 Source0:       https://github.com/cybertec-postgresql/pg_rewrite/archive/refs/tags/REL%{pgrwmajver}_%{pgrwmidver}_%{pgrwminver}.tar.gz
@@ -24,10 +24,14 @@ It allows both read and write access to the table during the rewriting.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_rewrite
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
 BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
 Requires:      llvm >= 19.0
@@ -60,6 +64,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} DESTDIR=%{buildroot} %{?_smp_m
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 2.0.0-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 2.0.0-2PGDG
 - Bump release number (missed in previous commit)
 
index 91753cf836c2b83339416b84929fbe0b9b110ddd..e5e5d12a87f2e86c00c3a34d367f66f2119b0c6f 100644 (file)
@@ -5,7 +5,7 @@
 
 Name:          %{sname}_%{pgmajorversion}
 Version:       0.5.5
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 Summary:       RoaringBitmap extension for PostgreSQL
 License:       Apache 2.0
 URL:           https://github.com/ChenHuajun/%{sname}
@@ -25,13 +25,17 @@ More information https://github.com/RoaringBitmap/CRoaring .
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_roaringbitmap
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
@@ -63,6 +67,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin:$PATH %{__make} DESTDIR=%{buildroot} install
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 0.5.5-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 0.5.5-2PGDG
 - Bump release number (missed in previous commit)
 
index 183e17263a08b6a842316334eb07b696a7b9551b..4a22cc1c7c2264365fee1affd6b1b38b0addc64b 100644 (file)
@@ -5,7 +5,7 @@
 Summary:       A PostgreSQL extension that shows query plans of all the currently running SQL statements.
 Name:          %{sname}_%{pgmajorversion}
 Version:       2.1.6
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 License:       PostgreSQL
 Source0:       https://github.com/cybertec-postgresql/%{sname}/archive/refs/tags/v%{version}.tar.gz
 URL:           https://github.com/cybertec-postgresql/%{sname}
@@ -23,13 +23,17 @@ not resizable, thus, no new plans can be added once it has been filled up.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_show_plans
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
@@ -66,6 +70,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} %{?_smp_mflags} install DESTDI
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 2.1.6-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 2.1.6-2PGDG
 - Bump release number (missed in previous commit)
 
index 9ffa3aa9de6ae2b5230bea778481cf6ae2d78712..633cb13b768b09e11dee3741324cf90c7d10a14e 100644 (file)
@@ -7,7 +7,7 @@
 Summary:       Set of functions and operators for executing similarity queries for PostgreSQL
 Name:          %{sname}_%{pgmajorversion}
 Version:       %{packagemajorver}.%{packageminver}
-Release:       4PGDG%{?dist}
+Release:       5PGDG%{?dist}
 URL:           https://github.com/eulerto/%{sname}
 Source0:       https://github.com/eulerto/%{sname}/archive/refs/tags/%{sname}_%{packagemajorver}_%{packageminver}.tar.gz
 Patch0:                %{sname}-hamming.patch
@@ -25,17 +25,21 @@ use ~~~ and ! (any of these operators represents a similarity function).
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_similarity
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
-This packages provides JIT support for pg_similarity
+This package provides JIT support for pg_similarity
 %endif
 
 %prep
@@ -74,6 +78,9 @@ PATH=%{pginstdir}/bin:$PATH %{__make} USE_PGXS=1 %{?_smp_mflags} DESTDIR=%{build
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 1.0-5PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 1.0-4PGDG
 - Bump release number (missed in previous commit)
 
index ace87b0050b3323651aae9bdb4f9983332437a86..f34cf5e9f3d392027e075cb68770b3a2f40afbd4 100644 (file)
@@ -5,7 +5,7 @@
 Summary:       The PostgreSQL Antivirus
 Name:          %{sname}_%{pgmajorversion}
 Version:       1.4
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 License:       BSD
 Source0:       https://github.com/df7cb/%{sname}/archive/refs/tags/v%{version}.tar.gz
 URL:           https://github.com/df7cb//%{sname}
@@ -21,17 +21,21 @@ does not cause collateral damage or unnecessary downtimes.
 %package llvmjit
 Summary:       Just-in-time compilation support for pg_snakeoil
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
-This packages provides JIT support for pg_snakeoil
+This package provides JIT support for pg_snakeoil
 %endif
 
 %prep
@@ -61,6 +65,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} %{?_smp_mflags} install DESTDI
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 1.4-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 1.4-2PGDG
 - Bump release number (missed in previous commit)
 
index 448cab67d1509f9baee5dd8616b3f373c3eebefa..38da1eaa20697c55968cca19696420d9762479c9 100644 (file)
@@ -3,7 +3,7 @@
 Summary:       command line tool for import XML, TEXT and BYTEA documents to PostgreSQL
 Name:          %{sname}_%{pgmajorversion}
 Version:       0.1.4
-Release:       3PGDG%{?dist}
+Release:       4PGDG%{?dist}
 License:       BSD
 Source0:       https://github.com/okbob/%{sname}/archive/%{version}.tar.gz
 URL:           https://github.com/okbob/%{sname}
@@ -33,7 +33,22 @@ Requires:    libzstd1 >= 1.4.0
 BuildRequires: libzstd-devel >= 1.4.0
 Requires:      libzstd >= 1.4.0
 %endif
-BuildRequires: libxml2-devel libxslt-devel openssl-devel pam-devel
+
+%if 0%{?suse_version} == 1500
+Requires:      libopenssl1_1
+BuildRequires: libopenssl-1_1-devel
+%endif
+%if 0%{?suse_version} == 1600
+Requires:      libopenssl3
+BuildRequires: libopenssl3-devel
+%endif
+%if 0%{?fedora} >= 41 || 0%{?rhel} >= 8
+Requires:      openssl-libs >= 1.1.1k
+BuildRequires: openssl-devel
+%endif
+
+
+BuildRequires: libxml2-devel libxslt-devel pam-devel
 BuildRequires: krb5-devel readline-devel zlib-devel
 Requires:      postgresql%{pgmajorversion}
 
@@ -62,6 +77,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} %{?_smp_mflags} DESTDIR=%{buil
 %{pginstdir}/bin/%{sname}
 
 %changelog
+* Tue Oct 7 2025 Devrim Gündüz <devrim@gunduz.org> - 0.1.4-4PGDG
+- Add SLES 16 support
+
 * Tue Feb 25 2025 - Devrim Gündüz <devrim@gunduz.org> 0.1.4-3PGDG
 - Add missing BRs
 
index 9a6352ca096cc6333baf9c42fe1710c5a2646202..63e5c66c1115ca31d430a32e938eeb9f60894917 100644 (file)
@@ -8,7 +8,7 @@
 
 Name:          %{sname}_%{pgmajorversion}
 Version:       %{pmeminfomajver}.%{pmeminfomidver}.%{pmeminfominver}
-Release:       4PGDG%{?dist}
+Release:       5PGDG%{?dist}
 Summary:       PostgreSQL extension to allow to access to memory usage diagnostics
 License:       BSD
 URL:           https://github.com/okbob/%{sname}
@@ -25,17 +25,21 @@ a PostgreSQL server.
 %package llvmjit
 Summary:       Just-in-time compilation support for pgmeminfo
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
-This packages provides JIT support for pgmeminfo
+This package provides JIT support for pgmeminfo
 %endif
 
 %prep
@@ -61,6 +65,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin:$PATH %{__make} DESTDIR=%{buildroot} install
 %{pginstdir}/lib/bitcode/%{sname}/src/*.bc
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 1.0.0-5PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 1.0.0-4PGDG
 - Bump release number (missed in previous commit)
 
index 0b7234c7a0d1e73c609c42a76d03ee0c68170b53..9a379f6cd30e851bc5575d4c47fc4738a8e6d04c 100644 (file)
@@ -5,13 +5,13 @@
 Summary:       PostgreSQL Multiple Precision Arithmetic Extension
 Name:          %{sname}_%{pgmajorversion}
 Version:       1.0.5
-Release:       5PGDG%{?dist}
+Release:       6PGDG%{?dist}
 License:       LGPL
 Source0:       http://api.pgxn.org/dist/%{sname}/%{version}/%{sname}-%{version}.zip
 # Make sure that we use Python 3.
 Patch1:                %{sname}-python3.patch
-URL:           https://dvarrazzo.github.io/pgmp/
-BuildRequires: postgresql%{pgmajorversion}-devel gmp-devel pgdg-srpm-macros
+URL:           https://dvarrazzo.github.io/%{sname}/
+BuildRequires: postgresql%{pgmajorversion}-devel gmp-devel
 %if 0%{?suse_version} >= 1500
 Requires:      libgmp10
 %else
@@ -28,17 +28,21 @@ integer and rational data types offered by the GMP library.
 %package llvmjit
 Summary:       Just-in-time compilation support for pgmp
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
-This packages provides JIT support for pgmp
+This package provides JIT support for pgmp
 %endif
 
 %prep
@@ -68,6 +72,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} %{?_smp_mflags} install DESTDI
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 1.0.0-5PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 1.0.5-5PGDG
 - Bump release number (missed in previous commit)
 
index 759c8c475e0f0931dd5a3c29903cc163eb38e097..21285144a9fc27225ddc69d38cdf0f26505aaa77 100644 (file)
@@ -5,7 +5,7 @@
 Summary:       SQL functions that allow capture of node OS metrics from PostgreSQL
 Name:          %{sname}_%{pgmajorversion}
 Version:       1.7
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 License:       PostgreSQL
 Source0:       https://github.com/CrunchyData/%{sname}/archive/v%{version}.tar.gz
 URL:           https://github.com/CrunchyData/%{sname}
@@ -21,10 +21,14 @@ PostgreSQL.
 %package llvmjit
 Summary:       Just-in-time compilation support for pgnodemx
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
 BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
 Requires:      llvm >= 19.0
@@ -63,6 +67,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} DESTDIR=%{buildroot} %{?_smp_m
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 1.7-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 1.7-2PGDG
 - Bump release number (missed in previous commit)
 
index 0619eb4f0821599dad6b786fdcf0ccd09abf93a6..235f834ec3b01be37951f67e13bf5d0de0fc675e 100644 (file)
@@ -4,7 +4,7 @@
 
 Name:          %{sname}_%{pgmajorversion}
 Version:       0.20190509
-Release:       5PGDG%{?dist}
+Release:       6PGDG%{?dist}
 Summary:       PostgreSQL extension that exposes PCRE functionality as functions and operators
 License:       GPLv2
 URL:           https://github.com/petere/%{sname}
@@ -44,10 +44,14 @@ based on the popular PCRE library.
 %package llvmjit
 Summary:       Just-in-time compilation support for pgpcre
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
 BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
 Requires:      llvm >= 19.0
@@ -86,6 +90,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin:$PATH %{__make} DESTDIR=%{buildroot} install
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 10.20190509-6PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 0.20190509-5PGDG
 - Bump release number (missed in previous commit)
 
index fc5f16569cc03dc2db1efd541791d2b2282291d6..dc2967da3f9d1d0cdd6524d90593d0c99d61755b 100644 (file)
@@ -5,7 +5,7 @@
 Summary:       pdf type for PostgreSQL
 Name:          %{sname}_%{pgmajorversion}
 Version:       0.1.0
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 License:       GPLv2
 URL:           https://github.com/Florents-Tselai/%{sname}/
 Source0:       https://github.com/Florents-Tselai/%{sname}/archive/refs/tags/v%{version}.tar.gz
@@ -28,17 +28,21 @@ You can create a pdf type, by casting either a text filepath or bytea column.
 %package llvmjit
 Summary:       Just-in-time compilation support for pgpdf
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
-This packages provides JIT support for pgpdf
+This package provides JIT support for pgpdf
 %endif
 
 %prep
@@ -63,6 +67,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin:$PATH %{__make} %{?_smp_mflags} INSTALL_PREFIX=
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 0.1.0-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 0.1.0-2PGDG
 - Bump release number (missed in previous commit)
 
index 78b3fc9c284813c8087984ab5722a24c95138362..14d0ba5a06b46624b746b2fcd98820c005551866 100644 (file)
@@ -5,7 +5,7 @@
 Summary:       Generic Queue for PostgreSQL
 Name:          %{sname}_%{pgmajorversion}
 Version:       3.5.1
-Release:       5PGDG%{?dist}
+Release:       6PGDG%{?dist}
 License:       ISC
 Source0:       https://github.com/%{sname}/%{sname}/archive/v%{version}.tar.gz
 URL:           https://github.com/%{sname}/%{sname}/
@@ -25,17 +25,21 @@ queue with simple API based on SQL functions.
 %package llvmjit
 Summary:       Just-in-time compilation support for pgq
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
-BuildRequires: llvm-devel >= 17.0 clang-devel >= 17.0
-Requires:      llvm >= 17.0
+BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
+Requires:      llvm >= 19.0
 %endif
 
 %description llvmjit
-This packages provides JIT support for pgq
+This package provides JIT support for pgq
 %endif
 
 %prep
@@ -68,6 +72,9 @@ export PG_CONFIG=%{pginstdir}/bin/pg_config
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 3.1.5-6PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 3.5.1-5PGDG
 - Bump release number (missed in previous commit)
 
index 740e9d20f525c5ec55cf9e4e99f74b60f529b563..b324fe76346ece19ad6f488f10754c340a3f3a58 100644 (file)
@@ -5,7 +5,7 @@
 Summary:       PostgreSQL extension for sampling active session history
 Name:          %{sname}_%{pgmajorversion}
 Version:       1.2.0
-Release:       2PGDG%{?dist}
+Release:       3PGDG%{?dist}
 License:       PostgreSQL
 URL:           https://github.com/%{sname}/%{sname}
 Source0:       https://github.com/%{sname}/%{sname}/archive/refs/tags/v%{version}.tar.gz
@@ -22,10 +22,14 @@ activity with query statistics (pg_stat_statements).
 %package llvmjit
 Summary:       Just-in-time compilation support for pgsentinel
 Requires:      %{name}%{?_isa} = %{version}-%{release}
-%if 0%{?suse_version} >= 1500
+%if 0%{?suse_version} == 1500
 BuildRequires: llvm17-devel clang17-devel
 Requires:      llvm17
 %endif
+%if 0%{?suse_version} == 1600
+BuildRequires: llvm19-devel clang19-devel
+Requires:      llvm19
+%endif
 %if 0%{?fedora} || 0%{?rhel} >= 8
 BuildRequires: llvm-devel >= 19.0 clang-devel >= 19.0
 Requires:      llvm >= 19.0
@@ -61,6 +65,9 @@ USE_PGXS=1 PATH=%{pginstdir}/bin/:$PATH %{__make} DESTDIR=%{buildroot} %{?_smp_m
 %endif
 
 %changelog
+* Wed Oct 8 2025 Devrim Gündüz <devrim@gunduz.org> - 1.0.2-3PGDG
+- Add SLES 16 support
+
 * Wed Oct 01 2025 Yogesh Sharma <yogesh.sharma@catprosystems.com> - 1.2.0-2PGDG
 - Bump release number (missed in previous commit)