Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package blosc2 for openSUSE:Factory checked in at 2023-05-17 10:53:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/blosc2 (Old) and /work/SRC/openSUSE:Factory/.blosc2.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "blosc2" Wed May 17 10:53:21 2023 rev:6 rq:1087459 version:2.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/blosc2/blosc2.changes 2023-05-12 20:40:09.466813891 +0200 +++ /work/SRC/openSUSE:Factory/.blosc2.new.1533/blosc2.changes 2023-05-17 10:53:54.523598602 +0200 @@ -1,0 +2,6 @@ +Tue May 16 18:54:01 UTC 2023 - Ben Greiner <[email protected]> + +- Add c-blosc2-pr483-BLOSC_STUNE.patch gh#Bosc/c-blosc2#483 + * Fixes build failure of PyTables + +------------------------------------------------------------------- New: ---- c-blosc2-pr483-BLOSC_STUNE.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ blosc2.spec ++++++ --- /var/tmp/diff_new_pack.bBYV0L/_old 2023-05-17 10:53:54.931600799 +0200 +++ /var/tmp/diff_new_pack.bBYV0L/_new 2023-05-17 10:53:54.931600799 +0200 @@ -26,6 +26,8 @@ License: BSD-2-Clause AND BSD-3-Clause AND MIT URL: https://www.blosc.org/c-blosc2/c-blosc2.html Source: https://github.com/Blosc/c-blosc2/archive/refs/tags/v%{version}.tar.gz#/c-blosc2-%{version}.tar.gz +# PATCH-FIX-UPSTREAM c-blosc2-pr483-BLOSC_STUNE.patch gh#Blosc/c-blosc2#483 +Patch0: https://github.com/Blosc/c-blosc2/pull/483.patch#/c-blosc2-pr483-BLOSC_STUNE.patch Source99: baselibs.conf BuildRequires: cmake BuildRequires: gcc-c++ ++++++ c-blosc2-pr483-BLOSC_STUNE.patch ++++++ >From 9344c313a002785af0b9aab6032400fdbea5ba02 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <[email protected]> Date: Sat, 13 May 2023 21:40:32 +0200 Subject: [PATCH] BLOSC_STUNE is not defined in c-blosc Therefore, do not guard it with BLOSC_H, the include guard of blosc.h from previous version c-blosc. --- include/blosc2.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/blosc2.h b/include/blosc2.h index dc6d1fc7..ef035f07 100644 --- a/include/blosc2.h +++ b/include/blosc2.h @@ -211,9 +211,7 @@ enum { * @brief Codes for the different tunes shipped with Blosc */ enum { -#ifndef BLOSC_H BLOSC_STUNE = 0, -#endif // BLOSC_H BLOSC_LAST_TUNE = 1, //!< Determine the last tune defined by Blosc. BLOSC_LAST_REGISTERED_TUNE = BLOSC2_GLOBAL_REGISTERED_TUNE_START + BLOSC2_GLOBAL_REGISTERED_TUNES - 1,
