From owner-svn-ports-head@freebsd.org Thu Mar 8 19:08:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8D25F4CE03; Thu, 8 Mar 2018 19:08:02 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5EC576B388; Thu, 8 Mar 2018 19:08:02 +0000 (UTC) (envelope-from pi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5991814E69; Thu, 8 Mar 2018 19:08:02 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w28J82Ee012177; Thu, 8 Mar 2018 19:08:02 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w28J81i4012173; Thu, 8 Mar 2018 19:08:01 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201803081908.w28J81i4012173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 8 Mar 2018 19:08:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463913 - in head/net: . viamillipede X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/net: . viamillipede X-SVN-Commit-Revision: 463913 X-SVN-Commit-Repository: ports 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.25 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: Thu, 08 Mar 2018 19:08:02 -0000 Author: pi Date: Thu Mar 8 19:08:01 2018 New Revision: 463913 URL: https://svnweb.freebsd.org/changeset/ports/463913 Log: New port: net/viamillipede Parallel TCP transport for pipes Viamillipede is a client and server programm built to improve network pipe transport using multiple TCP sessions. It multiplexes a single network pipe into multiple TCP connections and then terminates the connections into a pipe transparently on another host. It is similar to the simplest mode of remote pipe transparency of Netcat with the parallelism from iperf. WWW: https://github.com/agokhale/viamillipede Submitted by: Ash Gokhale Reviewed by: eugen, mat, tobik, jpaetzel, Vincent Hoffman-Kazlauskas Added: head/net/viamillipede/ head/net/viamillipede/Makefile (contents, props changed) head/net/viamillipede/distinfo (contents, props changed) head/net/viamillipede/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Mar 8 18:55:50 2018 (r463912) +++ head/net/Makefile Thu Mar 8 19:08:01 2018 (r463913) @@ -1446,6 +1446,7 @@ SUBDIR += vblade SUBDIR += vde SUBDIR += vde2 + SUBDIR += viamillipede SUBDIR += vinagre SUBDIR += vino SUBDIR += vmware-vsphere-cli Added: head/net/viamillipede/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/viamillipede/Makefile Thu Mar 8 19:08:01 2018 (r463913) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= viamillipede +PORTVERSION= 0.7 +DISTVERSIONPREFIX= v +CATEGORIES= net + +MAINTAINER= ash_ports@aeria.net +COMMENT= Parallel TCP for pipe transport + +LICENSE= BSD3CLAUSE + +USES= uidfix +USE_GITHUB= yes +GH_ACCOUNT= agokhale + +PLIST_FILES= bin/viamillipede man/man1/viamillipede.1.gz + +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1004000 +BROKEN= Needs bsd.prog.mk features from at least 10.4, otherwise referenced /usr/share/mk/bsd.own.mk line 505: MK_DEBUG_FILES can't be set by a user. +.endif + +.include Added: head/net/viamillipede/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/viamillipede/distinfo Thu Mar 8 19:08:01 2018 (r463913) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520422739 +SHA256 (agokhale-viamillipede-v0.7_GH0.tar.gz) = f69f932312e4ad295483d216016afc36bab24bcfcc76c2d4f2a3d4ebfd40a4ac +SIZE (agokhale-viamillipede-v0.7_GH0.tar.gz) = 28281 Added: head/net/viamillipede/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/viamillipede/pkg-descr Thu Mar 8 19:08:01 2018 (r463913) @@ -0,0 +1,11 @@ +Parallel TCP transport for pipes + +Viamillipede is a client and server programm built to improve network +pipe transport using multiple TCP sessions. It multiplexes a single +network pipe into multiple TCP connections and then terminates the +connections into a pipe transparently on another host. + +It is similar to the simplest mode of remote pipe transparency of +Netcat with the parallelism from iperf. + +WWW: https://github.com/agokhale/viamillipede