Date: Tue, 2 Dec 2014 09:37:42 +0000 (UTC) From: Tilman Keskinoz <arved@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373759 - in head/devel: . websocketpp Message-ID: <201412020937.sB29bgjj014896@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: arved Date: Tue Dec 2 09:37:42 2014 New Revision: 373759 URL: https://svnweb.freebsd.org/changeset/ports/373759 QAT: https://qat.redports.org/buildarchive/r373759/ Log: Add Websocketpp a C++ implementation of the Websocket protocol Added: head/devel/websocketpp/ head/devel/websocketpp/Makefile (contents, props changed) head/devel/websocketpp/distinfo (contents, props changed) head/devel/websocketpp/pkg-descr (contents, props changed) head/devel/websocketpp/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Dec 2 09:21:49 2014 (r373758) +++ head/devel/Makefile Tue Dec 2 09:37:42 2014 (r373759) @@ -4807,6 +4807,7 @@ SUBDIR += vtcl SUBDIR += vxlog SUBDIR += wand-libconfig + SUBDIR += websocketpp SUBDIR += websvn SUBDIR += wininfo SUBDIR += winpdb Added: head/devel/websocketpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/websocketpp/Makefile Tue Dec 2 09:37:42 2014 (r373759) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= websocketpp +PORTVERSION= 0.4.0 +CATEGORIES= devel + +MAINTAINER= arved@FreeBSD.org +COMMENT= Header only implementation of the WebSocket protocol + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +USE_GITHUB= yes +GH_ACCOUNT= zaphoyd +GH_PROJECT= websocketpp +GH_TAGNAME= 0.4.0 +GH_COMMIT= 802e34b +USES= cmake + +.include <bsd.port.mk> Added: head/devel/websocketpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/websocketpp/distinfo Tue Dec 2 09:37:42 2014 (r373759) @@ -0,0 +1,2 @@ +SHA256 (websocketpp-0.4.0.tar.gz) = 0e21d29b7b21009f6fe6930a2fb4898e71e41b0c5b77ef6a578ffa5f6d2f4e5b +SIZE (websocketpp-0.4.0.tar.gz) = 628705 Added: head/devel/websocketpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/websocketpp/pkg-descr Tue Dec 2 09:37:42 2014 (r373759) @@ -0,0 +1,8 @@ +WebSocket++ is an open source (BSD license) header only C++ library that +implements RFC6455 The WebSocket Protocol. + +It allows integrating WebSocket client and server functionality into +C++ programs. It uses interchangable network transport modules including +one based on C++ iostreams and one based on Boost Asio. + +WWW: http://www.zaphoyd.com/websocketpp/ Added: head/devel/websocketpp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/websocketpp/pkg-plist Tue Dec 2 09:37:42 2014 (r373759) @@ -0,0 +1,89 @@ +include/websocketpp/base64/base64.hpp +include/websocketpp/client.hpp +include/websocketpp/close.hpp +include/websocketpp/common/chrono.hpp +include/websocketpp/common/connection_hdl.hpp +include/websocketpp/common/cpp11.hpp +include/websocketpp/common/functional.hpp +include/websocketpp/common/md5.hpp +include/websocketpp/common/memory.hpp +include/websocketpp/common/network.hpp +include/websocketpp/common/platforms.hpp +include/websocketpp/common/random.hpp +include/websocketpp/common/regex.hpp +include/websocketpp/common/stdint.hpp +include/websocketpp/common/system_error.hpp +include/websocketpp/common/thread.hpp +include/websocketpp/common/time.hpp +include/websocketpp/concurrency/basic.hpp +include/websocketpp/concurrency/none.hpp +include/websocketpp/config/asio.hpp +include/websocketpp/config/asio_client.hpp +include/websocketpp/config/asio_no_tls.hpp +include/websocketpp/config/asio_no_tls_client.hpp +include/websocketpp/config/boost_config.hpp +include/websocketpp/config/core.hpp +include/websocketpp/config/core_client.hpp +include/websocketpp/config/debug.hpp +include/websocketpp/config/debug_asio.hpp +include/websocketpp/config/debug_asio_no_tls.hpp +include/websocketpp/config/minimal_client.hpp +include/websocketpp/config/minimal_server.hpp +include/websocketpp/connection.hpp +include/websocketpp/connection_base.hpp +include/websocketpp/endpoint.hpp +include/websocketpp/endpoint_base.hpp +include/websocketpp/error.hpp +include/websocketpp/error_container.hpp +include/websocketpp/extensions/extension.hpp +include/websocketpp/extensions/permessage_deflate/disabled.hpp +include/websocketpp/extensions/permessage_deflate/enabled.hpp +include/websocketpp/frame.hpp +include/websocketpp/http/constants.hpp +include/websocketpp/http/impl/parser.hpp +include/websocketpp/http/impl/request.hpp +include/websocketpp/http/impl/response.hpp +include/websocketpp/http/parser.hpp +include/websocketpp/http/request.hpp +include/websocketpp/http/response.hpp +include/websocketpp/impl/connection_impl.hpp +include/websocketpp/impl/endpoint_impl.hpp +include/websocketpp/impl/utilities_impl.hpp +include/websocketpp/logger/basic.hpp +include/websocketpp/logger/levels.hpp +include/websocketpp/logger/stub.hpp +include/websocketpp/message_buffer/alloc.hpp +include/websocketpp/message_buffer/message.hpp +include/websocketpp/message_buffer/pool.hpp +include/websocketpp/processors/base.hpp +include/websocketpp/processors/hybi00.hpp +include/websocketpp/processors/hybi07.hpp +include/websocketpp/processors/hybi08.hpp +include/websocketpp/processors/hybi13.hpp +include/websocketpp/processors/processor.hpp +include/websocketpp/random/none.hpp +include/websocketpp/random/random_device.hpp +include/websocketpp/roles/client_endpoint.hpp +include/websocketpp/roles/server_endpoint.hpp +include/websocketpp/server.hpp +include/websocketpp/sha1/sha1.hpp +include/websocketpp/transport/asio/base.hpp +include/websocketpp/transport/asio/connection.hpp +include/websocketpp/transport/asio/endpoint.hpp +include/websocketpp/transport/asio/security/base.hpp +include/websocketpp/transport/asio/security/none.hpp +include/websocketpp/transport/asio/security/tls.hpp +include/websocketpp/transport/base/connection.hpp +include/websocketpp/transport/base/endpoint.hpp +include/websocketpp/transport/iostream/base.hpp +include/websocketpp/transport/iostream/connection.hpp +include/websocketpp/transport/iostream/endpoint.hpp +include/websocketpp/transport/stub/base.hpp +include/websocketpp/transport/stub/connection.hpp +include/websocketpp/transport/stub/endpoint.hpp +include/websocketpp/uri.hpp +include/websocketpp/utf8_validator.hpp +include/websocketpp/utilities.hpp +include/websocketpp/version.hpp +lib/cmake/websocketpp/websocketpp-config.cmake +lib/cmake/websocketpp/websocketpp-configVersion.cmake
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412020937.sB29bgjj014896>