[info=dd92ead7d38465b8bea5729deb5703487a5f76c245556da77a3677aaa02afaf9]
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=100
This commit is contained in:
parent
ebcda135f2
commit
82b14e11fe
@ -1,4 +1,4 @@
|
|||||||
mtime: 1713964411
|
mtime: 1735658003
|
||||||
commit: 7a084f8ffc2ae81498275862ece0f0e0e67be3b59fc392275f5af191e80ff8c8
|
commit: dd92ead7d38465b8bea5729deb5703487a5f76c245556da77a3677aaa02afaf9
|
||||||
url: https://src.opensuse.org/clibs/tbb
|
url: https://src.opensuse.org/clibs/tbb
|
||||||
revision: master
|
revision: master
|
||||||
|
3
_service
Normal file
3
_service
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<services>
|
||||||
|
<service name="download_files" mode="manual" />
|
||||||
|
</services>
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:4750ae65122eac6d00294f4da808a8648f32058200770f08f1fc46929eb58887
|
oid sha256:1f13fdd36d76365b4b9ef06019ce4b9dfd742a873482cac856c452bc56e59744
|
||||||
size 256
|
size 256
|
||||||
|
BIN
tbb-2021.12.0.tar.gz
(Stored with Git LFS)
BIN
tbb-2021.12.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
tbb-2022.0.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
tbb-2022.0.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
21
tbb.changes
21
tbb.changes
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 31 13:57:21 UTC 2024 - Eyad Issa <eyadlorenzo@gmail.com>
|
||||||
|
|
||||||
|
- Remove use-FORTIFY_SOURCE-from-distribution.patch, as it is now
|
||||||
|
upstreamed
|
||||||
|
|
||||||
|
- Use _service to download the source tarball
|
||||||
|
|
||||||
|
- Update to version 2022.0.0:
|
||||||
|
* Extended the Flow Graph receiving nodes with a new
|
||||||
|
try_put_and_wait API that submits a message to the graph and
|
||||||
|
waits for its completion.
|
||||||
|
* Fixed the missed signal for thread request for enqueue
|
||||||
|
operation
|
||||||
|
* Significantly improved scalability of task_group, flow_graph,
|
||||||
|
and parallel_for_each
|
||||||
|
* Removed usage of std::aligned_storage deprecated in C++23
|
||||||
|
* Fixed the issue where oneapi::tbb::info interfaces might
|
||||||
|
interfere with the process affinity mask on the Windows* OS
|
||||||
|
systems with multiple processor groups.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 19 03:16:09 UTC 2024 - Alessandro de Oliveira Faria <cabelo@opensuse.org>
|
Fri Apr 19 03:16:09 UTC 2024 - Alessandro de Oliveira Faria <cabelo@opensuse.org>
|
||||||
|
|
||||||
|
16
tbb.spec
16
tbb.spec
@ -41,7 +41,7 @@
|
|||||||
%bcond_with python3
|
%bcond_with python3
|
||||||
%endif
|
%endif
|
||||||
Name: tbb
|
Name: tbb
|
||||||
Version: 2021.12.0
|
Version: 2022.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: oneAPI Threading Building Blocks (oneTBB)
|
Summary: oneAPI Threading Building Blocks (oneTBB)
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -52,7 +52,6 @@ Source99: tbb-rpmlintrc
|
|||||||
# PATCH-FIX-OPENSUSE cmake-remove-include-path.patch -- openCV include error
|
# PATCH-FIX-OPENSUSE cmake-remove-include-path.patch -- openCV include error
|
||||||
Patch2: cmake-remove-include-path.patch
|
Patch2: cmake-remove-include-path.patch
|
||||||
Patch4: add-cmake-check-for-libatomic-requirement-when-build.patch
|
Patch4: add-cmake-check-for-libatomic-requirement-when-build.patch
|
||||||
Patch5: use-FORTIFY_SOURCE-from-distribution.patch
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -82,9 +81,10 @@ oneTBB provides you with functions, interfaces, and classes to parallelize and
|
|||||||
scale the code.
|
scale the code.
|
||||||
|
|
||||||
%package -n libtbb%{so_ver}
|
%package -n libtbb%{so_ver}
|
||||||
Summary: Threading Building Blocks (TBB)
|
Summary: Core library for oneAPI Threading Building Blocks
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Provides: %{name} = %{version}
|
Provides: %{name} = %{version}
|
||||||
|
Provides: onetbb = %{version}
|
||||||
Obsoletes: %{name} < %{version}
|
Obsoletes: %{name} < %{version}
|
||||||
|
|
||||||
%description -n libtbb%{so_ver}
|
%description -n libtbb%{so_ver}
|
||||||
@ -97,7 +97,7 @@ scale the code.
|
|||||||
This package provides the core shared library corresponding to oneTBB.
|
This package provides the core shared library corresponding to oneTBB.
|
||||||
|
|
||||||
%package -n libtbbmalloc%{so_ver_malloc}
|
%package -n libtbbmalloc%{so_ver_malloc}
|
||||||
Summary: Threading Building Blocks (TBB)
|
Summary: Memory allocator library for oneAPI Threading Building Blocks
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Provides: %{name} = %{version}
|
Provides: %{name} = %{version}
|
||||||
Obsoletes: %{name} < %{version}
|
Obsoletes: %{name} < %{version}
|
||||||
@ -112,7 +112,7 @@ scale the code.
|
|||||||
This package provides the oneTBB memory allocator shared library.
|
This package provides the oneTBB memory allocator shared library.
|
||||||
|
|
||||||
%package -n libirml%{so_ver_irml}
|
%package -n libirml%{so_ver_irml}
|
||||||
Summary: Threading Building Blocks (TBB) - IPC Library
|
Summary: IPC library for oneAPI Threading Building Blocks
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libirml%{so_ver_irml}
|
%description -n libirml%{so_ver_irml}
|
||||||
@ -126,7 +126,7 @@ This subpackage provides the library required in order to enable inter-process
|
|||||||
(IPC) coordination between oneTBB schedulers for the oneTBB python module.
|
(IPC) coordination between oneTBB schedulers for the oneTBB python module.
|
||||||
|
|
||||||
%package -n libtbbbind%{tbbbind_suffix}-%{so_ver_bind}
|
%package -n libtbbbind%{tbbbind_suffix}-%{so_ver_bind}
|
||||||
Summary: NUMA support library for oneAPI Threading Building Blocks (oneTBB)
|
Summary: NUMA support library for oneAPI Threading Building Blocks
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libtbbbind%{tbbbind_suffix}-%{so_ver_bind}
|
%description -n libtbbbind%{tbbbind_suffix}-%{so_ver_bind}
|
||||||
@ -140,7 +140,7 @@ The NUMA support library for oneTBB.
|
|||||||
|
|
||||||
%if 0%{?python_subpackage_only}
|
%if 0%{?python_subpackage_only}
|
||||||
%package -n python-%{name}
|
%package -n python-%{name}
|
||||||
Summary: Python %{python_version} support for oneAPI Threading Building Blocks (oneTBB)
|
Summary: Python bindings for oneAPI Threading Building Blocks
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Requires: libirml%{so_ver_irml}
|
Requires: libirml%{so_ver_irml}
|
||||||
|
|
||||||
@ -156,7 +156,7 @@ This package contains python %{python_version} bindings for oneTBB.
|
|||||||
%else
|
%else
|
||||||
|
|
||||||
%package -n python3-%{name}
|
%package -n python3-%{name}
|
||||||
Summary: Python 3 support for oneAPI Threading Building Blocks (oneTBB)
|
Summary: Python 3 bindings for oneAPI Threading Building Blocks
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Requires: libirml%{so_ver_irml}
|
Requires: libirml%{so_ver_irml}
|
||||||
|
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
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} $<$<NOT:$<CONFIG:Debug>>:-D_FORTIFY_SOURCE=2> )
|
|
||||||
|
|
||||||
|
|
||||||
# TBB malloc settings
|
|
Loading…
x
Reference in New Issue
Block a user