Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Nov 2019 01:43:51 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r516381 - in head/devel: . asyncplusplus
Message-ID:  <201911030143.xA31hpKV063386@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911030143.xA31hpKV063386>