Diff taskflow-3.6.0 with a taskflow-9999

/usr/portage/dev-cpp/taskflow/taskflow-9999.ebuild 2025-07-29 16:22:12.620448252 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
13 13
	S="${WORKDIR}/taskflow-${PV}"
14 14
else
15 15
	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
16
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
16
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
17 17
	S="${WORKDIR}/taskflow-${PV}"
18 18
fi
19 19

  
......
26 26

  
27 27
HTML_DOCS=( docs/. )
28 28

  
29
PATCHES=(
30
)
31

  
32
src_prepare() {
33
	cmake_src_prepare
34
}
35

  
36 29
src_configure() {
37 30
	# TODO: enable CUDA via USE flag
38 31
	local mycmakeargs=(
Thank you!