Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cmocka for openSUSE:Factory checked in at 2026-01-13 21:12:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cmocka (Old) and /work/SRC/openSUSE:Factory/.cmocka.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cmocka" Tue Jan 13 21:12:21 2026 rev:26 rq:1326933 version:2.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/cmocka/cmocka.changes 2025-12-30 12:00:46.413568905 +0100 +++ /work/SRC/openSUSE:Factory/.cmocka.new.1928/cmocka.changes 2026-01-13 21:12:54.226261996 +0100 @@ -1,0 +2,6 @@ +Tue Jan 13 06:56:03 UTC 2026 - Andreas Schneider <[email protected]> + +- Update to version 2.0.2 + * Fixed a typo in CMOCKA_NO_DEPRECATION_WARNINGS + +------------------------------------------------------------------- Old: ---- cmocka-2.0.1.tar.xz cmocka-2.0.1.tar.xz.asc New: ---- cmocka-2.0.2.tar.xz cmocka-2.0.2.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cmocka.spec ++++++ --- /var/tmp/diff_new_pack.WRC0vb/_old 2026-01-13 21:12:55.870329950 +0100 +++ /var/tmp/diff_new_pack.WRC0vb/_new 2026-01-13 21:12:55.874330116 +0100 @@ -1,7 +1,7 @@ # # spec file for package cmocka # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,7 +24,7 @@ %endif Name: cmocka -Version: 2.0.1 +Version: 2.0.2 Release: 0 Summary: Lightweight library to simplify and generalize unit tests for C License: Apache-2.0 @@ -35,7 +35,7 @@ Source1: https://cmocka.org/files/2.0/%{name}-%{version}.tar.xz.asc Source2: %{name}.keyring Source3: baselibs.conf -Source4: doxygen-awesome-css-2.4.1.tar.gz +Source4: https://github.com/jothepro/doxygen-awesome-css/archive/refs/tags/v2.4.1/doxygen-awesome-css-2.4.1.tar.gz BuildRequires: cmake BuildRequires: doxygen @@ -90,7 +90,7 @@ Summary: Development headers for the cmocka library Group: Development/Libraries/C and C++ Requires: libcmocka0 = %{version} -Requires: pkg-config +Requires: pkgconf-pkg-config Requires: (libcmocka-cmake-devel if cmake) %description -n libcmocka-devel ++++++ cmocka-2.0.1.tar.xz -> cmocka-2.0.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmocka-2.0.1/CHANGELOG.md new/cmocka-2.0.2/CHANGELOG.md --- old/cmocka-2.0.1/CHANGELOG.md 2025-12-19 14:13:53.000000000 +0100 +++ new/cmocka-2.0.2/CHANGELOG.md 2026-01-12 09:52:15.000000000 +0100 @@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/). +## [2.0.2] - 2026-01-12 + +### Fixed + +- Fixed typo in `CMOCKA_NO_DEPRECATION_WARNINGS` + ## [2.0.1] - 2025-12-19 ### Added @@ -425,6 +431,7 @@ generalize the process of writing unit tests for C applications [Unreleased]: https://gitlab.com/cmocka/cmocka/compare/cmocka-2.0.1...HEAD +[2.0.2]: https://gitlab.com/cmocka/cmocka/compare/cmocka-2.0.1...cmocka-2.0.2 [2.0.1]: https://gitlab.com/cmocka/cmocka/compare/cmocka-2.0.0...cmocka-2.0.1 [1.1.8]: https://gitlab.com/cmocka/cmocka/compare/cmocka-1.1.7...cmocka-1.1.8 [1.1.7]: https://gitlab.com/cmocka/cmocka/compare/cmocka-1.1.6...cmocka-1.1.7 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmocka-2.0.1/CMakeLists.txt new/cmocka-2.0.2/CMakeLists.txt --- old/cmocka-2.0.1/CMakeLists.txt 2025-12-19 14:13:53.000000000 +0100 +++ new/cmocka-2.0.2/CMakeLists.txt 2026-01-12 09:50:06.000000000 +0100 @@ -14,7 +14,7 @@ include(DefineCompilerFlags) include(DefinePlatformDefaults) -project(cmocka VERSION 2.0.1 LANGUAGES C) +project(cmocka VERSION 2.0.2 LANGUAGES C) # global needed variables set(APPLICATION_NAME ${PROJECT_NAME}) @@ -26,7 +26,7 @@ # Increment AGE. Set REVISION to 0 # If the source code was changed, but there were no interface changes: # Increment REVISION. -set(LIBRARY_VERSION "1.0.1") +set(LIBRARY_VERSION "1.0.2") set(LIBRARY_SOVERSION "0") # include cmake files diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmocka-2.0.1/example/calculator.c new/cmocka-2.0.2/example/calculator.c --- old/cmocka-2.0.1/example/calculator.c 2025-12-19 14:13:53.000000000 +0100 +++ new/cmocka-2.0.2/example/calculator.c 2026-01-12 09:49:44.000000000 +0100 @@ -380,7 +380,7 @@ size_t i; printf("%s\n", argv[1]); - for (i = 2; i < argc; i += 2) { + for (i = 2; i < (size_t)argc; i += 2) { assert(intermediate_value_index < number_of_intermediate_values); printf(" %s %s = %d\n", argv[i], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cmocka-2.0.1/include/cmocka.h new/cmocka-2.0.2/include/cmocka.h --- old/cmocka-2.0.1/include/cmocka.h 2025-12-19 14:13:53.000000000 +0100 +++ new/cmocka-2.0.2/include/cmocka.h 2026-01-12 09:49:45.000000000 +0100 @@ -199,10 +199,10 @@ #define CMOCKA_PRINTF_ATTRIBUTE(a,b) #endif /* __GNUC__ */ -#ifdef CMOCKA_DISABLE_DEPRECTATION_WARNINGS +#if defined(CMOCKA_DISABLE_DEPRECATION_WARNINGS) || defined(CMOCKA_DISABLE_DEPRECTATION_WARNINGS) #define CMOCKA_DEPRECATED #define CMOCKA_DEPRECATION_WARNING(msg) -#else /* CMOCKA_DISABLE_DEPRECTATION_WARNINGS */ +#else /* CMOCKA_DISABLE_DEPRECATION_WARNINGS */ /* Deprecation warnings for functions */ #if defined(__GNUC__) @@ -231,7 +231,7 @@ #define CMOCKA_DEPRECATION_WARNING(msg) #endif -#endif /* CMOCKA_DISABLE_DEPRECTATION_WARNINGS */ +#endif /* CMOCKA_DISABLE_DEPRETATION_WARNINGS */ #if defined(__GNUC__) #define CMOCKA_NORETURN __attribute__ ((noreturn))
