From owner-svn-ports-all@freebsd.org Mon Feb 1 11:02:52 2016 Return-Path: Delivered-To: svn-ports-all@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 ED0D9A97ADF; Mon, 1 Feb 2016 11:02:51 +0000 (UTC) (envelope-from koobs@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 AFDD6F94; Mon, 1 Feb 2016 11:02:51 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u11B2ojk047143; Mon, 1 Feb 2016 11:02:50 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u11B2o4S047139; Mon, 1 Feb 2016 11:02:50 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201602011102.u11B2o4S047139@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 1 Feb 2016 11:02:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407704 - in head/security: . stud 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.20 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, 01 Feb 2016 11:02:52 -0000 Author: koobs Date: Mon Feb 1 11:02:50 2016 New Revision: 407704 URL: https://svnweb.freebsd.org/changeset/ports/407704 Log: [NEW] security/stud: Scalable TLS Unwrapping Daemon stud is a network proxy that terminates TLS/SSL connections and forwards the unencrypted traffic to some backend. It's designed to handle 10s of thousands of connections efficiently on multicore machines. WWW: https://github.com/bumptech/stud PR: 206134 Submitted by: Franz Bettag Added: head/security/stud/ head/security/stud/Makefile (contents, props changed) head/security/stud/distinfo (contents, props changed) head/security/stud/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Feb 1 10:24:23 2016 (r407703) +++ head/security/Makefile Mon Feb 1 11:02:50 2016 (r407704) @@ -1067,6 +1067,7 @@ SUBDIR += stoken SUBDIR += strobe SUBDIR += strongswan + SUBDIR += stud SUBDIR += stunnel SUBDIR += subversion-gnome-keyring SUBDIR += subversion-kwallet Added: head/security/stud/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stud/Makefile Mon Feb 1 11:02:50 2016 (r407704) @@ -0,0 +1,31 @@ +# Created by: Franz Bettag +# $FreeBSD$ + +PORTNAME= stud +PORTVERSION= 0.4 +PORTREVISION= 1 +CATEGORIES= security + +MAINTAINER= franz@bett.ag +COMMENT= Scalable TLS Unwrapping Daemon + +LICENSE= BSD2CLAUSE + +LIB_DEPENDS= libev.so:${PORTSDIR}/devel/libev + +USES= gmake +USE_GITHUB= yes +USE_OPENSSL= yes + +GH_ACCOUNT= wasted + +MAKE_ARGS= MANDIR="${MANDIRS}" +MAKE_JOBS_UNSAFE= yes + +PLIST_FILES= bin/stud \ + man/man8/stud.8.gz + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/security/stud/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stud/distinfo Mon Feb 1 11:02:50 2016 (r407704) @@ -0,0 +1,2 @@ +SHA256 (wasted-stud-0.4_GH0.tar.gz) = 8753a5015dbc7998e19dd353057d52e67fd203d713d80a0851fe24a21fadad63 +SIZE (wasted-stud-0.4_GH0.tar.gz) = 45621 Added: head/security/stud/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stud/pkg-descr Mon Feb 1 11:02:50 2016 (r407704) @@ -0,0 +1,6 @@ +stud is a network proxy that terminates TLS/SSL connections +and forwards the unencrypted traffic to some backend. It's +designed to handle 10s of thousands of connections +efficiently on multicore machines. + +WWW: https://github.com/bumptech/stud