Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package uasm for openSUSE:Factory checked in 
at 2025-04-07 17:35:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/uasm (Old)
 and      /work/SRC/openSUSE:Factory/.uasm.new.1907 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "uasm"

Mon Apr  7 17:35:00 2025 rev:4 rq:1267070 version:2.57r

Changes:
--------
--- /work/SRC/openSUSE:Factory/uasm/uasm.changes        2025-01-07 
20:50:22.133344419 +0100
+++ /work/SRC/openSUSE:Factory/.uasm.new.1907/uasm.changes      2025-04-07 
17:35:06.185023863 +0200
@@ -1,0 +2,5 @@
+Wed Apr  2 19:44:45 UTC 2025 - Friedrich Haubensak <hs...@mail.de>
+
+- add fix-bool.patch to fix gcc-15 compile time error
+
+-------------------------------------------------------------------

New:
----
  fix-bool.patch

BETA DEBUG BEGIN:
  New:
- add fix-bool.patch to fix gcc-15 compile time error
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ uasm.spec ++++++
--- /var/tmp/diff_new_pack.WcxJrb/_old  2025-04-07 17:35:06.761047956 +0200
+++ /var/tmp/diff_new_pack.WcxJrb/_new  2025-04-07 17:35:06.761047956 +0200
@@ -24,6 +24,7 @@
 URL:            http://www.terraspace.co.uk/%{name}.html
 Source:         
https://github.com/Terraspace/%{name}/archive/refs/tags/v%{version}.tar.gz
 Patch0:         fix-error-return-type.patch
+Patch1:         fix-bool.patch
 BuildRequires:  glibc-devel
 
 %description

++++++ fix-bool.patch ++++++

github.com/gentoo/gentoo/commit/f1ad5f3

From: NRK <n...@disroot.org>
Date: Sat, 8 Mar 2025 20:52:10 +0000
Subject: [PATCH] dev-lang/uasm: replace custom bool with stdbool.h
Closes: https://bugs.gentoo.org/944192


diff --git a/H/bool.h b/H/bool.h
index fbf55c8..ddb7396 100644
--- a/H/bool.h
+++ b/H/bool.h
@@ -30,10 +30,7 @@
 ****************************************************************************/
 
 
-#if !defined( BOOL_DEFINED )  &&  !defined( bool ) && !(__WATCOMC__ >= 1070 && 
defined(__cplusplus))
-    #define BOOL_DEFINED
-    typedef unsigned char bool;
-#endif
+#include <stdbool.h>
 #ifndef TRUE
     #define TRUE 1
 #endif

Reply via email to