Diff tbb-2021.7.0 with a tbb-2021.7.0-r1

/usr/portage/dev-cpp/tbb/tbb-2021.7.0-r1.ebuild 2023-10-09 14:52:29.312368346 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit cmake-multilib flag-o-matic
6
inherit cmake-multilib
7 7

  
8 8
DESCRIPTION="High level abstract threading library"
9 9
HOMEPAGE="https://github.com/oneapi-src/oneTBB"
......
14 14
# https://github.com/oneapi-src/oneTBB/blob/master/CMakeLists.txt#L53
15 15
# libtbb<SONAME>-libtbbmalloc<SONAME>-libtbbbind<SONAME>
16 16
SLOT="0/12.5-2.5-3.5"
17
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
17
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
18 18
IUSE="test"
19 19
RESTRICT="!test? ( test )"
20 20

  
......
22 22
DEPEND="${RDEPEND}"
23 23
BDEPEND="virtual/pkgconfig"
24 24

  
25
src_configure() {
26
	# bug #872287
27
	filter-flags -D_GLIBCXX_ASSERTIONS
28
	append-cppflags -U_GLIBCXX_ASSERTIONS
25
PATCHES=(
26
	"${FILESDIR}"/${PN}-2021.7.0-pthread-eagain.patch
27
)
29 28

  
29
src_configure() {
30 30
	local mycmakeargs=(
31 31
		-DTBB_TEST=$(usex test)
32 32
		-DTBB_ENABLE_IPO=OFF
Thank you!