Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cgdb for openSUSE:Factory checked in at 2024-12-03 20:47:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cgdb (Old) and /work/SRC/openSUSE:Factory/.cgdb.new.28523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cgdb" Tue Dec 3 20:47:00 2024 rev:19 rq:1227923 version:0.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/cgdb/cgdb.changes 2022-05-17 17:25:05.119206427 +0200 +++ /work/SRC/openSUSE:Factory/.cgdb.new.28523/cgdb.changes 2024-12-03 20:48:14.945650154 +0100 @@ -1,0 +2,6 @@ +Mon Dec 2 15:18:32 UTC 2024 - Friedrich Haubensak <[email protected]> + +- to support gcc14, add patch cgdb-0.8.0-configure-c99.patch (from + gentoo) and run autoreconf in %prep stage + +------------------------------------------------------------------- New: ---- cgdb-0.8.0-configure-c99.patch BETA DEBUG BEGIN: New: - to support gcc14, add patch cgdb-0.8.0-configure-c99.patch (from gentoo) and run autoreconf in %prep stage BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cgdb.spec ++++++ --- /var/tmp/diff_new_pack.KEgr3X/_old 2024-12-03 20:48:15.393668893 +0100 +++ /var/tmp/diff_new_pack.KEgr3X/_new 2024-12-03 20:48:15.401669227 +0100 @@ -24,6 +24,8 @@ Group: Development/Tools/Debuggers URL: https://cgdb.github.io/ Source0: https://cgdb.me/files/%{name}-%{version}.tar.gz +Patch0: cgdb-0.8.0-configure-c99.patch +BuildRequires: automake BuildRequires: bison BuildRequires: flex BuildRequires: gcc-c++ @@ -44,7 +46,8 @@ vi (or vim) should feel right at home using CGDB. %prep -%setup -q +%autosetup -p1 +autoreconf -Iconfig %build %configure ++++++ cgdb-0.8.0-configure-c99.patch ++++++ https://bugs.gentoo.org/830222 https://github.com/cgdb/cgdb/pull/338 >From 039dba0ec3ae2c4b2636418652a5c63f9ff86049 Mon Sep 17 00:00:00 2001 From: Florian Weimer <[email protected]> Date: Wed, 8 Mar 2023 11:29:06 +0100 Subject: [PATCH] configure: Avoid implicit int in readline check Future compilers will not accept implicit ints by default, altering the outcome of the check without this change. Signed-off-by: Florian Weimer <[email protected]> --- a/config/readline_check_version.m4 +++ b/config/readline_check_version.m4 @@ -86,7 +86,7 @@ AC_CACHE_VAL(ac_cv_rl_version, #include <stdlib.h> #include <readline/readline.h> -main() +int main(void) { FILE *fp; fp = fopen("conftest.rlv", "w");
