[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 64be1ff10f8176400f071c03e259f2edf59fd7c5
Author: Alfredo Tupone gentoo org>
AuthorDate: Mon Mar 9 18:28:28 2026 +
Commit: Alfredo Tupone gentoo org>
CommitDate: Mon Mar 9 18:28:37 2026 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64be1ff1
dev-cpp/taskflow: add 3.11.0
Signed-off-by: Alfredo Tupone gentoo.org>
dev-cpp/taskflow/Manifest | 1 +
dev-cpp/taskflow/taskflow-3.11.0.ebuild | 38 +
2 files changed, 39 insertions(+)
diff --git a/dev-cpp/taskflow/Manifest b/dev-cpp/taskflow/Manifest
index 118275c3915a..9d31dd6f4899 100644
--- a/dev-cpp/taskflow/Manifest
+++ b/dev-cpp/taskflow/Manifest
@@ -1,3 +1,4 @@
DIST taskflow-3.10.0.tar.gz 55396434 BLAKE2B
8b2351de0ae898e4e42aec295723064ac2167d3afe01b2a47c88443b30220f258c8955d9ddf2727510ea35523c54dd88050a9e0654a03d6d74527a2d21d35654
SHA512
b7919d9ed47a27d706c552944a2f92ce9dcb012983622f4d62a2226389fd4628658a7e1090804a5dc860f16a10a4e1b31802a4019722283ff7912aa2a7334d0e
+DIST taskflow-3.11.0.tar.gz 63626565 BLAKE2B
824b115f7d91039788996845e4edee1567e3af0e29c46c5dc4373b16981d3c2dd2d4290e5d7dd6a771ef999f8a75921128e14d70e16022880a5c1facc0935d00
SHA512
ca56f07db18767483ef6c2371a0dd9675e4f848cce891fe0ade85ec38609c08ddac2152a227a511c65901ade27439a988cdf70ad6841489f2bdbf712cde97f44
DIST taskflow-3.6.0.tar.gz 66335249 BLAKE2B
bcdc6d721e32b7c40f65ed5bd115d2c0083663e8b51c0e4460baa5f62e576382a45e8da735119b577d8a6ae7a64c72431654471a3b8335997fdf4f9191ad64af
SHA512
1bf17b69cdb29b982fc74b9091f5b6c8fc4fd3004b26afe7e73e71569738e492cf8663b71d98cfbc4e240c08ceb8a99bf51e95254710722f89929a4bbea8
DIST taskflow-3.7.0.tar.gz 66383509 BLAKE2B
92a9d56f0101d507b7f924ce9038d6d43a5f39c9270582f910644ad281ea2cee3f8fa39f3ee4e748f90d013d57a3bc2f24842e328ab345bc580d1a9a5de4f308
SHA512
2faecc9eaf9e7f24253a5aedbb4ef6164ba8b5181b7f2c65d8646c21300f28278d7817e928eeab7e85ec2b9644508a8665bab1a7482ec85a7f6de18cecb32d6f
diff --git a/dev-cpp/taskflow/taskflow-3.11.0.ebuild
b/dev-cpp/taskflow/taskflow-3.11.0.ebuild
new file mode 100644
index ..8fa1b9436602
--- /dev/null
+++ b/dev-cpp/taskflow/taskflow-3.11.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Modern C++ Parallel Task Programming"
+HOMEPAGE="https://taskflow.github.io";
+if [[ ${PV} == ]]; then
+ EGIT_REPO_URI="https://github.com/taskflow/${PN}.git";
+ inherit git-r3
+ S="${WORKDIR}/taskflow-${PV}"
+else
+ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
+ S="${WORKDIR}/taskflow-${PV}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-cpp/doctest )"
+
+HTML_DOCS=( docs/. )
+
+src_configure() {
+ # TODO: enable CUDA via USE flag
+ local mycmakeargs=(
+ -DTF_BUILD_CUDA=OFF
+ -DTF_BUILD_EXAMPLES=$(usex examples)
+ -DTF_BUILD_TESTS=$(usex test)
+ )
+
+ cmake_src_configure
+}
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/files/
commit: aa087324691fcecb918acd09ccd7079acd3becd3
Author: Michael Mair-Keimberger gentoo org>
AuthorDate: Wed Oct 29 16:32:15 2025 +
Commit: Michael Mair-Keimberger gentoo org>
CommitDate: Wed Oct 29 16:32:15 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa087324
dev-cpp/taskflow: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger gentoo.org>
.../taskflow/files/taskflow--fix_doctest.patch | 377 -
1 file changed, 377 deletions(-)
diff --git a/dev-cpp/taskflow/files/taskflow--fix_doctest.patch
b/dev-cpp/taskflow/files/taskflow--fix_doctest.patch
deleted file mode 100644
index 323d17e7f535..
--- a/dev-cpp/taskflow/files/taskflow--fix_doctest.patch
+++ /dev/null
@@ -1,377 +0,0 @@
-diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt
-index 3397d798..1256e8e6 100644
a/unittests/CMakeLists.txt
-+++ b/unittests/CMakeLists.txt
-@@ -1,6 +1,7 @@
- enable_testing()
-
--include(${TF_3RD_PARTY_DIR}/doctest/doctest.cmake)
-+find_package(doctest REQUIRED)
-+include(doctest)
-
- list(APPEND TF_UNITTESTS
- utility
-@@ -23,8 +24,7 @@ list(APPEND TF_UNITTESTS
-
- foreach(unittest IN LISTS TF_UNITTESTS)
- add_executable(${unittest} ${unittest}.cpp)
-- target_link_libraries(${unittest} ${PROJECT_NAME} tf::default_settings)
-- target_include_directories(${unittest} PRIVATE ${TF_3RD_PARTY_DIR}/doctest)
-+ target_link_libraries(${unittest} ${PROJECT_NAME} tf::default_settings
doctest::doctest)
- doctest_discover_tests(${unittest})
- endforeach()
-
-diff --git a/unittests/algorithms.cpp b/unittests/algorithms.cpp
-index a250713a..09ae9ba5 100644
a/unittests/algorithms.cpp
-+++ b/unittests/algorithms.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
- #include
- #include
-diff --git a/unittests/asyncs.cpp b/unittests/asyncs.cpp
-index 28eeaa8c..466687a2 100644
a/unittests/asyncs.cpp
-+++ b/unittests/asyncs.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
-
- //
-diff --git a/unittests/basics.cpp b/unittests/basics.cpp
-index f5b9e3dd..e93c3fd3 100644
a/unittests/basics.cpp
-+++ b/unittests/basics.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
- #include
-
-diff --git a/unittests/cancellation.cpp b/unittests/cancellation.cpp
-index 3ce1cb8c..6543ee52 100644
a/unittests/cancellation.cpp
-+++ b/unittests/cancellation.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
-
- // EmptyFuture
-diff --git a/unittests/compositions.cpp b/unittests/compositions.cpp
-index 4fd621b5..e3c91e4c 100644
a/unittests/compositions.cpp
-+++ b/unittests/compositions.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
-
- //
-diff --git a/unittests/control_flow.cpp b/unittests/control_flow.cpp
-index 024ace84..11206384 100644
a/unittests/control_flow.cpp
-+++ b/unittests/control_flow.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
-
- //
-diff --git a/unittests/cuda/CMakeLists.txt b/unittests/cuda/CMakeLists.txt
-index d0ccc8e9..ccb46721 100644
a/unittests/cuda/CMakeLists.txt
-+++ b/unittests/cuda/CMakeLists.txt
-@@ -13,15 +13,14 @@ list(APPEND TF_CUDA_UNITTESTS
-
- foreach(cudatest IN LISTS TF_CUDA_UNITTESTS)
- add_executable(${cudatest} ${cudatest}.cu)
-- target_link_libraries(${cudatest} ${PROJECT_NAME} tf::default_settings)
-- target_include_directories(${cudatest} PRIVATE ${TF_3RD_PARTY_DIR}/doctest)
--
-+ target_link_libraries(${cudatest} ${PROJECT_NAME} tf::default_settings
doctest::doctest)
-+
- # avoid cmake 3.18+ warning
- # we let nvcc to decide the flag if the architecture is not given
- if(NOT CUDA_ARCHITECTURES)
- set_property(TARGET ${cudatest} PROPERTY CUDA_ARCHITECTURES OFF)
- endif()
--
-+
- doctest_discover_tests(${cudatest})
- endforeach()
-
-diff --git a/unittests/cuda/cuda_algorithms.cu
b/unittests/cuda/cuda_algorithms.cu
-index 04b4..47645273 100644
a/unittests/cuda/cuda_algorithms.cu
-+++ b/unittests/cuda/cuda_algorithms.cu
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
- #include
- #include
-diff --git a/unittests/cuda/cuda_basics.cu b/unittests/cuda/cuda_basics.cu
-index 8e0fdffd..f97c7822 100644
a/unittests/cuda/cuda_basics.cu
-+++ b/unittests/cuda/cuda_basics.cu
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
- #include
-
-diff --git a/unittests/cuda/cuda_capturer_optimizer.cu
b/unittests/cuda/cu
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 19669793855a629541fe45cdd81db21b53639d59
Author: Sam James gentoo org>
AuthorDate: Mon Jul 28 05:59:53 2025 +
Commit: Sam James gentoo org>
CommitDate: Mon Jul 28 05:59:53 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19669793
dev-cpp/taskflow: Stabilize 3.10.0 arm, #959512
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
index 2ccb5bb2fbbf..03fa5c217daf 100644
--- a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv
~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv
~s390 sparc x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 779f12497784b134f8704f0ea7ceabc953f6e612
Author: Arthur Zamarin gentoo org>
AuthorDate: Sat Jul 12 10:09:31 2025 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sat Jul 12 10:09:31 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=779f1249
dev-cpp/taskflow: Stabilize 3.10.0 ppc64, #959512
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
index 8d7a5eb2fc70..2687b30530e6 100644
--- a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv
~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv
~s390 ~sparc x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: b13f2ea1cf57a4fe2bfde4eec345899cd0c516f8
Author: Arthur Zamarin gentoo org>
AuthorDate: Sat Jul 5 18:03:02 2025 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sat Jul 5 18:03:02 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b13f2ea1
dev-cpp/taskflow: Stabilize 3.10.0 ppc, #959512
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
index 253f86a9ddeb..8d7a5eb2fc70 100644
--- a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv
~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv
~s390 ~sparc x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: eb03a769f888d6ff086859a39f1a696caaca8b6a
Author: Sam James gentoo org>
AuthorDate: Sat Jul 5 07:14:37 2025 +
Commit: Sam James gentoo org>
CommitDate: Sat Jul 5 07:14:37 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb03a769
dev-cpp/taskflow: Stabilize 3.10.0 amd64, #959512
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
index badfce4802c0..253f86a9ddeb 100644
--- a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv
~s390 ~sparc x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 923023fd4e0da9af144779013379dff62f4a23d5
Author: Arthur Zamarin gentoo org>
AuthorDate: Sat Jul 5 05:46:08 2025 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sat Jul 5 05:46:08 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=923023fd
dev-cpp/taskflow: Stabilize 3.10.0 arm64, #959512
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
index 2ac4c7bae5e9..7800f97c7f17 100644
--- a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 61884f327338a6d8489118bc67855258f05cc90b
Author: Arthur Zamarin gentoo org>
AuthorDate: Sat Jul 5 05:46:08 2025 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sat Jul 5 05:46:08 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61884f32
dev-cpp/taskflow: Stabilize 3.10.0 x86, #959512
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
index 7800f97c7f17..badfce4802c0 100644
--- a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/, dev-cpp/taskflow/files/
commit: 78fc1b59ccbc3dd827879fb3ad2b81fd3edfb3d9
Author: Sam James gentoo org>
AuthorDate: Thu May 29 12:34:32 2025 +
Commit: Sam James gentoo org>
CommitDate: Thu May 29 12:34:32 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78fc1b59
dev-cpp/taskflow: drop 3.3.0, 3.4.0
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/Manifest | 2 -
.../files/taskflow-3.3.0-fix_doctest.patch | 377 ---
.../files/taskflow-3.4.0-fix_doctest.patch | 401 -
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 47 ---
dev-cpp/taskflow/taskflow-3.4.0.ebuild | 47 ---
5 files changed, 874 deletions(-)
diff --git a/dev-cpp/taskflow/Manifest b/dev-cpp/taskflow/Manifest
index 050b00c3f527..118275c3915a 100644
--- a/dev-cpp/taskflow/Manifest
+++ b/dev-cpp/taskflow/Manifest
@@ -1,5 +1,3 @@
DIST taskflow-3.10.0.tar.gz 55396434 BLAKE2B
8b2351de0ae898e4e42aec295723064ac2167d3afe01b2a47c88443b30220f258c8955d9ddf2727510ea35523c54dd88050a9e0654a03d6d74527a2d21d35654
SHA512
b7919d9ed47a27d706c552944a2f92ce9dcb012983622f4d62a2226389fd4628658a7e1090804a5dc860f16a10a4e1b31802a4019722283ff7912aa2a7334d0e
-DIST taskflow-3.3.0.tar.gz 64446007 BLAKE2B
07878a03bd90af64914f1dc80850bcf5d4140f20ecfa998237039b6f37cc668e8c2b5dffafb75f4518209b3ac01f9935f5e30a020871334f131e6fe7654748bf
SHA512
08ab20bf38927d49c8332fc103cb7b4b6358efa06466cb8471f2004eb27b79b9eadc9971ec4acd110c8f369686b6f99bf3e21192285c3f28b9cb855bfd9ab0b5
-DIST taskflow-3.4.0.tar.gz 64152239 BLAKE2B
cec78155bc8db3ac7fb6e61ece8c1bb4697c6655122cdcd987405ce21b1f4f30570debda8a7cccf43d089bac791cb18654e829380e244addae2875ad4fdb47c5
SHA512
e0e3589feec65677c4de6583a70c14f90826f2177636010955c597a3232f7842431c697eae711318f4a64fae52ac3e33e2d0739ef36bb7c57698110b6fa4740d
DIST taskflow-3.6.0.tar.gz 66335249 BLAKE2B
bcdc6d721e32b7c40f65ed5bd115d2c0083663e8b51c0e4460baa5f62e576382a45e8da735119b577d8a6ae7a64c72431654471a3b8335997fdf4f9191ad64af
SHA512
1bf17b69cdb29b982fc74b9091f5b6c8fc4fd3004b26afe7e73e71569738e492cf8663b71d98cfbc4e240c08ceb8a99bf51e95254710722f89929a4bbea8
DIST taskflow-3.7.0.tar.gz 66383509 BLAKE2B
92a9d56f0101d507b7f924ce9038d6d43a5f39c9270582f910644ad281ea2cee3f8fa39f3ee4e748f90d013d57a3bc2f24842e328ab345bc580d1a9a5de4f308
SHA512
2faecc9eaf9e7f24253a5aedbb4ef6164ba8b5181b7f2c65d8646c21300f28278d7817e928eeab7e85ec2b9644508a8665bab1a7482ec85a7f6de18cecb32d6f
diff --git a/dev-cpp/taskflow/files/taskflow-3.3.0-fix_doctest.patch
b/dev-cpp/taskflow/files/taskflow-3.3.0-fix_doctest.patch
deleted file mode 100644
index c5da4fd96eb6..
--- a/dev-cpp/taskflow/files/taskflow-3.3.0-fix_doctest.patch
+++ /dev/null
@@ -1,377 +0,0 @@
-diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt
-index cf881d4..ff6618a 100644
a/unittests/CMakeLists.txt
-+++ b/unittests/CMakeLists.txt
-@@ -1,6 +1,7 @@
- enable_testing()
-
--include(${TF_3RD_PARTY_DIR}/doctest/doctest.cmake)
-+find_package(doctest REQUIRED)
-+include(doctest)
-
- list(APPEND TF_UNITTESTS
- utility
-@@ -22,8 +23,7 @@ list(APPEND TF_UNITTESTS
-
- foreach(unittest IN LISTS TF_UNITTESTS)
- add_executable(${unittest} ${unittest}.cpp)
-- target_link_libraries(${unittest} ${PROJECT_NAME} tf::default_settings)
-- target_include_directories(${unittest} PRIVATE ${TF_3RD_PARTY_DIR}/doctest)
-+ target_link_libraries(${unittest} ${PROJECT_NAME} tf::default_settings
doctest::doctest)
- doctest_discover_tests(${unittest})
- endforeach()
-
-diff --git a/unittests/algorithms.cpp b/unittests/algorithms.cpp
-index 5ae7ac6..efffdd9 100644
a/unittests/algorithms.cpp
-+++ b/unittests/algorithms.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
- #include
- #include
-diff --git a/unittests/asyncs.cpp b/unittests/asyncs.cpp
-index cd6985c..4e7b80f 100644
a/unittests/asyncs.cpp
-+++ b/unittests/asyncs.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
-
- //
-diff --git a/unittests/basics.cpp b/unittests/basics.cpp
-index 2784fa4..ac1ab20 100644
a/unittests/basics.cpp
-+++ b/unittests/basics.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
- #include
-
-diff --git a/unittests/cancellation.cpp b/unittests/cancellation.cpp
-index 3273af3..ff17ad4 100644
a/unittests/cancellation.cpp
-+++ b/unittests/cancellation.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
-
- // EmptyFuture
-diff --git a/unittests/compositions.cpp b/unittests/compositions.cpp
-index 0d330ae..e2784a5 100644
a/unittests/compositions.cpp
-+++ b/unittests/compositions.cpp
-@@ -1,6 +1,6 @@
- #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
-
--#include
-+#include
- #include
-
- // -
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 3898019be065ebc20f9cc34a586a9f17049df5ad
Author: Sam James gentoo org>
AuthorDate: Thu May 29 12:35:11 2025 +
Commit: Sam James gentoo org>
CommitDate: Thu May 29 12:35:11 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3898019b
dev-cpp/taskflow: sync live
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.10.0.ebuild | 7 ---
dev-cpp/taskflow/taskflow-.ebuild | 13 ++---
2 files changed, 2 insertions(+), 18 deletions(-)
diff --git a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
index 2006c5eb2fa0..2ac4c7bae5e9 100644
--- a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
@@ -26,13 +26,6 @@ DEPEND="test? ( dev-cpp/doctest )"
HTML_DOCS=( docs/. )
-PATCHES=(
-)
-
-src_prepare() {
- cmake_src_prepare
-}
-
src_configure() {
# TODO: enable CUDA via USE flag
local mycmakeargs=(
diff --git a/dev-cpp/taskflow/taskflow-.ebuild
b/dev-cpp/taskflow/taskflow-.ebuild
index d718a2e18db8..2ac4c7bae5e9 100644
--- a/dev-cpp/taskflow/taskflow-.ebuild
+++ b/dev-cpp/taskflow/taskflow-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390
~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
@@ -26,15 +26,6 @@ DEPEND="test? ( dev-cpp/doctest )"
HTML_DOCS=( docs/. )
-PATCHES=(
- "${FILESDIR}"/taskflow--fix_doctest.patch
-)
-
-src_prepare() {
- rm -r "${S}/3rd-party" || die "rm failed"
- cmake_src_prepare
-}
-
src_configure() {
# TODO: enable CUDA via USE flag
local mycmakeargs=(
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: a6abe55e28bd76fc58b79fac5f6f843ef10d3f8a
Author: Sam James gentoo org>
AuthorDate: Thu May 29 12:33:49 2025 +
Commit: Sam James gentoo org>
CommitDate: Thu May 29 12:33:49 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6abe55e
dev-cpp/taskflow: add 3.10.0
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/Manifest | 1 +
dev-cpp/taskflow/taskflow-3.10.0.ebuild | 45 +
2 files changed, 46 insertions(+)
diff --git a/dev-cpp/taskflow/Manifest b/dev-cpp/taskflow/Manifest
index 05b23be00440..050b00c3f527 100644
--- a/dev-cpp/taskflow/Manifest
+++ b/dev-cpp/taskflow/Manifest
@@ -1,3 +1,4 @@
+DIST taskflow-3.10.0.tar.gz 55396434 BLAKE2B
8b2351de0ae898e4e42aec295723064ac2167d3afe01b2a47c88443b30220f258c8955d9ddf2727510ea35523c54dd88050a9e0654a03d6d74527a2d21d35654
SHA512
b7919d9ed47a27d706c552944a2f92ce9dcb012983622f4d62a2226389fd4628658a7e1090804a5dc860f16a10a4e1b31802a4019722283ff7912aa2a7334d0e
DIST taskflow-3.3.0.tar.gz 64446007 BLAKE2B
07878a03bd90af64914f1dc80850bcf5d4140f20ecfa998237039b6f37cc668e8c2b5dffafb75f4518209b3ac01f9935f5e30a020871334f131e6fe7654748bf
SHA512
08ab20bf38927d49c8332fc103cb7b4b6358efa06466cb8471f2004eb27b79b9eadc9971ec4acd110c8f369686b6f99bf3e21192285c3f28b9cb855bfd9ab0b5
DIST taskflow-3.4.0.tar.gz 64152239 BLAKE2B
cec78155bc8db3ac7fb6e61ece8c1bb4697c6655122cdcd987405ce21b1f4f30570debda8a7cccf43d089bac791cb18654e829380e244addae2875ad4fdb47c5
SHA512
e0e3589feec65677c4de6583a70c14f90826f2177636010955c597a3232f7842431c697eae711318f4a64fae52ac3e33e2d0739ef36bb7c57698110b6fa4740d
DIST taskflow-3.6.0.tar.gz 66335249 BLAKE2B
bcdc6d721e32b7c40f65ed5bd115d2c0083663e8b51c0e4460baa5f62e576382a45e8da735119b577d8a6ae7a64c72431654471a3b8335997fdf4f9191ad64af
SHA512
1bf17b69cdb29b982fc74b9091f5b6c8fc4fd3004b26afe7e73e71569738e492cf8663b71d98cfbc4e240c08ceb8a99bf51e95254710722f89929a4bbea8
diff --git a/dev-cpp/taskflow/taskflow-3.10.0.ebuild
b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
new file mode 100644
index ..2006c5eb2fa0
--- /dev/null
+++ b/dev-cpp/taskflow/taskflow-3.10.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Modern C++ Parallel Task Programming"
+HOMEPAGE="https://taskflow.github.io";
+if [[ ${PV} == ]]; then
+ EGIT_REPO_URI="https://github.com/taskflow/${PN}.git";
+ inherit git-r3
+ S="${WORKDIR}/taskflow-${PV}"
+else
+ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
+ S="${WORKDIR}/taskflow-${PV}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-cpp/doctest )"
+
+HTML_DOCS=( docs/. )
+
+PATCHES=(
+)
+
+src_prepare() {
+ cmake_src_prepare
+}
+
+src_configure() {
+ # TODO: enable CUDA via USE flag
+ local mycmakeargs=(
+ -DTF_BUILD_CUDA=OFF
+ -DTF_BUILD_EXAMPLES=$(usex examples)
+ -DTF_BUILD_TESTS=$(usex test)
+ )
+
+ cmake_src_configure
+}
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 863557a90ff1b556e089707ccba15f8aa5004b77
Author: Arthur Zamarin gentoo org>
AuthorDate: Sun Dec 1 18:35:00 2024 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sun Dec 1 18:35:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=863557a9
dev-cpp/taskflow: Stabilize 3.7.0 sparc, #945573
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.7.0.ebuild
b/dev-cpp/taskflow/taskflow-3.7.0.ebuild
index b18ddb7f8ae0..f28f67472c04 100644
--- a/dev-cpp/taskflow/taskflow-3.7.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.7.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv
~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv
~s390 sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 1c881dc5e0321e825eab9cbe132397e267c6e831
Author: Matthias Maier gentoo org>
AuthorDate: Tue May 21 18:51:27 2024 +
Commit: Matthias Maier gentoo org>
CommitDate: Tue May 21 18:52:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c881dc5
dev-cpp/taskflow: add 3.7.0
100% tests passed, 0 tests failed out of 2159
Total Test time (real) = 16.46 sec
* Tests succeeded.
>>> Completed testing dev-cpp/taskflow-3.7.0
Signed-off-by: Matthias Maier gentoo.org>
dev-cpp/taskflow/Manifest | 1 +
dev-cpp/taskflow/taskflow-3.7.0.ebuild | 45 ++
2 files changed, 46 insertions(+)
diff --git a/dev-cpp/taskflow/Manifest b/dev-cpp/taskflow/Manifest
index 356b679b2e87..05b23be00440 100644
--- a/dev-cpp/taskflow/Manifest
+++ b/dev-cpp/taskflow/Manifest
@@ -1,3 +1,4 @@
DIST taskflow-3.3.0.tar.gz 64446007 BLAKE2B
07878a03bd90af64914f1dc80850bcf5d4140f20ecfa998237039b6f37cc668e8c2b5dffafb75f4518209b3ac01f9935f5e30a020871334f131e6fe7654748bf
SHA512
08ab20bf38927d49c8332fc103cb7b4b6358efa06466cb8471f2004eb27b79b9eadc9971ec4acd110c8f369686b6f99bf3e21192285c3f28b9cb855bfd9ab0b5
DIST taskflow-3.4.0.tar.gz 64152239 BLAKE2B
cec78155bc8db3ac7fb6e61ece8c1bb4697c6655122cdcd987405ce21b1f4f30570debda8a7cccf43d089bac791cb18654e829380e244addae2875ad4fdb47c5
SHA512
e0e3589feec65677c4de6583a70c14f90826f2177636010955c597a3232f7842431c697eae711318f4a64fae52ac3e33e2d0739ef36bb7c57698110b6fa4740d
DIST taskflow-3.6.0.tar.gz 66335249 BLAKE2B
bcdc6d721e32b7c40f65ed5bd115d2c0083663e8b51c0e4460baa5f62e576382a45e8da735119b577d8a6ae7a64c72431654471a3b8335997fdf4f9191ad64af
SHA512
1bf17b69cdb29b982fc74b9091f5b6c8fc4fd3004b26afe7e73e71569738e492cf8663b71d98cfbc4e240c08ceb8a99bf51e95254710722f89929a4bbea8
+DIST taskflow-3.7.0.tar.gz 66383509 BLAKE2B
92a9d56f0101d507b7f924ce9038d6d43a5f39c9270582f910644ad281ea2cee3f8fa39f3ee4e748f90d013d57a3bc2f24842e328ab345bc580d1a9a5de4f308
SHA512
2faecc9eaf9e7f24253a5aedbb4ef6164ba8b5181b7f2c65d8646c21300f28278d7817e928eeab7e85ec2b9644508a8665bab1a7482ec85a7f6de18cecb32d6f
diff --git a/dev-cpp/taskflow/taskflow-3.7.0.ebuild
b/dev-cpp/taskflow/taskflow-3.7.0.ebuild
new file mode 100644
index ..a9a00cd40a3d
--- /dev/null
+++ b/dev-cpp/taskflow/taskflow-3.7.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Modern C++ Parallel Task Programming"
+HOMEPAGE="https://taskflow.github.io";
+if [[ ${PV} == ]]; then
+ EGIT_REPO_URI="https://github.com/taskflow/${PN}.git";
+ inherit git-r3
+ S="${WORKDIR}/taskflow-${PV}"
+else
+ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc
~ppc64 ~riscv ~s390 ~sparc ~x86"
+ S="${WORKDIR}/taskflow-${PV}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-cpp/doctest )"
+
+HTML_DOCS=( docs/. )
+
+PATCHES=(
+)
+
+src_prepare() {
+ cmake_src_prepare
+}
+
+src_configure() {
+ # TODO: enable CUDA via USE flag
+ local mycmakeargs=(
+ -DTF_BUILD_CUDA=OFF
+ -DTF_BUILD_EXAMPLES=$(usex examples)
+ -DTF_BUILD_TESTS=$(usex test)
+ )
+
+ cmake_src_configure
+}
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 97e69400e47461e947403dcb90b8f43b2db4ad98
Author: Arthur Zamarin gentoo org>
AuthorDate: Sat Dec 23 19:59:25 2023 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sat Dec 23 19:59:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e69400
dev-cpp/taskflow: Stabilize 3.6.0 ppc, #920122
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
index ea8ccc24ffa6..7e1fc394c892 100644
--- a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64
~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64
~riscv ~s390 sparc x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 761037f5a12b7a3cd50502fd063b19c824b4bf28
Author: Sam James gentoo org>
AuthorDate: Sat Dec 16 20:56:13 2023 +
Commit: Sam James gentoo org>
CommitDate: Sat Dec 16 20:56:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761037f5
dev-cpp/taskflow: Stabilize 3.6.0 ppc64, #920122
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
index 4bff9c2fcedb..ea8ccc24ffa6 100644
--- a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64
~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64
~riscv ~s390 sparc x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 8a30edf9f4ee94c166076c89de0547075528e96a
Author: Arthur Zamarin gentoo org>
AuthorDate: Sat Dec 16 11:58:05 2023 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sat Dec 16 11:58:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a30edf9
dev-cpp/taskflow: Stabilize 3.6.0 sparc, #920122
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
index 10ae0b7c2770..8a32d88d4f6e 100644
--- a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64
~riscv ~s390 sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: cfb01d99a87acffee364245bff22be8d0f66b38c
Author: Arthur Zamarin gentoo org>
AuthorDate: Sat Dec 16 11:46:56 2023 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sat Dec 16 11:46:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfb01d99
dev-cpp/taskflow: Stabilize 3.6.0 arm, #920122
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
index 22248fced959..10ae0b7c2770 100644
--- a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc
~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: ec493d048ee74b353905767ac704c7e77434535c
Author: Arthur Zamarin gentoo org>
AuthorDate: Sun Aug 20 17:52:59 2023 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sun Aug 20 17:52:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec493d04
dev-cpp/taskflow: Keyword 3.6.0 hppa, #909029
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
index 10460bc1e66a..d82ea8914be8 100644
--- a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv
~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: e3c24d458854d8a57f9046acbc787b25ddaa8e9d
Author: Matthias Maier gentoo org>
AuthorDate: Mon Jun 19 18:35:40 2023 +
Commit: Matthias Maier gentoo org>
CommitDate: Mon Jun 19 18:37:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3c24d45
dev-cpp/taskflow: add 3.6.0
Signed-off-by: Matthias Maier gentoo.org>
dev-cpp/taskflow/Manifest | 1 +
dev-cpp/taskflow/taskflow-3.6.0.ebuild | 45 ++
2 files changed, 46 insertions(+)
diff --git a/dev-cpp/taskflow/Manifest b/dev-cpp/taskflow/Manifest
index faea89a0e6f3..356b679b2e87 100644
--- a/dev-cpp/taskflow/Manifest
+++ b/dev-cpp/taskflow/Manifest
@@ -1,2 +1,3 @@
DIST taskflow-3.3.0.tar.gz 64446007 BLAKE2B
07878a03bd90af64914f1dc80850bcf5d4140f20ecfa998237039b6f37cc668e8c2b5dffafb75f4518209b3ac01f9935f5e30a020871334f131e6fe7654748bf
SHA512
08ab20bf38927d49c8332fc103cb7b4b6358efa06466cb8471f2004eb27b79b9eadc9971ec4acd110c8f369686b6f99bf3e21192285c3f28b9cb855bfd9ab0b5
DIST taskflow-3.4.0.tar.gz 64152239 BLAKE2B
cec78155bc8db3ac7fb6e61ece8c1bb4697c6655122cdcd987405ce21b1f4f30570debda8a7cccf43d089bac791cb18654e829380e244addae2875ad4fdb47c5
SHA512
e0e3589feec65677c4de6583a70c14f90826f2177636010955c597a3232f7842431c697eae711318f4a64fae52ac3e33e2d0739ef36bb7c57698110b6fa4740d
+DIST taskflow-3.6.0.tar.gz 66335249 BLAKE2B
bcdc6d721e32b7c40f65ed5bd115d2c0083663e8b51c0e4460baa5f62e576382a45e8da735119b577d8a6ae7a64c72431654471a3b8335997fdf4f9191ad64af
SHA512
1bf17b69cdb29b982fc74b9091f5b6c8fc4fd3004b26afe7e73e71569738e492cf8663b71d98cfbc4e240c08ceb8a99bf51e95254710722f89929a4bbea8
diff --git a/dev-cpp/taskflow/taskflow-3.6.0.ebuild
b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
new file mode 100644
index ..10460bc1e66a
--- /dev/null
+++ b/dev-cpp/taskflow/taskflow-3.6.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Modern C++ Parallel Task Programming"
+HOMEPAGE="https://taskflow.github.io";
+if [[ ${PV} == ]]; then
+ EGIT_REPO_URI="https://github.com/taskflow/${PN}.git";
+ inherit git-r3
+ S="${WORKDIR}/taskflow-${PV}"
+else
+ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv
~s390 ~sparc ~x86"
+ S="${WORKDIR}/taskflow-${PV}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-cpp/doctest )"
+
+HTML_DOCS=( docs/. )
+
+PATCHES=(
+)
+
+src_prepare() {
+ cmake_src_prepare
+}
+
+src_configure() {
+ # TODO: enable CUDA via USE flag
+ local mycmakeargs=(
+ -DTF_BUILD_CUDA=OFF
+ -DTF_BUILD_EXAMPLES=$(usex examples)
+ -DTF_BUILD_TESTS=$(usex test)
+ )
+
+ cmake_src_configure
+}
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 08c890eedf7837a36bc91385f6707046ae70e7ce
Author: Matthias Maier gentoo org>
AuthorDate: Mon Jun 19 18:37:09 2023 +
Commit: Matthias Maier gentoo org>
CommitDate: Mon Jun 19 18:37:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08c890ee
dev-cpp/taskflow: update keyword list in live ebuild
Signed-off-by: Matthias Maier gentoo.org>
dev-cpp/taskflow/taskflow-.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/taskflow/taskflow-.ebuild
b/dev-cpp/taskflow/taskflow-.ebuild
index 67272062e500..0a0560906b3d 100644
--- a/dev-cpp/taskflow/taskflow-.ebuild
+++ b/dev-cpp/taskflow/taskflow-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv
~s390 ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 30ce2dcce51aab7041e8d92015f12b5aaf89109a
Author: Sam James gentoo org>
AuthorDate: Fri Apr 14 20:45:30 2023 +
Commit: Sam James gentoo org>
CommitDate: Fri Apr 14 20:45:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ce2dcc
dev-cpp/taskflow: Keyword 3.4.0 s390, #873814
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.4.0.ebuild
b/dev-cpp/taskflow/taskflow-3.4.0.ebuild
index cf891e256b0e..5909982c9530 100644
--- a/dev-cpp/taskflow/taskflow-3.4.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.4.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc
~x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~s390
sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: c361193dc6edbf8d2c3bc38e6dc3f3d5bacab2a3
Author: Matt Turner gentoo org>
AuthorDate: Mon Feb 13 03:09:40 2023 +
Commit: Matt Turner gentoo org>
CommitDate: Mon Feb 13 03:09:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c361193d
dev-cpp/taskflow: Keyword 3.4.0 alpha, #873814
Signed-off-by: Matt Turner gentoo.org>
dev-cpp/taskflow/taskflow-3.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/taskflow/taskflow-3.4.0.ebuild
b/dev-cpp/taskflow/taskflow-3.4.0.ebuild
index c23ae2ccf7b7..cf891e256b0e 100644
--- a/dev-cpp/taskflow/taskflow-3.4.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc ~x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc
~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/files/
commit: 91c055fe19330e5356bd0d0a103835c9cd28026a
Author: Matt Turner gentoo org>
AuthorDate: Mon Feb 13 00:29:07 2023 +
Commit: Matt Turner gentoo org>
CommitDate: Mon Feb 13 00:29:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91c055fe
dev-cpp/taskflow: Fix test suite build
Closes: https://bugs.gentoo.org/889676
Signed-off-by: Matt Turner gentoo.org>
.../files/taskflow-3.4.0-fix_doctest.patch | 30 +++---
1 file changed, 27 insertions(+), 3 deletions(-)
diff --git a/dev-cpp/taskflow/files/taskflow-3.4.0-fix_doctest.patch
b/dev-cpp/taskflow/files/taskflow-3.4.0-fix_doctest.patch
index 323d17e7f535..a63e84673f70 100644
--- a/dev-cpp/taskflow/files/taskflow-3.4.0-fix_doctest.patch
+++ b/dev-cpp/taskflow/files/taskflow-3.4.0-fix_doctest.patch
@@ -1,5 +1,5 @@
diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt
-index 3397d798..1256e8e6 100644
+index 86a00bcc..5f5c36fb 100644
--- a/unittests/CMakeLists.txt
+++ b/unittests/CMakeLists.txt
@@ -1,6 +1,7 @@
@@ -11,7 +11,7 @@ index 3397d798..1256e8e6 100644
list(APPEND TF_UNITTESTS
utility
-@@ -23,8 +24,7 @@ list(APPEND TF_UNITTESTS
+@@ -24,8 +25,7 @@ list(APPEND TF_UNITTESTS
foreach(unittest IN LISTS TF_UNITTESTS)
add_executable(${unittest} ${unittest}.cpp)
@@ -46,7 +46,7 @@ index 28eeaa8c..466687a2 100644
//
diff --git a/unittests/basics.cpp b/unittests/basics.cpp
-index f5b9e3dd..e93c3fd3 100644
+index 290abccf..44301011 100644
--- a/unittests/basics.cpp
+++ b/unittests/basics.cpp
@@ -1,6 +1,6 @@
@@ -230,6 +230,30 @@ index 94d8f394..701365c0 100644
@@ -1,6 +1,6 @@
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+-#include
++#include
+
+ #include
+ #include
+diff --git a/unittests/runtimes.cpp b/unittests/runtimes.cpp
+index 5a6155b5..4f7e5b74 100644
+--- a/unittests/runtimes.cpp
b/unittests/runtimes.cpp
+@@ -1,6 +1,6 @@
+ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+
+-#include
++#include
+ #include
+ #include
+
+diff --git a/unittests/scalable_pipelines.cpp
b/unittests/scalable_pipelines.cpp
+index 2534878b..e2073563 100644
+--- a/unittests/scalable_pipelines.cpp
b/unittests/scalable_pipelines.cpp
+@@ -1,6 +1,6 @@
+ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+
-#include
+#include
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: dc0c5937d2b610bf9fa9a44ae15f9a37150c9cf8
Author: Joonas Niilola gentoo org>
AuthorDate: Sun Jan 8 08:12:26 2023 +
Commit: Joonas Niilola gentoo org>
CommitDate: Sun Jan 8 08:12:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc0c5937
dev-cpp/taskflow: Stabilize 3.3.0 x86, #888421
Signed-off-by: Joonas Niilola gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index 7622706d17f6..27b159cb6268 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc ~x86"
+ KEYWORDS="amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/, dev-cpp/taskflow/files/
commit: 2bb3a523fe1c8418e1aa58ae8f37baa77a7c603e
Author: Matthias Maier gentoo org>
AuthorDate: Sun Dec 25 20:36:40 2022 +
Commit: Matthias Maier gentoo org>
CommitDate: Sun Dec 25 20:40:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb3a523
dev-cpp/taskflow: add 3.4.0
Signed-off-by: Matthias Maier gentoo.org>
dev-cpp/taskflow/Manifest | 1 +
.../files/taskflow-3.4.0-fix_doctest.patch | 377 +
dev-cpp/taskflow/taskflow-3.4.0.ebuild | 47 +++
3 files changed, 425 insertions(+)
diff --git a/dev-cpp/taskflow/Manifest b/dev-cpp/taskflow/Manifest
index 37d6816e4837..faea89a0e6f3 100644
--- a/dev-cpp/taskflow/Manifest
+++ b/dev-cpp/taskflow/Manifest
@@ -1 +1,2 @@
DIST taskflow-3.3.0.tar.gz 64446007 BLAKE2B
07878a03bd90af64914f1dc80850bcf5d4140f20ecfa998237039b6f37cc668e8c2b5dffafb75f4518209b3ac01f9935f5e30a020871334f131e6fe7654748bf
SHA512
08ab20bf38927d49c8332fc103cb7b4b6358efa06466cb8471f2004eb27b79b9eadc9971ec4acd110c8f369686b6f99bf3e21192285c3f28b9cb855bfd9ab0b5
+DIST taskflow-3.4.0.tar.gz 64152239 BLAKE2B
cec78155bc8db3ac7fb6e61ece8c1bb4697c6655122cdcd987405ce21b1f4f30570debda8a7cccf43d089bac791cb18654e829380e244addae2875ad4fdb47c5
SHA512
e0e3589feec65677c4de6583a70c14f90826f2177636010955c597a3232f7842431c697eae711318f4a64fae52ac3e33e2d0739ef36bb7c57698110b6fa4740d
diff --git a/dev-cpp/taskflow/files/taskflow-3.4.0-fix_doctest.patch
b/dev-cpp/taskflow/files/taskflow-3.4.0-fix_doctest.patch
new file mode 100644
index ..323d17e7f535
--- /dev/null
+++ b/dev-cpp/taskflow/files/taskflow-3.4.0-fix_doctest.patch
@@ -0,0 +1,377 @@
+diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt
+index 3397d798..1256e8e6 100644
+--- a/unittests/CMakeLists.txt
b/unittests/CMakeLists.txt
+@@ -1,6 +1,7 @@
+ enable_testing()
+
+-include(${TF_3RD_PARTY_DIR}/doctest/doctest.cmake)
++find_package(doctest REQUIRED)
++include(doctest)
+
+ list(APPEND TF_UNITTESTS
+ utility
+@@ -23,8 +24,7 @@ list(APPEND TF_UNITTESTS
+
+ foreach(unittest IN LISTS TF_UNITTESTS)
+ add_executable(${unittest} ${unittest}.cpp)
+- target_link_libraries(${unittest} ${PROJECT_NAME} tf::default_settings)
+- target_include_directories(${unittest} PRIVATE ${TF_3RD_PARTY_DIR}/doctest)
++ target_link_libraries(${unittest} ${PROJECT_NAME} tf::default_settings
doctest::doctest)
+ doctest_discover_tests(${unittest})
+ endforeach()
+
+diff --git a/unittests/algorithms.cpp b/unittests/algorithms.cpp
+index a250713a..09ae9ba5 100644
+--- a/unittests/algorithms.cpp
b/unittests/algorithms.cpp
+@@ -1,6 +1,6 @@
+ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+
+-#include
++#include
+ #include
+ #include
+ #include
+diff --git a/unittests/asyncs.cpp b/unittests/asyncs.cpp
+index 28eeaa8c..466687a2 100644
+--- a/unittests/asyncs.cpp
b/unittests/asyncs.cpp
+@@ -1,6 +1,6 @@
+ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+
+-#include
++#include
+ #include
+
+ //
+diff --git a/unittests/basics.cpp b/unittests/basics.cpp
+index f5b9e3dd..e93c3fd3 100644
+--- a/unittests/basics.cpp
b/unittests/basics.cpp
+@@ -1,6 +1,6 @@
+ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+
+-#include
++#include
+ #include
+ #include
+
+diff --git a/unittests/cancellation.cpp b/unittests/cancellation.cpp
+index 3ce1cb8c..6543ee52 100644
+--- a/unittests/cancellation.cpp
b/unittests/cancellation.cpp
+@@ -1,6 +1,6 @@
+ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+
+-#include
++#include
+ #include
+
+ // EmptyFuture
+diff --git a/unittests/compositions.cpp b/unittests/compositions.cpp
+index 4fd621b5..e3c91e4c 100644
+--- a/unittests/compositions.cpp
b/unittests/compositions.cpp
+@@ -1,6 +1,6 @@
+ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+
+-#include
++#include
+ #include
+
+ //
+diff --git a/unittests/control_flow.cpp b/unittests/control_flow.cpp
+index 024ace84..11206384 100644
+--- a/unittests/control_flow.cpp
b/unittests/control_flow.cpp
+@@ -1,6 +1,6 @@
+ #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
+
+-#include
++#include
+ #include
+
+ //
+diff --git a/unittests/cuda/CMakeLists.txt b/unittests/cuda/CMakeLists.txt
+index d0ccc8e9..ccb46721 100644
+--- a/unittests/cuda/CMakeLists.txt
b/unittests/cuda/CMakeLists.txt
+@@ -13,15 +13,14 @@ list(APPEND TF_CUDA_UNITTESTS
+
+ foreach(cudatest IN LISTS TF_CUDA_UNITTESTS)
+ add_executable(${cudatest} ${cudatest}.cu)
+- target_link_libraries(${cudatest} ${PROJECT_NAME} tf::default_settings)
+- target_include_directories(${cudatest} PRIVATE ${TF_3RD_PARTY_DIR}/doctest)
+-
++ target_link_libraries(${cudatest} ${PROJECT_NAME} tf::default_settings
doctest::doctest)
++
+ # avoid cmake 3.18+ warning
+ # we let nvcc to decide the flag if the architecture
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 125ef2be7ffb268a2b2eebbda7ae013929f5cf1b
Author: Arthur Zamarin gentoo org>
AuthorDate: Sun Dec 25 17:46:33 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sun Dec 25 17:46:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=125ef2be
dev-cpp/taskflow: Stabilize 3.3.0 sparc, #888421
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index 1ef054ec97a8..7622706d17f6 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: ef81712a8ca6834e861ab1d7b8d47246ef0e1cca
Author: Arthur Zamarin gentoo org>
AuthorDate: Sun Dec 25 17:35:15 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sun Dec 25 17:35:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef81712a
dev-cpp/taskflow: Stabilize 3.3.0 ppc64, #888421
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index 34b63ede55f7..1ef054ec97a8 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 arm arm64 ~ia64 ~mips ppc ~ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: ec2099b0cbe443ec74b5c4c6209635990827c4d6
Author: Arthur Zamarin gentoo org>
AuthorDate: Sun Dec 25 17:28:48 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sun Dec 25 17:28:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec2099b0
dev-cpp/taskflow: Stabilize 3.3.0 arm64, #888421
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index f40d190983d0..34b63ede55f7 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 arm ~arm64 ~ia64 ~mips ppc ~ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="amd64 arm arm64 ~ia64 ~mips ppc ~ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: eba57a286f283d5be2ed104d4710cb5e5c3578e9
Author: Arthur Zamarin gentoo org>
AuthorDate: Sun Dec 25 17:21:42 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sun Dec 25 17:21:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba57a28
dev-cpp/taskflow: Stabilize 3.3.0 ppc, #888421
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index dca7cb5c6422..f40d190983d0 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="amd64 arm ~arm64 ~ia64 ~mips ppc ~ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 5b0e793648032c9a3dd2baa5717c3354fd8471c8
Author: Arthur Zamarin gentoo org>
AuthorDate: Sun Dec 25 17:12:30 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Sun Dec 25 17:12:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b0e7936
dev-cpp/taskflow: Stabilize 3.3.0 arm, #888421
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index 319ffeffe0f2..dca7cb5c6422 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 64e100366ebca3de0ceda58cf29118ebc616afe4
Author: Sam James gentoo org>
AuthorDate: Sun Dec 25 17:02:55 2022 +
Commit: Sam James gentoo org>
CommitDate: Sun Dec 25 17:02:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e10036
dev-cpp/taskflow: Stabilize 3.3.0 amd64, #888421
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index c16c4f97e5b8..319ffeffe0f2 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 99c5688abbc136f5e7f43063bc887e3b56977472
Author: Matoro Mahri users noreply github
com>
AuthorDate: Tue Nov 29 20:00:31 2022 +
Commit: Sam James gentoo org>
CommitDate: Wed Nov 30 04:40:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99c5688a
dev-cpp/taskflow: Keyword 3.3.0 mips, #873814
Signed-off-by: Matoro Mahri users.noreply.github.com>
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index d11ec4039e9b..f08d60994f6d 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: d4a132c07d7e06a2a06ae1e893da4673a1ee4890
Author: Matoro Mahri users noreply github
com>
AuthorDate: Tue Nov 29 22:19:56 2022 +
Commit: Sam James gentoo org>
CommitDate: Wed Nov 30 04:40:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a132c0
dev-cpp/taskflow: Keyword 3.3.0 ia64, #873814
Signed-off-by: Matoro Mahri users.noreply.github.com>
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index f08d60994f6d..c16c4f97e5b8 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: a2ab0afd19d355a69a4c0ffdca03e37cf6966f03
Author: Arthur Zamarin gentoo org>
AuthorDate: Fri Nov 18 16:36:39 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Fri Nov 18 16:36:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2ab0afd
dev-cpp/taskflow: Keyword 3.3.0 sparc, #873814
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index 811aac778ea4..d11ec4039e9b 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: e22016581980327c4c7f12de15ce134fdb925d8d
Author: Arthur Zamarin gentoo org>
AuthorDate: Fri Nov 18 16:36:34 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Fri Nov 18 16:36:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2201658
dev-cpp/taskflow: Keyword 3.3.0 ppc64, #873814
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index d6128d40770b..811aac778ea4 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 55d06218540a11cf885d1ee4d0f8ba34d23af8ce
Author: Arthur Zamarin gentoo org>
AuthorDate: Fri Nov 18 16:36:29 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Fri Nov 18 16:36:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55d06218
dev-cpp/taskflow: Keyword 3.3.0 ppc, #873814
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index d676dcea921a..d6128d40770b 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: 976bfc46f0df40e002c2f465d6d09fb26573b086
Author: Arthur Zamarin gentoo org>
AuthorDate: Fri Nov 18 16:36:23 2022 +
Commit: Arthur Zamarin gentoo org>
CommitDate: Fri Nov 18 16:36:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=976bfc46
dev-cpp/taskflow: Keyword 3.3.0 arm64, #873814
Signed-off-by: Arthur Zamarin gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index 90c7c0a78d6d..d676dcea921a 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: d01738e24b535571c778612eeae5f0eb3b8ddc6d
Author: Sam James gentoo org>
AuthorDate: Sat Oct 29 19:41:33 2022 +
Commit: Sam James gentoo org>
CommitDate: Sat Oct 29 19:41:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d01738e2
dev-cpp/taskflow: Keyword 3.3.0 arm, #873814
Signed-off-by: Sam James gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index 2082d0df3f00..90c7c0a78d6d 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~riscv ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/
commit: ba09fe7874cb18be657e862b72ae8e9aa0f4d67e
Author: Jakov Smolić gentoo org>
AuthorDate: Tue Oct 4 19:24:47 2022 +
Commit: Jakov Smolić gentoo org>
CommitDate: Tue Oct 4 19:24:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba09fe78
dev-cpp/taskflow: Keyword 3.3.0 riscv, #873814
Signed-off-by: Jakov Smolić gentoo.org>
dev-cpp/taskflow/taskflow-3.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
index c131483350c0..2082d0df3f00 100644
--- a/dev-cpp/taskflow/taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ]]; then
S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="~amd64 ~riscv ~x86"
S="${WORKDIR}/taskflow-${PV}"
fi
[gentoo-commits] repo/gentoo:master commit in: dev-cpp/taskflow/, dev-cpp/cpp-taskflow/files/, dev-cpp/taskflow/files/, ...
commit: a91e29a052cbd5df6d274033d090c9c3b34d0128
Author: Matthias Maier gentoo org>
AuthorDate: Wed May 18 03:21:16 2022 +
Commit: Matthias Maier gentoo org>
CommitDate: Wed May 18 03:25:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91e29a0
Rename dev-cpp/{cpp-taskflow → taskflow}
Signed-off-by: Matthias Maier gentoo.org>
dev-cpp/cpp-taskflow/Manifest | 1 -
dev-cpp/taskflow/Manifest | 1 +
.../files/taskflow-3.3.0-fix_doctest.patch} | 0
.../files/taskflow--fix_doctest.patch}| 0
dev-cpp/{cpp-taskflow => taskflow}/metadata.xml | 4 ++--
.../cpp-taskflow-.ebuild => taskflow/taskflow-3.3.0.ebuild} | 8
.../cpp-taskflow-3.3.0.ebuild => taskflow/taskflow-.ebuild} | 8
profiles/updates/2Q-2022 | 1 +
sci-libs/dealii/dealii-.ebuild| 2 +-
9 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/dev-cpp/cpp-taskflow/Manifest b/dev-cpp/cpp-taskflow/Manifest
deleted file mode 100644
index d70f06ff30fb..
--- a/dev-cpp/cpp-taskflow/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST cpp-taskflow-3.3.0.tar.gz 64446007 BLAKE2B
07878a03bd90af64914f1dc80850bcf5d4140f20ecfa998237039b6f37cc668e8c2b5dffafb75f4518209b3ac01f9935f5e30a020871334f131e6fe7654748bf
SHA512
08ab20bf38927d49c8332fc103cb7b4b6358efa06466cb8471f2004eb27b79b9eadc9971ec4acd110c8f369686b6f99bf3e21192285c3f28b9cb855bfd9ab0b5
diff --git a/dev-cpp/taskflow/Manifest b/dev-cpp/taskflow/Manifest
new file mode 100644
index ..37d6816e4837
--- /dev/null
+++ b/dev-cpp/taskflow/Manifest
@@ -0,0 +1 @@
+DIST taskflow-3.3.0.tar.gz 64446007 BLAKE2B
07878a03bd90af64914f1dc80850bcf5d4140f20ecfa998237039b6f37cc668e8c2b5dffafb75f4518209b3ac01f9935f5e30a020871334f131e6fe7654748bf
SHA512
08ab20bf38927d49c8332fc103cb7b4b6358efa06466cb8471f2004eb27b79b9eadc9971ec4acd110c8f369686b6f99bf3e21192285c3f28b9cb855bfd9ab0b5
diff --git a/dev-cpp/cpp-taskflow/files/cpp-taskflow-3.3.0-fix_doctest.patch
b/dev-cpp/taskflow/files/taskflow-3.3.0-fix_doctest.patch
similarity index 100%
rename from dev-cpp/cpp-taskflow/files/cpp-taskflow-3.3.0-fix_doctest.patch
rename to dev-cpp/taskflow/files/taskflow-3.3.0-fix_doctest.patch
diff --git a/dev-cpp/cpp-taskflow/files/cpp-taskflow--fix_doctest.patch
b/dev-cpp/taskflow/files/taskflow--fix_doctest.patch
similarity index 100%
rename from dev-cpp/cpp-taskflow/files/cpp-taskflow--fix_doctest.patch
rename to dev-cpp/taskflow/files/taskflow--fix_doctest.patch
diff --git a/dev-cpp/cpp-taskflow/metadata.xml b/dev-cpp/taskflow/metadata.xml
similarity index 80%
rename from dev-cpp/cpp-taskflow/metadata.xml
rename to dev-cpp/taskflow/metadata.xml
index 5b4c8bac454b..059a58ff11cd 100644
--- a/dev-cpp/cpp-taskflow/metadata.xml
+++ b/dev-cpp/taskflow/metadata.xml
@@ -10,11 +10,11 @@
Gentoo Science Project
- Cpp-Taskflow is faster, more expressive, and easier for drop-in
+ Taskflow is faster, more expressive, and easier for drop-in
integration than many of existing task programming frameworks in
handling complex parallel workloads.
- cpp-taskflow/cpp-taskflow
+ taskflow/taskflow
diff --git a/dev-cpp/cpp-taskflow/cpp-taskflow-.ebuild
b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
similarity index 80%
rename from dev-cpp/cpp-taskflow/cpp-taskflow-.ebuild
rename to dev-cpp/taskflow/taskflow-3.3.0.ebuild
index a00e95ad6e52..c131483350c0 100644
--- a/dev-cpp/cpp-taskflow/cpp-taskflow-.ebuild
+++ b/dev-cpp/taskflow/taskflow-3.3.0.ebuild
@@ -6,11 +6,11 @@ EAPI=8
inherit cmake
DESCRIPTION="Modern C++ Parallel Task Programming"
-HOMEPAGE="https://cpp-taskflow.github.io";
+HOMEPAGE="https://taskflow.github.io";
if [[ ${PV} == ]]; then
- EGIT_REPO_URI="https://github.com/cpp-taskflow/${PN}.git";
+ EGIT_REPO_URI="https://github.com/taskflow/${PN}.git";
inherit git-r3
- S="${WORKDIR}/cpp-taskflow-${PV}"
+ S="${WORKDIR}/taskflow-${PV}"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz ->
${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
@@ -27,7 +27,7 @@ DEPEND="test? ( dev-cpp/doctest )"
HTML_DOCS=( docs/. )
PATCHES=(
- "${FILESDIR}"/cpp-taskflow--fix_doctest.patch
+ "${FILESDIR}"/taskflow-3.3.0-fix_doctest.patch
)
src_prepare() {
diff --git a/dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild
b/dev-cpp/taskflow/taskflow-.ebuild
similarity index 80%
rename from dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild
rename to dev-cpp/taskflow/taskflow-.ebuild
index 649d2fa20cc2..67272062e500 100644
--- a/dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild
+++ b/dev-cpp/taskflow/taskflow-9
