Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mfgtools for openSUSE:Factory checked in at 2025-07-30 11:43:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mfgtools (Old) and /work/SRC/openSUSE:Factory/.mfgtools.new.13279 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mfgtools" Wed Jul 30 11:43:08 2025 rev:6 rq:1296284 version:1.5.201 Changes: -------- --- /work/SRC/openSUSE:Factory/mfgtools/mfgtools.changes 2025-05-09 18:45:58.999615852 +0200 +++ /work/SRC/openSUSE:Factory/.mfgtools.new.13279/mfgtools.changes 2025-07-30 11:44:32.520646268 +0200 @@ -1,0 +2,13 @@ +Sun Jul 27 18:25:53 UTC 2025 - Christoph G <[email protected]> + +- update to 1.5.201 + * Support imx943 v2x image container + * Reduce transfer size to 16k because chipidea usb driver limitation + * Fix workflow pdf build error + * Fix workflow arm build fail +- update to 1.5.197 + * Add iMX943 support +- Add upstream patch mfgtools-gcc15.patch for fix compilation with + GCC 15. + +------------------------------------------------------------------- Old: ---- mfgtools-1.5.191.0.tar New: ---- mfgtools-gcc15.patch mfgtools-uuu_1.5.201.tar.gz ----------(New B)---------- New: * Add iMX943 support - Add upstream patch mfgtools-gcc15.patch for fix compilation with GCC 15. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mfgtools.spec ++++++ --- /var/tmp/diff_new_pack.dbeSlP/_old 2025-07-30 11:44:33.896703286 +0200 +++ /var/tmp/diff_new_pack.dbeSlP/_new 2025-07-30 11:44:33.896703286 +0200 @@ -17,15 +17,16 @@ Name: mfgtools -Version: 1.5.191.0 +Version: 1.5.201 Release: 0 Summary: Freescale/NXP I.MX Chip image deploy tools License: BSD-3-Clause Group: System/Management -URL: https://github.com/NXPmicro/mfgtools.git -Source0: %{name}-%{version}.tar +URL: https://github.com/NXPmicro/mfgtools +Source0: %{name}-uuu_%{version}.tar.gz Patch0: mfgtools-gcc13.patch -BuildRequires: cmake +Patch1: mfgtools-gcc15.patch +BuildRequires: cmake >= 3.5 BuildRequires: gcc-c++ BuildRequires: libbz2-devel BuildRequires: libopenssl-devel @@ -37,22 +38,19 @@ BuildRequires: zlib-devel %description -Freescale/NXP I.MX Chip image deploy tools. This package holds the evolution of MFGTools (aka MFGTools v3), which is called the UUU (Universal Update Utility). +Freescale/NXP I.MX Chip image deploy tools. This package holds the evolution of +MFGTools (aka MFGTools v3), which is called the UUU (Universal Update Utility). %prep -%autosetup -p1 +%autosetup -p1 -n %{name}-uuu_%{version} %build -# Remove cmake4 error due to not setting -# min cmake version - sflees.de -export CMAKE_POLICY_VERSION_MINIMUM=3.5 echo uuu_%{version} > .tarball-version -cmake . -make +%cmake +%cmake_build %install -mkdir -p %{buildroot}%{_bindir} -install uuu/uuu %{buildroot}%{_bindir} +%cmake_install %files %license LICENSE ++++++ mfgtools-gcc15.patch ++++++ >From 142448e55386b88adf5b1d7e6206df1ca6784708 Mon Sep 17 00:00:00 2001 From: Bruno Thomsen <[email protected]> Date: Sat, 1 Mar 2025 14:32:41 +0100 Subject: [PATCH] libuuu/sdps: fix gcc15 compile errors This gcc 15 error happens on Fedora 42. error: uint32_t does not name a type error: uint64_t does not name a type Signed-off-by: Bruno Thomsen <[email protected]> --- libuuu/sdps.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libuuu/sdps.h b/libuuu/sdps.h index b82f9d71..667a477e 100644 --- a/libuuu/sdps.h +++ b/libuuu/sdps.h @@ -30,6 +30,7 @@ */ #include "cmd.h" +#include <cstdint> class SDPSCmd : public CmdBase {
