svn commit: r560405 - in head/devel: . aws-c-io
Danilo Egea Gondolfo
danilo at FreeBSD.org
Tue Jan 5 15:11:33 UTC 2021
Author: danilo
Date: Tue Jan 5 15:11:31 2021
New Revision: 560405
URL: https://svnweb.freebsd.org/changeset/ports/560405
Log:
New port: devel/aws-c-io
aws-c-io is an event driven framework for implementing application protocols.
It is built on top of cross-platform abstractions that allow you as a developer
to think only about the state machine and API for your protocols.
Added:
head/devel/aws-c-io/
head/devel/aws-c-io/Makefile (contents, props changed)
head/devel/aws-c-io/distinfo (contents, props changed)
head/devel/aws-c-io/pkg-descr (contents, props changed)
head/devel/aws-c-io/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Jan 5 15:08:29 2021 (r560404)
+++ head/devel/Makefile Tue Jan 5 15:11:31 2021 (r560405)
@@ -212,6 +212,7 @@
SUBDIR += awless
SUBDIR += aws-c-common
SUBDIR += aws-c-event-stream
+ SUBDIR += aws-c-io
SUBDIR += aws-checksums
SUBDIR += aws-sdk-cpp
SUBDIR += aws-sdk-php
Added: head/devel/aws-c-io/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/aws-c-io/Makefile Tue Jan 5 15:11:31 2021 (r560405)
@@ -0,0 +1,26 @@
+# Created by: Danilo Egea Gondolfo <danilo at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= aws-c-io
+PORTVERSION= 0.7.1
+DISTVERSIONPREFIX= v
+CATEGORIES= devel
+
+MAINTAINER= danilo at FreeBSD.org
+COMMENT= Event driven framework for implementing application protocols
+
+LICENSE= APACHE20
+
+LIB_DEPENDS= libaws-c-common.so:devel/aws-c-common \
+ libaws-c-cal.so:security/aws-c-cal \
+ libs2n.so:security/s2n
+
+USES= cmake compiler:c11 ssl
+
+USE_GITHUB= yes
+GH_ACCOUNT= awslabs
+
+CMAKE_ARGS+= -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_LIBDIR=${LOCALBASE}/lib
+USE_LDCONFIG= yes
+
+.include <bsd.port.mk>
Added: head/devel/aws-c-io/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/aws-c-io/distinfo Tue Jan 5 15:11:31 2021 (r560405)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609766033
+SHA256 (awslabs-aws-c-io-v0.7.1_GH0.tar.gz) = e97a78b8e3e9b91c44dc9759ad6fc522368363d642e446f9e7919612ba83cf9e
+SIZE (awslabs-aws-c-io-v0.7.1_GH0.tar.gz) = 562912
Added: head/devel/aws-c-io/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/aws-c-io/pkg-descr Tue Jan 5 15:11:31 2021 (r560405)
@@ -0,0 +1,5 @@
+aws-c-io is an event driven framework for implementing application protocols.
+It is built on top of cross-platform abstractions that allow you as a developer
+to think only about the state machine and API for your protocols.
+
+WWW: https://github.com/awslabs/aws-c-io
Added: head/devel/aws-c-io/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/aws-c-io/pkg-plist Tue Jan 5 15:11:31 2021 (r560405)
@@ -0,0 +1,25 @@
+include/aws/io/channel.h
+include/aws/io/channel_bootstrap.h
+include/aws/io/event_loop.h
+include/aws/io/exports.h
+include/aws/io/file_utils.h
+include/aws/io/host_resolver.h
+include/aws/io/io.h
+include/aws/io/logging.h
+include/aws/io/message_pool.h
+include/aws/io/pipe.h
+include/aws/io/pki_utils.h
+include/aws/io/retry_strategy.h
+include/aws/io/shared_library.h
+include/aws/io/socket.h
+include/aws/io/socket_channel_handler.h
+include/aws/io/statistics.h
+include/aws/io/stream.h
+include/aws/io/tls_channel_handler.h
+include/aws/io/uri.h
+include/aws/testing/io_testing_channel.h
+lib/aws-c-io/cmake/aws-c-io-config.cmake
+lib/aws-c-io/cmake/shared/aws-c-io-targets-release.cmake
+lib/aws-c-io/cmake/shared/aws-c-io-targets.cmake
+lib/libaws-c-io.so
+lib/libaws-c-io.so.1.0.0
More information about the svn-ports-all
mailing list