svn commit: r463913 - in head/net: . viamillipede

Kurt Jaeger pi at FreeBSD.org
Thu Mar 8 19:08:02 UTC 2018


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 <ash_ports at aeria.net>
  Reviewed by:	eugen, mat, tobik, jpaetzel, Vincent Hoffman-Kazlauskas <vince at unsane.co.uk>

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 at 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 <bsd.port.pre.mk>
+
+.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 <bsd.port.post.mk>

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


More information about the svn-ports-all mailing list