From owner-svn-ports-head@freebsd.org Mon Aug 31 00:42:07 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A34DB3D0C6E; Mon, 31 Aug 2020 00:42:07 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bfrxq3sxBz3YPN; Mon, 31 Aug 2020 00:42:07 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 688C01F1F2; Mon, 31 Aug 2020 00:42:07 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07V0g7kX062982; Mon, 31 Aug 2020 00:42:07 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07V0g6BC062977; Mon, 31 Aug 2020 00:42:06 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202008310042.07V0g6BC062977@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 31 Aug 2020 00:42:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r547138 - in head/devel: . taskflow X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . taskflow X-SVN-Commit-Revision: 547138 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Aug 2020 00:42:07 -0000 Author: yuri Date: Mon Aug 31 00:42:06 2020 New Revision: 547138 URL: https://svnweb.freebsd.org/changeset/ports/547138 Log: New port: devel/taskflow: Header-only library for parallel tasks in modern C++ Added: head/devel/taskflow/ head/devel/taskflow/Makefile (contents, props changed) head/devel/taskflow/distinfo (contents, props changed) head/devel/taskflow/pkg-descr (contents, props changed) head/devel/taskflow/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 31 00:40:55 2020 (r547137) +++ head/devel/Makefile Mon Aug 31 00:42:06 2020 (r547138) @@ -6678,6 +6678,7 @@ SUBDIR += tablist SUBDIR += tailor SUBDIR += talloc + SUBDIR += taskflow SUBDIR += tass64 SUBDIR += tbb SUBDIR += tcl-memchan Added: head/devel/taskflow/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/taskflow/Makefile Mon Aug 31 00:42:06 2020 (r547138) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= taskflow +DISTVERSIONPREFIX= v +DISTVERSION= 2.6.0 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Header-only library for parallel tasks in modern C++ + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake +USE_GITHUB= yes + +CMAKE_OFF= TF_BUILD_CUDA TF_BUILD_TESTS TF_BUILD_EXAMPLES + +NO_ARCH= yes + +do-test: + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTING:BOOL=ON -DTF_BUILD_TESTS:BOOL=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test + +.include Added: head/devel/taskflow/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/taskflow/distinfo Mon Aug 31 00:42:06 2020 (r547138) @@ -0,0 +1,3 @@ +TIMESTAMP = 1598833706 +SHA256 (taskflow-taskflow-v2.6.0_GH0.tar.gz) = 2f511f4291653d759af12a7854babcebf57cfbb8b49bf6cd3eb0dd98a1a4039c +SIZE (taskflow-taskflow-v2.6.0_GH0.tar.gz) = 68626469 Added: head/devel/taskflow/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/taskflow/pkg-descr Mon Aug 31 00:42:06 2020 (r547138) @@ -0,0 +1,5 @@ +Taskflow is faster, more expressive, and easier for drop-in integration than +many of existing task programming frameworks in handling complex parallel +workloads. + +WWW: https://github.com/taskflow/taskflow Added: head/devel/taskflow/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/taskflow/pkg-plist Mon Aug 31 00:42:06 2020 (r547138) @@ -0,0 +1,33 @@ +include/taskflow/algorithm/for_each.hpp +include/taskflow/algorithm/reduce.hpp +include/taskflow/core/error.hpp +include/taskflow/core/executor.hpp +include/taskflow/core/flow_builder.hpp +include/taskflow/core/graph.hpp +include/taskflow/core/notifier.hpp +include/taskflow/core/observer.hpp +include/taskflow/core/task.hpp +include/taskflow/core/taskflow.hpp +include/taskflow/core/topology.hpp +include/taskflow/core/tsq.hpp +include/taskflow/cuda/cuda_device.hpp +include/taskflow/cuda/cuda_error.hpp +include/taskflow/cuda/cuda_flow.hpp +include/taskflow/cuda/cuda_graph.hpp +include/taskflow/cuda/cuda_task.hpp +include/taskflow/declarations.hpp +include/taskflow/nstd/any.hpp +include/taskflow/nstd/optional.hpp +include/taskflow/nstd/variant.hpp +include/taskflow/taskflow.hpp +include/taskflow/utility/iterator.hpp +include/taskflow/utility/object_pool.hpp +include/taskflow/utility/os.hpp +include/taskflow/utility/passive_vector.hpp +include/taskflow/utility/singleton.hpp +include/taskflow/utility/stringify.hpp +include/taskflow/utility/traits.hpp +include/taskflow/utility/uuid.hpp +lib/cmake/Taskflow/TaskflowConfig.cmake +lib/cmake/Taskflow/TaskflowConfigVersion.cmake +lib/cmake/Taskflow/TaskflowTargets.cmake