svn commit: r481785 - in head/devel: . py-aiortc
Steve Wills
swills at FreeBSD.org
Thu Oct 11 05:28:56 UTC 2018
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 at 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 <bsd.port.mk>
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/
More information about the svn-ports-all
mailing list