From 739780ab34fe4dac7158816070421e70afdd246bbb5151579034de155aa210bd Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 23 Apr 2024 07:26:12 +0000 Subject: [PATCH] Accepting request 1169005 from home:cabelo:branches:devel:libraries:c_c++ - Update to version 2021.11.0: * Fixed parallel_for_each algorithm behavior for iterators defining iterator_concept trait instead of iterator_category. * Fixed the incorrect binary search order in TBBConfig.cmake. OBS-URL: https://build.opensuse.org/request/show/1169005 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=95 --- tbb-2021.11.0.tar.gz | 3 --- tbb-2021.12.0.tar.gz | 3 +++ tbb.changes | 8 ++++++++ tbb.spec | 2 +- use-FORTIFY_SOURCE-from-distribution.patch | 11 +++++------ 5 files changed, 17 insertions(+), 10 deletions(-) delete mode 100644 tbb-2021.11.0.tar.gz create mode 100644 tbb-2021.12.0.tar.gz diff --git a/tbb-2021.11.0.tar.gz b/tbb-2021.11.0.tar.gz deleted file mode 100644 index b29c1ff..0000000 --- a/tbb-2021.11.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:782ce0cab62df9ea125cdea253a50534862b563f1d85d4cda7ad4e77550ac363 -size 2613493 diff --git a/tbb-2021.12.0.tar.gz b/tbb-2021.12.0.tar.gz new file mode 100644 index 0000000..68bc6a9 --- /dev/null +++ b/tbb-2021.12.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8759c9025101106c9e37a7431968cb789c0a6fb08c53431b0dd9cb150b1549 +size 2721363 diff --git a/tbb.changes b/tbb.changes index b41560c..6bd7156 100644 --- a/tbb.changes +++ b/tbb.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Fri Apr 19 03:16:09 UTC 2024 - Alessandro de Oliveira Faria + +- Update to version 2021.11.0: + * Fixed parallel_for_each algorithm behavior for iterators defining + iterator_concept trait instead of iterator_category. + * Fixed the incorrect binary search order in TBBConfig.cmake. + ------------------------------------------------------------------- Thu Jan 25 16:31:59 UTC 2024 - Ana Guerrero diff --git a/tbb.spec b/tbb.spec index 03567c8..71f46aa 100644 --- a/tbb.spec +++ b/tbb.spec @@ -41,7 +41,7 @@ %bcond_with python3 %endif Name: tbb -Version: 2021.11.0 +Version: 2021.12.0 Release: 0 Summary: oneAPI Threading Building Blocks (oneTBB) License: Apache-2.0 diff --git a/use-FORTIFY_SOURCE-from-distribution.patch b/use-FORTIFY_SOURCE-from-distribution.patch index cfd6384..850d034 100644 --- a/use-FORTIFY_SOURCE-from-distribution.patch +++ b/use-FORTIFY_SOURCE-from-distribution.patch @@ -1,9 +1,8 @@ -Index: oneTBB-2021.11.0/cmake/compilers/GNU.cmake -=================================================================== ---- oneTBB-2021.11.0.orig/cmake/compilers/GNU.cmake -+++ oneTBB-2021.11.0/cmake/compilers/GNU.cmake -@@ -75,7 +75,6 @@ set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMO - if (NOT APPLE) +diff -uNr oneTBB-2021.12.0.orig/cmake/compilers/GNU.cmake oneTBB-2021.12.0/cmake/compilers/GNU.cmake +--- oneTBB-2021.12.0.orig/cmake/compilers/GNU.cmake 2024-02-13 08:49:20.000000000 -0300 ++++ oneTBB-2021.12.0/cmake/compilers/GNU.cmake 2024-04-19 03:55:56.178055557 -0300 +@@ -75,7 +75,6 @@ + if (NOT APPLE AND NOT MINGW) set(TBB_LIB_LINK_FLAGS ${TBB_LIB_LINK_FLAGS} -Wl,-z,relro,-z,now,-z,noexecstack) endif() -set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} $<$>:-D_FORTIFY_SOURCE=2> )