Date: Mon, 1 Feb 2016 11:02:50 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407704 - in head/security: . stud Message-ID: <201602011102.u11B2o4S047139@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <franz bett ag> 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 <franz@bett.ag> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602011102.u11B2o4S047139>