mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
Add actor-framework.
This commit is contained in:
parent
1317da0eec
commit
b183351843
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=376818
@ -39,6 +39,7 @@
|
||||
SUBDIR += ace+tao-doc
|
||||
SUBDIR += acme
|
||||
SUBDIR += activitymail
|
||||
SUBDIR += actor-framework
|
||||
SUBDIR += adabooch
|
||||
SUBDIR += adacurses
|
||||
SUBDIR += adime
|
||||
|
22
devel/actor-framework/Makefile
Normal file
22
devel/actor-framework/Makefile
Normal file
@ -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 <bsd.port.mk>
|
2
devel/actor-framework/distinfo
Normal file
2
devel/actor-framework/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (actor-framework-0.12.1.tar.gz) = 46507d5939c74eeec8bb8611755d813310136bab4992509c48a309146d246f5f
|
||||
SIZE (actor-framework-0.12.1.tar.gz) = 524790
|
5
devel/actor-framework/pkg-descr
Normal file
5
devel/actor-framework/pkg-descr
Normal file
@ -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/
|
210
devel/actor-framework/pkg-plist
Normal file
210
devel/actor-framework/pkg-plist
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user