From e60685a0df87e8872a35974bfea59f8b10b9f876 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 18 Jul 2024 13:44:55 +0000 Subject: [PATCH 1/5] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- libecpg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libecpg.spec b/libecpg.spec index 8b9cfdb..c553f9d 100644 --- a/libecpg.spec +++ b/libecpg.spec @@ -3,7 +3,7 @@ Summary: ECPG - Embedded SQL in C Name: libecpg Version: %majorversion.3 -Release: 1%{?dist} +Release: 2%{?dist} License: PostgreSQL Url: http://www.postgresql.org/ @@ -132,6 +132,9 @@ find_lang_bins %name-devel.lst ecpg %changelog +* Thu Jul 18 2024 Fedora Release Engineering - 16.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon May 27 2024 Ales Nezbeda - 16.3-1 - Update to 16.3 From 2f6e14c44c364eaa27f5eadb7974402095fac9f4 Mon Sep 17 00:00:00 2001 From: Ales Nezbeda Date: Thu, 29 Aug 2024 13:08:07 +0200 Subject: [PATCH 2/5] Update to 16.4 Fix compilation sometimes failing due to race condition in makefile Resolves: BZ:2290330 --- libecpg.spec | 11 ++++++++--- sources | 4 ++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/libecpg.spec b/libecpg.spec index c553f9d..e703e6a 100644 --- a/libecpg.spec +++ b/libecpg.spec @@ -2,8 +2,8 @@ Summary: ECPG - Embedded SQL in C Name: libecpg -Version: %majorversion.3 -Release: 2%{?dist} +Version: %majorversion.4 +Release: 1%{?dist} License: PostgreSQL Url: http://www.postgresql.org/ @@ -81,7 +81,7 @@ find . -type f -name .gitignore | xargs rm --without-readline \ --datadir=%_datadir/pgsql -%make_build -C "src/interfaces/ecpg" +%make_build -C "src/interfaces/ecpg" -j1 %install @@ -132,6 +132,11 @@ find_lang_bins %name-devel.lst ecpg %changelog +* Thu Aug 29 2024 Ales Nezbeda - 16.4-1 +- Update to 16.4 +- Fix compilation sometimes failing due to race condition in makefile +- Resolves: BZ:2290330 + * Thu Jul 18 2024 Fedora Release Engineering - 16.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/sources b/sources index 4f151c0..04b03aa 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (postgresql-16.3.tar.bz2) = dc1c8d4fbc8e53e9be91dcf1b644b3969bd634f11bf5a1c4fe16619fd386f3349a5509788d43e6a57d099ad75233026d4dd4e0bb180ffc747fd3c1a575c51a5f -SHA512 (postgresql-16.3.tar.bz2.sha256) = eeebced14bc6c42df864c00397caaafa91b3ddc1c3900943989f04d396674907f63051b93aeb6b1b2408ffeb1b2fc44521b123b42b986b45c19bdcf706523c84 +SHA512 (postgresql-16.4.tar.bz2) = f2070299f0857a270317ac984f8393374cf00d4f32a082fe3c5481e36c560595ea711fed95e40d1bc90c5089edf8f165649d443d8b9c68614e1c83fc91268e96 +SHA512 (postgresql-16.4.tar.bz2.sha256) = f5a33591b4a0810e2f90d21df471ba086acbd1f97099e38aed46e4d3b45ee72037ef5958c7f155dd9fb7969152599fb6946b792a12d92575bfbc595049b74674 From c9ff9fe252c753bac2f2c03243ea43a5d40252bb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jan 2025 11:05:36 +0000 Subject: [PATCH 3/5] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- libecpg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libecpg.spec b/libecpg.spec index e703e6a..46e7226 100644 --- a/libecpg.spec +++ b/libecpg.spec @@ -3,7 +3,7 @@ Summary: ECPG - Embedded SQL in C Name: libecpg Version: %majorversion.4 -Release: 1%{?dist} +Release: 2%{?dist} License: PostgreSQL Url: http://www.postgresql.org/ @@ -132,6 +132,9 @@ find_lang_bins %name-devel.lst ecpg %changelog +* Fri Jan 17 2025 Fedora Release Engineering - 16.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Thu Aug 29 2024 Ales Nezbeda - 16.4-1 - Update to 16.4 - Fix compilation sometimes failing due to race condition in makefile From e0ed6a0c41de505a60161aa6f6c8377b092f74ea Mon Sep 17 00:00:00 2001 From: Filip Janus Date: Sun, 2 Feb 2025 15:39:23 +0000 Subject: [PATCH 4/5] gcc now uses std=gnu23 Use std=c17 to avoid errors --- libecpg.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libecpg.spec b/libecpg.spec index 46e7226..a8ce9c7 100644 --- a/libecpg.spec +++ b/libecpg.spec @@ -70,6 +70,7 @@ find . -type f -name .gitignore | xargs rm %build +export CFLAGS="$CFLAGS -std=c17" # We don't build server nor client (e.g. /bin/psql) binaries in this package, so # we can disable some configure options. %configure \ From 9440861ccb78eab132ee69851795232a0575bcb0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 24 Jul 2025 19:35:26 +0000 Subject: [PATCH 5/5] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- libecpg.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libecpg.spec b/libecpg.spec index a8ce9c7..21f6b1d 100644 --- a/libecpg.spec +++ b/libecpg.spec @@ -3,7 +3,7 @@ Summary: ECPG - Embedded SQL in C Name: libecpg Version: %majorversion.4 -Release: 2%{?dist} +Release: 3%{?dist} License: PostgreSQL Url: http://www.postgresql.org/ @@ -133,6 +133,9 @@ find_lang_bins %name-devel.lst ecpg %changelog +* Thu Jul 24 2025 Fedora Release Engineering - 16.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Fri Jan 17 2025 Fedora Release Engineering - 16.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild