Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package pcsc-towitoko for openSUSE:Factory checked in at 2025-07-10 22:12:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pcsc-towitoko (Old) and /work/SRC/openSUSE:Factory/.pcsc-towitoko.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pcsc-towitoko" Thu Jul 10 22:12:16 2025 rev:20 rq:1291591 version:2.0.8 Changes: -------- --- /work/SRC/openSUSE:Factory/pcsc-towitoko/pcsc-towitoko.changes 2022-10-26 12:31:55.620329788 +0200 +++ /work/SRC/openSUSE:Factory/.pcsc-towitoko.new.7373/pcsc-towitoko.changes 2025-07-10 22:12:17.808085310 +0200 @@ -1,0 +2,7 @@ +Wed Jul 9 11:30:13 UTC 2025 - Pedro Monreal <pmonr...@suse.com> + +- Fix build with gcc15: + * Remove bool typedef as not needed and not used in the code + * Add towitoko-gcc15.patch + +------------------------------------------------------------------- New: ---- towitoko-gcc15.patch ----------(New B)---------- New: * Remove bool typedef as not needed and not used in the code * Add towitoko-gcc15.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pcsc-towitoko.spec ++++++ --- /var/tmp/diff_new_pack.iKvVAe/_old 2025-07-10 22:12:18.420110765 +0200 +++ /var/tmp/diff_new_pack.iKvVAe/_new 2025-07-10 22:12:18.420110765 +0200 @@ -1,7 +1,7 @@ # # spec file for package pcsc-towitoko # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -29,6 +29,7 @@ Patch1: %{_name}-%{version}-install.diff Patch2: %{_name}-destdir.patch Patch3: towitoko-%{version}-implicit-decls.patch +Patch4: towitoko-gcc15.patch BuildRequires: libtool BuildRequires: pcsc-lite-devel BuildRequires: pkgconfig ++++++ towitoko-gcc15.patch ++++++ Index: towitoko-linux-2.0.8/src/driver/defines.h =================================================================== --- towitoko-linux-2.0.8.orig/src/driver/defines.h +++ towitoko-linux-2.0.8/src/driver/defines.h @@ -48,7 +48,8 @@ typedef unsigned char BYTE; #ifndef __cplusplus -typedef int bool; +/* typedef int bool; */ +#include <stdbool.h> #endif typedef unsigned short USHORT; typedef unsigned char UCHAR;