Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package jasper for openSUSE:Factory checked in at 2025-03-27 22:31:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jasper (Old) and /work/SRC/openSUSE:Factory/.jasper.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jasper" Thu Mar 27 22:31:36 2025 rev:34 rq:1256340 version:4.2.5 Changes: -------- --- /work/SRC/openSUSE:Factory/jasper/jasper.changes 2024-04-30 17:26:15.603771700 +0200 +++ /work/SRC/openSUSE:Factory/.jasper.new.2696/jasper.changes 2025-03-27 22:31:39.595013278 +0100 @@ -1,0 +2,7 @@ +Wed Mar 26 21:55:12 UTC 2025 - Michael Vetter <mvet...@suse.com> + +- Update to 4.2.5: + * Made a change to a configuration header file in order to avoid + undesirable compiler warnings when JasPer is used in C++ code (#393). + +------------------------------------------------------------------- Old: ---- version-4.2.4.tar.gz New: ---- version-4.2.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jasper.spec ++++++ --- /var/tmp/diff_new_pack.6wCxDh/_old 2025-03-27 22:31:40.243040101 +0100 +++ /var/tmp/diff_new_pack.6wCxDh/_new 2025-03-27 22:31:40.243040101 +0100 @@ -1,7 +1,7 @@ # # spec file for package jasper # -# Copyright (c) 2024 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 @@ -20,7 +20,7 @@ %global __builddir obs_build Name: jasper -Version: 4.2.4 +Version: 4.2.5 Release: 0 Summary: An Implementation of the JPEG-2000 Standard, Part 1 License: JasPer-2.0 ++++++ version-4.2.4.tar.gz -> version-4.2.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-4.2.4/CMakeLists.txt new/jasper-version-4.2.5/CMakeLists.txt --- old/jasper-version-4.2.4/CMakeLists.txt 2024-04-27 19:53:19.000000000 +0200 +++ new/jasper-version-4.2.5/CMakeLists.txt 2025-03-26 18:53:12.000000000 +0100 @@ -12,7 +12,7 @@ # The major, minor, and micro version numbers of the project. set(JAS_VERSION_MAJOR 4) set(JAS_VERSION_MINOR 2) -set(JAS_VERSION_PATCH 4) +set(JAS_VERSION_PATCH 5) # The shared library versioning information. # Guidelines on how to change this information can be found below. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-4.2.4/NEWS.txt new/jasper-version-4.2.5/NEWS.txt --- old/jasper-version-4.2.4/NEWS.txt 2024-04-27 19:53:19.000000000 +0200 +++ new/jasper-version-4.2.5/NEWS.txt 2025-03-26 18:53:12.000000000 +0100 @@ -1,3 +1,9 @@ +4.2.5 (2025-03-26) +================== + +* Made a change to a configuration header file in order to avoid + undesirable compiler warnings when JasPer is used in C++ code (#393). + 4.2.4 (2024-04-27) ================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-4.2.4/src/libjasper/include/jasper/jas_config.h.in new/jasper-version-4.2.5/src/libjasper/include/jasper/jas_config.h.in --- old/jasper-version-4.2.4/src/libjasper/include/jasper/jas_config.h.in 2024-04-27 19:53:19.000000000 +0200 +++ new/jasper-version-4.2.5/src/libjasper/include/jasper/jas_config.h.in 2025-03-26 18:53:12.000000000 +0100 @@ -113,7 +113,8 @@ #define JAS_DEFAULT_MAX_MEM_USAGE (1024ULL * 1024ULL * 1024ULL) #endif -#if (__STDC_VERSION__ - 0 < JAS_STDC_VERSION) +#if (!defined(__cplusplus) && (__STDC_VERSION__ - 0 < JAS_STDC_VERSION)) || \ + (defined(__cplusplus) && (__cplusplus - 0 < JAS_STDC_VERSION)) #warning "Your code is being built against an older version of the C standard than JasPer was. Although this is supported, this may require some extra preprocessor defines when building." #endif