Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gap-xgap for openSUSE:Factory checked in at 2024-08-22 18:13:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gap-xgap (Old) and /work/SRC/openSUSE:Factory/.gap-xgap.new.2698 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gap-xgap" Thu Aug 22 18:13:35 2024 rev:3 rq:1195191 version:4.32 Changes: -------- --- /work/SRC/openSUSE:Factory/gap-xgap/gap-xgap.changes 2024-03-25 21:15:34.961451106 +0100 +++ /work/SRC/openSUSE:Factory/.gap-xgap.new.2698/gap-xgap.changes 2024-08-22 18:13:55.895309266 +0200 @@ -1,0 +2,5 @@ +Wed Aug 21 20:58:38 UTC 2024 - Jan Engelhardt <jeng...@inai.de> + +- Add gcc14.patch + +------------------------------------------------------------------- New: ---- _scmsync.obsinfo build.specials.obscpio gcc14.patch BETA DEBUG BEGIN: New: - Add gcc14.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gap-xgap.spec ++++++ --- /var/tmp/diff_new_pack.V0bEZP/_old 2024-08-22 18:13:56.323327068 +0200 +++ /var/tmp/diff_new_pack.V0bEZP/_new 2024-08-22 18:13:56.323327068 +0200 @@ -25,6 +25,7 @@ URL: https://gap-packages.github.io/xgap/ #Git-Clone: https://github.com/gap-packages/xgap Source: https://github.com/gap-packages/xgap/releases/download/v%version/xgap-%version.tar.gz +Patch1: gcc14.patch BuildRequires: c_compiler BuildRequires: fdupes BuildRequires: gap-devel @@ -38,7 +39,7 @@ The XGAP package allows to use graphics in GAP. %prep -%autosetup -n xgap-%version +%autosetup -n xgap-%version -p1 %build ./configure --with-gaproot="%gapdir" ++++++ _scmsync.obsinfo ++++++ mtime: 1724273956 commit: 4ebe5794a247a31395b36c99a95031f821ed8fa72bb6b6739c226b84decc705f url: https://src.opensuse.org/jengelh/gap-xgap revision: master ++++++ gcc14.patch ++++++ >From 0c83898a23ad4c7b5b68a9fcf5899a68fa272e58 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt <jeng...@inai.de> Date: Wed, 21 Aug 2024 22:49:31 +0200 Subject: [PATCH] build: resolve compile error under gcc-14 References: https://github.com/gap-packages/xgap/pull/33 xcmds.c: In function "FunChangeList": xcmds.c:715:36: error: passing argument 2 of "XawListChange" from incompatible pointer type [-Wincompatible-pointer-types] 715 | XawListChange( arg->sel->list, (const char **)text, 0, 0, True ); --- src.x11/xcmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src.x11/xcmds.c b/src.x11/xcmds.c index 644996b..a0242c2 100644 --- a/src.x11/xcmds.c +++ b/src.x11/xcmds.c @@ -712,7 +712,7 @@ static Boolean FunChangeList ( text[i] = 0; /* change list */ - XawListChange( arg->sel->list, (const char **)text, 0, 0, True ); + XawListChange( arg->sel->list, (String *)text, 0, 0, True ); /* clear old text */ for ( i = 0; arg->sel->text[i]; i++ ) -- 2.46.0