Diff tbb-2021.5.0-r1 with a tbb-2021.7.0

/usr/portage/dev-cpp/tbb/tbb-2021.7.0.ebuild 2023-10-09 14:52:29.312368346 +0300
3 3

  
4 4
EAPI=8
5 5

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

  
8 8
DESCRIPTION="High level abstract threading library"
9 9
HOMEPAGE="https://github.com/oneapi-src/oneTBB"
......
22 22
DEPEND="${RDEPEND}"
23 23
BDEPEND="virtual/pkgconfig"
24 24

  
25
PATCHES=(
26
	# should be in.. 2022?
27
	"${FILESDIR}"/${PN}-2021.4.0-lto.patch
28
	"${FILESDIR}"/${PN}-2021.5.0-musl-deepbind.patch
29
	# bug 827883
30
	"${FILESDIR}"/${PN}-2021.4.0-missing-TBB_machine_fetchadd4.patch
31
	# need to verify this is in master
32
	"${FILESDIR}"/${PN}-2021.5.0-musl-mallinfo.patch
33
	# musl again, should be in.. 2022?
34
	"${FILESDIR}"/${PN}-2021.5.0-musl-setcontext.patch
35
	# should be in.. 2022?
36
	"${FILESDIR}"/${PN}-2021.5.0-x86-mwaitpkg.patch
37

  
38
	"${FILESDIR}"/${PN}-2021.5.0-flags-stripping.patch
39
)
40

  
41 25
src_configure() {
26
	# bug #872287
27
	filter-flags -D_GLIBCXX_ASSERTIONS
28
	append-cppflags -U_GLIBCXX_ASSERTIONS
29

  
42 30
	local mycmakeargs=(
43 31
		-DTBB_TEST=$(usex test)
44 32
		-DTBB_ENABLE_IPO=OFF
Thank you!