From owner-svn-ports-all@freebsd.org Thu Oct 11 05:28:56 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 67D4410D1198; Thu, 11 Oct 2018 05:28:56 +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 1ED61863ED; Thu, 11 Oct 2018 05:28:56 +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 19D3341C9; Thu, 11 Oct 2018 05:28:56 +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 w9B5Stnh037751; Thu, 11 Oct 2018 05:28:55 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9B5StZ7037747; Thu, 11 Oct 2018 05:28:55 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201810110528.w9B5StZ7037747@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 11 Oct 2018 05:28:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481785 - in head/devel: . py-aiortc X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . py-aiortc X-SVN-Commit-Revision: 481785 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: Thu, 11 Oct 2018 05:28:56 -0000 Author: swills Date: Thu Oct 11 05:28:54 2018 New Revision: 481785 URL: https://svnweb.freebsd.org/changeset/ports/481785 Log: devel/py-aiortc: create port aiortc is a library for Web Real-Time Communication (WebRTC) and Object Real-Time Communication (ORTC) in Python. It is built on top of asyncio, Python's standard asynchronous I/O framework. WWW: https://github.com/jlaine/aiortc/ Added: head/devel/py-aiortc/ head/devel/py-aiortc/Makefile (contents, props changed) head/devel/py-aiortc/distinfo (contents, props changed) head/devel/py-aiortc/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 11 03:54:46 2018 (r481784) +++ head/devel/Makefile Thu Oct 11 05:28:54 2018 (r481785) @@ -4336,6 +4336,7 @@ SUBDIR += py-ZopeUndo SUBDIR += py-adb SUBDIR += py-aioice + SUBDIR += py-aiortc SUBDIR += py-akismet SUBDIR += py-amalgamate SUBDIR += py-aniso8601 Added: head/devel/py-aiortc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-aiortc/Makefile Thu Oct 11 05:28:54 2018 (r481785) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= aiortc +PORTVERSION= 0.9.9 +CATEGORIES= devel multimedia python www +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= WebRTC and ORTC in Python + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libopus.so:audio/opus \ + libvpx.so:multimedia/libvpx +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${PY_FLAVOR} +RUN_DEPENDS= \ + ${PYTHON_PKGNAMEPREFIX}aioice>=0.6.7:devel/py-aioice@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}attrs>0:devel/py-attrs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}av>=0.5.3:multimedia/py-av@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}crcmod>0:devel/py-crcmod@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cryptography>=2.2:security/py-cryptography@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyee>0:devel/py-pyee@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pylibsrtp>=0.5.6:devel/py-pylibsrtp@${PY_FLAVOR} + +USES= localbase python:3.5+ +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/devel/py-aiortc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-aiortc/distinfo Thu Oct 11 05:28:54 2018 (r481785) @@ -0,0 +1,3 @@ +TIMESTAMP = 1539050777 +SHA256 (aiortc-0.9.9.tar.gz) = 0d5ad3b043e18afb592de07bb9a6a1c4d0a1bd32f545b8877d2b0c78a8f72e57 +SIZE (aiortc-0.9.9.tar.gz) = 1119080 Added: head/devel/py-aiortc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-aiortc/pkg-descr Thu Oct 11 05:28:54 2018 (r481785) @@ -0,0 +1,5 @@ +aiortc is a library for Web Real-Time Communication (WebRTC) and Object +Real-Time Communication (ORTC) in Python. It is built on top of asyncio, +Python's standard asynchronous I/O framework. + +WWW: https://github.com/jlaine/aiortc/