From owner-svn-ports-head@freebsd.org Sun Nov 3 01:43:52 2019 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 6C34717F6F7; Sun, 3 Nov 2019 01:43:52 +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) server-signature RSA-PSS (4096 bits) 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 475JcS2G8Mz4Svp; Sun, 3 Nov 2019 01:43:52 +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 311F7482D; Sun, 3 Nov 2019 01:43:52 +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 xA31hqRX063391; Sun, 3 Nov 2019 01:43:52 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xA31hpKV063386; Sun, 3 Nov 2019 01:43:51 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201911030143.xA31hpKV063386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 3 Nov 2019 01:43:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516381 - in head/devel: . asyncplusplus X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . asyncplusplus X-SVN-Commit-Revision: 516381 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.29 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: Sun, 03 Nov 2019 01:43:52 -0000 Author: yuri Date: Sun Nov 3 01:43:50 2019 New Revision: 516381 URL: https://svnweb.freebsd.org/changeset/ports/516381 Log: New port: devel/asyncplusplus: Async++ concurrency framework for C++11 Added: head/devel/asyncplusplus/ head/devel/asyncplusplus/Makefile (contents, props changed) head/devel/asyncplusplus/distinfo (contents, props changed) head/devel/asyncplusplus/pkg-descr (contents, props changed) head/devel/asyncplusplus/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Nov 3 01:42:13 2019 (r516380) +++ head/devel/Makefile Sun Nov 3 01:43:50 2019 (r516381) @@ -174,6 +174,7 @@ SUBDIR += asmx SUBDIR += astah-community SUBDIR += astyle + SUBDIR += asyncplusplus SUBDIR += atf SUBDIR += atlas SUBDIR += atlas-devel Added: head/devel/asyncplusplus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/asyncplusplus/Makefile Sun Nov 3 01:43:50 2019 (r516381) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= asyncplusplus +DISTVERSIONPREFIX= v +DISTVERSION= 1.0-11 +DISTVERSIONSUFFIX= -gb78d0c2 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Async++ concurrency framework for C++11 + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake compiler:c++11-lang +USE_GITHUB= yes +GH_ACCOUNT= Amanieu +USE_LDCONFIG= yes + +.include Added: head/devel/asyncplusplus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/asyncplusplus/distinfo Sun Nov 3 01:43:50 2019 (r516381) @@ -0,0 +1,3 @@ +TIMESTAMP = 1572745368 +SHA256 (Amanieu-asyncplusplus-v1.0-11-gb78d0c2_GH0.tar.gz) = 652df28440b7e09da0cc3812760257cc116444276392e6b19db567a2557ffd5a +SIZE (Amanieu-asyncplusplus-v1.0-11-gb78d0c2_GH0.tar.gz) = 33813 Added: head/devel/asyncplusplus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/asyncplusplus/pkg-descr Sun Nov 3 01:43:50 2019 (r516381) @@ -0,0 +1,4 @@ +sync++ is a lightweight concurrency framework for C++11. The concept was +inspired by the Microsoft PPL library and the N3428 C++ standard proposal. + +WWW: https://github.com/Amanieu/asyncplusplus Added: head/devel/asyncplusplus/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/asyncplusplus/pkg-plist Sun Nov 3 01:43:50 2019 (r516381) @@ -0,0 +1,20 @@ +cmake/Async++-%%CMAKE_BUILD_TYPE%%.cmake +cmake/Async++.cmake +cmake/Async++Config.cmake +include/async++.h +include/async++/aligned_alloc.h +include/async++/cancel.h +include/async++/continuation_vector.h +include/async++/parallel_for.h +include/async++/parallel_invoke.h +include/async++/parallel_reduce.h +include/async++/partitioner.h +include/async++/range.h +include/async++/ref_count.h +include/async++/scheduler.h +include/async++/scheduler_fwd.h +include/async++/task.h +include/async++/task_base.h +include/async++/traits.h +include/async++/when_all_any.h +lib/libasync++.so