From owner-svn-ports-head@freebsd.org Tue Mar 15 15:19:47 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DB17AD2E41; Tue, 15 Mar 2016 15:19:47 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 489991118; Tue, 15 Mar 2016 15:19:47 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2FCnBkw021592; Tue, 15 Mar 2016 12:49:11 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2FCnBCu021587; Tue, 15 Mar 2016 12:49:11 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201603151249.u2FCnBCu021587@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 15 Mar 2016 12:49:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411158 - in head/net: . socketw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Mar 2016 15:19:47 -0000 Author: feld Date: Tue Mar 15 12:49:11 2016 New Revision: 411158 URL: https://svnweb.freebsd.org/changeset/ports/411158 Log: SocketW is a cross platform (Linux/FreeBSD/Unix/Win32) streaming socket C++ library designed to be easy to use. It supports Unix sockets and TCP/IP sockets with optional SSL/TLS (OpenSSL) support. SocketW allows you to write portable and secure network applications quickly without needing to spend time learning low-level system functions or reading OpenSSL manuals. WWW: https://github.com/RigsOfRods/socketw PR: 206496 Submitted by: Thibault Payet Added: head/net/socketw/ head/net/socketw/Makefile (contents, props changed) head/net/socketw/distinfo (contents, props changed) head/net/socketw/pkg-descr (contents, props changed) head/net/socketw/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Mar 15 12:37:33 2016 (r411157) +++ head/net/Makefile Tue Mar 15 12:49:11 2016 (r411158) @@ -1209,6 +1209,7 @@ SUBDIR += socat SUBDIR += socketbind SUBDIR += socketpipe + SUBDIR += socketw SUBDIR += sofia-sip SUBDIR += spideroak SUBDIR += splatd Added: head/net/socketw/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socketw/Makefile Tue Mar 15 12:49:11 2016 (r411158) @@ -0,0 +1,19 @@ +# Created by: Thibault Payet +# $FreeBSD$ + +PORTNAME= socketw +PORTVERSION= 1.0.0.20151501 +CATEGORIES= net + +MAINTAINER= monwarez@mailoo.org +COMMENT= SocketW is a cross platform streaming socket C++ + +LICENSE= GPLv2+ + +USE_GITHUB= yes +GH_ACCOUNT= RigsOfRods +GH_TAGNAME= 6a05e12 + +USES= cmake + +.include Added: head/net/socketw/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socketw/distinfo Tue Mar 15 12:49:11 2016 (r411158) @@ -0,0 +1,2 @@ +SHA256 (RigsOfRods-socketw-1.0.0.20151501-6a05e12_GH0.tar.gz) = bc5873854e283e3d33673c8d8db00a6b2a99f8f802b4ac628822c4257eac860a +SIZE (RigsOfRods-socketw-1.0.0.20151501-6a05e12_GH0.tar.gz) = 48483 Added: head/net/socketw/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socketw/pkg-descr Tue Mar 15 12:49:11 2016 (r411158) @@ -0,0 +1,7 @@ +SocketW is a cross platform (Linux/FreeBSD/Unix/Win32) streaming socket C++ +library designed to be easy to use. It supports Unix sockets and TCP/IP sockets +with optional SSL/TLS (OpenSSL) support. SocketW allows you to write portable +and secure network applications quickly without needing to spend time learning +low-level system functions or reading OpenSSL manuals. + +WWW: https://github.com/RigsOfRods/socketw Added: head/net/socketw/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socketw/pkg-plist Tue Mar 15 12:49:11 2016 (r411158) @@ -0,0 +1,8 @@ +include/SocketW.h +include/sw_base.h +include/sw_config.h +include/sw_inet.h +include/sw_internal.h +include/sw_ssl.h +include/sw_unix.h +lib/libSocketW.a