From owner-svn-ports-all@freebsd.org Thu Dec 3 12:17:32 2015 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 9F140A40E38; Thu, 3 Dec 2015 12:17:32 +0000 (UTC) (envelope-from amdmi3@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 4E69F1A47; Thu, 3 Dec 2015 12:17:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB3CHVB6084714; Thu, 3 Dec 2015 12:17:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB3CHVNm084710; Thu, 3 Dec 2015 12:17:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201512031217.tB3CHVNm084710@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 3 Dec 2015 12:17:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402872 - in head/net: . py-pystun 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: Thu, 03 Dec 2015 12:17:32 -0000 Author: amdmi3 Date: Thu Dec 3 12:17:30 2015 New Revision: 402872 URL: https://svnweb.freebsd.org/changeset/ports/402872 Log: A Python STUN client for getting NAT type and external IP. WWW: https://pypi.python.org/pypi/pystun PR: 201388 Submitted by: yuri@rawbw.com Added: head/net/py-pystun/ head/net/py-pystun/Makefile (contents, props changed) head/net/py-pystun/distinfo (contents, props changed) head/net/py-pystun/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Dec 3 11:26:36 2015 (r402871) +++ head/net/Makefile Thu Dec 3 12:17:30 2015 (r402872) @@ -966,6 +966,7 @@ SUBDIR += py-pysmb SUBDIR += py-pysocks SUBDIR += py-pysphere + SUBDIR += py-pystun SUBDIR += py-python-bitcoinrpc SUBDIR += py-pyvmomi SUBDIR += py-pyzmq Added: head/net/py-pystun/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pystun/Makefile Thu Dec 3 12:17:30 2015 (r402872) @@ -0,0 +1,19 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= pystun +PORTVERSION= 0.1.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Python STUN client for getting NAT type and external IP + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/net/py-pystun/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pystun/distinfo Thu Dec 3 12:17:30 2015 (r402872) @@ -0,0 +1,2 @@ +SHA256 (pystun-0.1.0.tar.gz) = 787a2d1c1328ae8ac31152a0d6d96b2f02ab8677febdc25e463c2c8fee34679f +SIZE (pystun-0.1.0.tar.gz) = 6286 Added: head/net/py-pystun/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pystun/pkg-descr Thu Dec 3 12:17:30 2015 (r402872) @@ -0,0 +1,3 @@ +A Python STUN client for getting NAT type and external IP. + +WWW: https://pypi.python.org/pypi/pystun