From owner-svn-ports-all@freebsd.org Tue Oct 9 04:26:24 2018 Return-Path: Delivered-To: svn-ports-all@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 57C7310BE01E; Tue, 9 Oct 2018 04:26:24 +0000 (UTC) (envelope-from swills@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 0B2BC73B3B; Tue, 9 Oct 2018 04:26:24 +0000 (UTC) (envelope-from swills@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 E173F51A8; Tue, 9 Oct 2018 04:26:23 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w994QNNP006078; Tue, 9 Oct 2018 04:26:23 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w994QNnS006074; Tue, 9 Oct 2018 04:26:23 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201810090426.w994QNnS006074@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 9 Oct 2018 04:26:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481597 - in head/devel: . py-aioice X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . py-aioice X-SVN-Commit-Revision: 481597 X-SVN-Commit-Repository: ports 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.27 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: Tue, 09 Oct 2018 04:26:24 -0000 Author: swills Date: Tue Oct 9 04:26:22 2018 New Revision: 481597 URL: https://svnweb.freebsd.org/changeset/ports/481597 Log: deve/py-aioice: create port aioice is a library for Interactive Connectivity Establishment (RFC 5245) in Python. It is built on top of asyncio, Python's standard asynchronous I/O framework. Interactive Connectivity Establishment (ICE) is useful for applications that establish peer-to-peer UDP data streams, as it facilitates NAT traversal. Typical usecases include SIP and WebRTC. WWW: https://github.com/jlaine/aioice Added: head/devel/py-aioice/ head/devel/py-aioice/Makefile (contents, props changed) head/devel/py-aioice/distinfo (contents, props changed) head/devel/py-aioice/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 9 04:19:08 2018 (r481596) +++ head/devel/Makefile Tue Oct 9 04:26:22 2018 (r481597) @@ -4334,6 +4334,7 @@ SUBDIR += py-XStatic-tv4 SUBDIR += py-ZopeUndo SUBDIR += py-adb + SUBDIR += py-aioice SUBDIR += py-akismet SUBDIR += py-amalgamate SUBDIR += py-aniso8601 Added: head/devel/py-aioice/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-aioice/Makefile Tue Oct 9 04:26:22 2018 (r481597) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= aioice +PORTVERSION= 0.6.8 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Interactive Connectivity Establishment (RFC 5245) in Python + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}netifaces>=0.10.4:net/py-netifaces@${PY_FLAVOR} + +USES= python:3.5+ +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/devel/py-aioice/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-aioice/distinfo Tue Oct 9 04:26:22 2018 (r481597) @@ -0,0 +1,3 @@ +TIMESTAMP = 1539054935 +SHA256 (aioice-0.6.8.tar.gz) = 6ca75c7be9043e2cc3809ff8ac8293c5049aa3a4d621f28b6abe1c9b8f33d1cc +SIZE (aioice-0.6.8.tar.gz) = 31061 Added: head/devel/py-aioice/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-aioice/pkg-descr Tue Oct 9 04:26:22 2018 (r481597) @@ -0,0 +1,9 @@ +aioice is a library for Interactive Connectivity Establishment (RFC 5245) in +Python. It is built on top of asyncio, Python's standard asynchronous I/O +framework. + +Interactive Connectivity Establishment (ICE) is useful for applications that +establish peer-to-peer UDP data streams, as it facilitates NAT traversal. +Typical usecases include SIP and WebRTC. + +WWW: https://github.com/jlaine/aioice