From owner-svn-ports-all@FreeBSD.ORG Mon Jan 12 09:23:28 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F12E5D43; Mon, 12 Jan 2015 09:23:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB51DE3D; Mon, 12 Jan 2015 09:23:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0C9NRBI094971; Mon, 12 Jan 2015 09:23:27 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0C9NQSR094960; Mon, 12 Jan 2015 09:23:26 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201501120923.t0C9NQSR094960@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Mon, 12 Jan 2015 09:23:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376818 - in head/devel: . actor-framework X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jan 2015 09:23:28 -0000 Author: vanilla Date: Mon Jan 12 09:23:25 2015 New Revision: 376818 URL: https://svnweb.freebsd.org/changeset/ports/376818 QAT: https://qat.redports.org/buildarchive/r376818/ Log: Add actor-framework. Added: head/devel/actor-framework/ head/devel/actor-framework/Makefile (contents, props changed) head/devel/actor-framework/distinfo (contents, props changed) head/devel/actor-framework/pkg-descr (contents, props changed) head/devel/actor-framework/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jan 12 08:09:09 2015 (r376817) +++ head/devel/Makefile Mon Jan 12 09:23:25 2015 (r376818) @@ -39,6 +39,7 @@ SUBDIR += ace+tao-doc SUBDIR += acme SUBDIR += activitymail + SUBDIR += actor-framework SUBDIR += adabooch SUBDIR += adacurses SUBDIR += adime Added: head/devel/actor-framework/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/actor-framework/Makefile Mon Jan 12 09:23:25 2015 (r376818) @@ -0,0 +1,22 @@ +# Created by: vanilla@ +# $FreeBSD$ + +PORTNAME= actor-framework +PORTVERSION= 0.12.1 +CATEGORIES= devel net +MASTER_SITES= GH + +MAINTAINER= vanilla@FreeBSD.org +COMMENT= C++ actor framework + +LICENSE= BSD3CLAUSE + +CXXFLAGS+= -std=c++11 +LDFLAGS+= -pthread +USES= compiler:c++11-lang cmake:outsource +USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= ${PORTNAME} +GH_COMMIT= 56ad470 + +.include Added: head/devel/actor-framework/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/actor-framework/distinfo Mon Jan 12 09:23:25 2015 (r376818) @@ -0,0 +1,2 @@ +SHA256 (actor-framework-0.12.1.tar.gz) = 46507d5939c74eeec8bb8611755d813310136bab4992509c48a309146d246f5f +SIZE (actor-framework-0.12.1.tar.gz) = 524790 Added: head/devel/actor-framework/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/actor-framework/pkg-descr Mon Jan 12 09:23:25 2015 (r376818) @@ -0,0 +1,5 @@ +Actors in CAF are lightweight, consist of only a few hundred bytes, +and are cooperatively managed by a state-of-the-art, work-stealing scheduler. +You can spawn literally millions of actors if you want to. + +WWW: http://actor-framework.org/ Added: head/devel/actor-framework/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/actor-framework/pkg-plist Mon Jan 12 09:23:25 2015 (r376818) @@ -0,0 +1,210 @@ +include/caf/abstract_actor.hpp +include/caf/abstract_channel.hpp +include/caf/abstract_group.hpp +include/caf/actor.hpp +include/caf/actor_addr.hpp +include/caf/actor_cast.hpp +include/caf/actor_companion.hpp +include/caf/actor_namespace.hpp +include/caf/actor_ostream.hpp +include/caf/actor_proxy.hpp +include/caf/all.hpp +include/caf/announce.hpp +include/caf/anything.hpp +include/caf/atom.hpp +include/caf/attachable.hpp +include/caf/await_all_actors_done.hpp +include/caf/behavior.hpp +include/caf/behavior_policy.hpp +include/caf/binary_deserializer.hpp +include/caf/binary_serializer.hpp +include/caf/blocking_actor.hpp +include/caf/channel.hpp +include/caf/check_typed_input.hpp +include/caf/config.hpp +include/caf/continue_helper.hpp +include/caf/default_attachable.hpp +include/caf/deserializer.hpp +include/caf/detail/abstract_uniform_type_info.hpp +include/caf/detail/actor_registry.hpp +include/caf/detail/apply_args.hpp +include/caf/detail/arg_match_t.hpp +include/caf/detail/atom_val.hpp +include/caf/detail/behavior_impl.hpp +include/caf/detail/behavior_stack.hpp +include/caf/detail/boxed.hpp +include/caf/detail/comparable.hpp +include/caf/detail/ctm.hpp +include/caf/detail/decorated_tuple.hpp +include/caf/detail/default_uniform_type_info.hpp +include/caf/detail/disablable_delete.hpp +include/caf/detail/double_ended_queue.hpp +include/caf/detail/functor_attachable.hpp +include/caf/detail/get_mac_addresses.hpp +include/caf/detail/get_root_uuid.hpp +include/caf/detail/group_manager.hpp +include/caf/detail/ieee_754.hpp +include/caf/detail/implicit_conversions.hpp +include/caf/detail/int_list.hpp +include/caf/detail/left_or_right.hpp +include/caf/detail/lifted_fun.hpp +include/caf/detail/limited_vector.hpp +include/caf/detail/logging.hpp +include/caf/detail/make_counted.hpp +include/caf/detail/memory.hpp +include/caf/detail/message_data.hpp +include/caf/detail/message_iterator.hpp +include/caf/detail/proper_actor.hpp +include/caf/detail/pseudo_tuple.hpp +include/caf/detail/purge_refs.hpp +include/caf/detail/raw_access.hpp +include/caf/detail/ripemd_160.hpp +include/caf/detail/safe_equal.hpp +include/caf/detail/scope_guard.hpp +include/caf/detail/shared_spinlock.hpp +include/caf/detail/single_reader_queue.hpp +include/caf/detail/singleton_mixin.hpp +include/caf/detail/singletons.hpp +include/caf/detail/sync_request_bouncer.hpp +include/caf/detail/tbind.hpp +include/caf/detail/try_match.hpp +include/caf/detail/tuple_vals.hpp +include/caf/detail/tuple_zip.hpp +include/caf/detail/type_list.hpp +include/caf/detail/type_pair.hpp +include/caf/detail/type_traits.hpp +include/caf/detail/typed_actor_util.hpp +include/caf/detail/types_array.hpp +include/caf/detail/unboxed.hpp +include/caf/detail/uniform_type_info_map.hpp +include/caf/detail/variant_data.hpp +include/caf/detail/wrapped.hpp +include/caf/duration.hpp +include/caf/either.hpp +include/caf/event_based_actor.hpp +include/caf/exception.hpp +include/caf/execution_unit.hpp +include/caf/exit_reason.hpp +include/caf/extend.hpp +include/caf/forwarding_actor_proxy.hpp +include/caf/from_string.hpp +include/caf/fwd.hpp +include/caf/group.hpp +include/caf/illegal_message_element.hpp +include/caf/intrusive_ptr.hpp +include/caf/io/accept_handle.hpp +include/caf/io/all.hpp +include/caf/io/asio_network.hpp +include/caf/io/basp.hpp +include/caf/io/basp_broker.hpp +include/caf/io/broker.hpp +include/caf/io/connection_handle.hpp +include/caf/io/fwd.hpp +include/caf/io/handle.hpp +include/caf/io/hook.hpp +include/caf/io/max_msg_size.hpp +include/caf/io/middleman.hpp +include/caf/io/network/acceptor_manager.hpp +include/caf/io/network/default_multiplexer.hpp +include/caf/io/network/manager.hpp +include/caf/io/network/multiplexer.hpp +include/caf/io/network/native_socket.hpp +include/caf/io/network/operation.hpp +include/caf/io/network/stream_manager.hpp +include/caf/io/publish.hpp +include/caf/io/publish_local_groups.hpp +include/caf/io/receive_policy.hpp +include/caf/io/remote_actor.hpp +include/caf/io/remote_group.hpp +include/caf/io/spawn_io.hpp +include/caf/io/system_messages.hpp +include/caf/io/unpublish.hpp +include/caf/local_actor.hpp +include/caf/locks.hpp +include/caf/mailbox_element.hpp +include/caf/match.hpp +include/caf/match_expr.hpp +include/caf/may_have_timeout.hpp +include/caf/memory_managed.hpp +include/caf/message.hpp +include/caf/message_builder.hpp +include/caf/message_handler.hpp +include/caf/message_id.hpp +include/caf/message_priority.hpp +include/caf/mixin/actor_widget.hpp +include/caf/mixin/behavior_stack_based.hpp +include/caf/mixin/functor_based.hpp +include/caf/mixin/mailbox_based.hpp +include/caf/mixin/memory_cached.hpp +include/caf/mixin/single_timeout.hpp +include/caf/mixin/sync_sender.hpp +include/caf/node_id.hpp +include/caf/none.hpp +include/caf/on.hpp +include/caf/optional.hpp +include/caf/policy/actor_policies.hpp +include/caf/policy/cooperative_scheduling.hpp +include/caf/policy/event_based_resume.hpp +include/caf/policy/invoke_policy.hpp +include/caf/policy/middleman_scheduling.hpp +include/caf/policy/nestable_invoke.hpp +include/caf/policy/no_resume.hpp +include/caf/policy/no_scheduling.hpp +include/caf/policy/not_prioritizing.hpp +include/caf/policy/prioritizing.hpp +include/caf/policy/priority_policy.hpp +include/caf/policy/resume_policy.hpp +include/caf/policy/scheduler_policy.hpp +include/caf/policy/scheduling_policy.hpp +include/caf/policy/sequential_invoke.hpp +include/caf/policy/work_stealing.hpp +include/caf/primitive_variant.hpp +include/caf/ref_counted.hpp +include/caf/replies_to.hpp +include/caf/response_handle.hpp +include/caf/response_promise.hpp +include/caf/resumable.hpp +include/caf/sb_actor.hpp +include/caf/scheduler.hpp +include/caf/scheduler/abstract_coordinator.hpp +include/caf/scheduler/coordinator.hpp +include/caf/scheduler/worker.hpp +include/caf/scoped_actor.hpp +include/caf/send.hpp +include/caf/serializer.hpp +include/caf/set_scheduler.hpp +include/caf/shutdown.hpp +include/caf/skip_message.hpp +include/caf/spawn.hpp +include/caf/spawn_fwd.hpp +include/caf/spawn_options.hpp +include/caf/string_algorithms.hpp +include/caf/string_serialization.hpp +include/caf/system_messages.hpp +include/caf/timeout_definition.hpp +include/caf/to_string.hpp +include/caf/type_name_access.hpp +include/caf/typed_actor.hpp +include/caf/typed_behavior.hpp +include/caf/typed_continue_helper.hpp +include/caf/typed_event_based_actor.hpp +include/caf/uniform_type_info.hpp +include/caf/uniform_typeid.hpp +include/caf/unit.hpp +include/caf/variant.hpp +include/caf/wildcard_position.hpp +include/cppa/any_tuple.hpp +include/cppa/cow_tuple.hpp +include/cppa/cppa.hpp +include/cppa/cppa_fwd.hpp +include/cppa/opt.hpp +include/cppa/opt_impls.hpp +include/cppa/publish_local_groups.hpp +include/cppa/spawn_io.hpp +include/cppa/tuple_cast.hpp +lib/libcaf_core.so +lib/libcaf_core.so.0 +lib/libcaf_core.so.0.12.1 +lib/libcaf_io.so +lib/libcaf_io.so.0 +lib/libcaf_io.so.0.12.1