From owner-svn-ports-head@freebsd.org Wed Oct 28 20:29:16 2015 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 051FEA20591; Wed, 28 Oct 2015 20:29:16 +0000 (UTC) (envelope-from pawel@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 CF302109F; Wed, 28 Oct 2015 20:29:15 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9SKTEeK002799; Wed, 28 Oct 2015 20:29:14 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9SKTE13002795; Wed, 28 Oct 2015 20:29:14 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510282029.t9SKTE13002795@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 28 Oct 2015 20:29:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400415 - in head/net: . tiny-network-utilities 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.20 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: Wed, 28 Oct 2015 20:29:16 -0000 Author: pawel Date: Wed Oct 28 20:29:14 2015 New Revision: 400415 URL: https://svnweb.freebsd.org/changeset/ports/400415 Log: The collection of minimalistic network server implementations to support virtual machine network connectivity: DHCP, UDP proxy, UDP anti-NAT. WWW: https://github.com/yurivict/tiny-network-utilities PR: 200333 Submitted by: Yuri Victorovich Added: head/net/tiny-network-utilities/ head/net/tiny-network-utilities/Makefile (contents, props changed) head/net/tiny-network-utilities/distinfo (contents, props changed) head/net/tiny-network-utilities/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Oct 28 19:41:55 2015 (r400414) +++ head/net/Makefile Wed Oct 28 20:29:14 2015 (r400415) @@ -1250,6 +1250,7 @@ SUBDIR += tigervnc SUBDIR += tightvnc SUBDIR += tintin++ + SUBDIR += tiny-network-utilities SUBDIR += tinyfugue SUBDIR += tinyldap SUBDIR += tn5250 Added: head/net/tiny-network-utilities/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tiny-network-utilities/Makefile Wed Oct 28 20:29:14 2015 (r400415) @@ -0,0 +1,39 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= tiny-network-utilities +PORTVERSION= 0.150519 +CATEGORIES= net + +MAINTAINER= yuri@rawbw.com +COMMENT= Minimalistic DHCP, UDP proxy, etc server implementations + +LICENSE= BSD4CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}netifaces>0:${PORTSDIR}/net/py-netifaces \ + ${PYTHON_PKGNAMEPREFIX}hexdump>0:${PORTSDIR}/textproc/py-hexdump + +USE_GITHUB= yes +GH_ACCOUNT= yurivict +GH_TAGNAME= d72f531 + +USES= python:3.4+ +NO_BUILD= yes +NO_ARCH= yes + +FILES_EXEC= tiny-dhcp-server tiny-udp-proxy tiny-udp-anti-nat +FILES_LIB= net_checksums tiny_utils +PLIST_FILES= $(FILES_EXEC:%=bin/%) $(FILES_LIB:%=${PYTHON_SITELIBDIR}/%.py) + +do-install: +.for file_exec in ${FILES_EXEC} + ${INSTALL_SCRIPT} ${WRKSRC}/${file_exec}.py \ + ${STAGEDIR}${PREFIX}/bin/${file_exec} +.endfor + @${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR} +.for file_lib in ${FILES_LIB} + ${INSTALL_DATA} ${WRKSRC}/${file_lib}.py \ + ${STAGEDIR}${PYTHON_SITELIBDIR}/${file_lib}.py +.endfor + +.include Added: head/net/tiny-network-utilities/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tiny-network-utilities/distinfo Wed Oct 28 20:29:14 2015 (r400415) @@ -0,0 +1,2 @@ +SHA256 (yurivict-tiny-network-utilities-0.150519-d72f531_GH0.tar.gz) = fd823ca08f4a5abcc9afe69f3b3c7e0246d3c2c2e25f984ecea921b0a8e3f6d8 +SIZE (yurivict-tiny-network-utilities-0.150519-d72f531_GH0.tar.gz) = 9913 Added: head/net/tiny-network-utilities/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tiny-network-utilities/pkg-descr Wed Oct 28 20:29:14 2015 (r400415) @@ -0,0 +1,4 @@ +The collection of minimalistic network server implementations to support +virtual machine network connectivity: DHCP, UDP proxy, UDP anti-NAT. + +WWW: https://github.com/yurivict/tiny-network-utilities