Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Oct 2018 04:33:00 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r481598 - in head/devel: . py-pylibsrtp
Message-ID:  <201810090433.w994X0Rt011250@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Tue Oct  9 04:33:00 2018
New Revision: 481598
URL: https://svnweb.freebsd.org/changeset/ports/481598

Log:
  deve/py-pylibsrtp: create port
  
  pylibsrtp is a Python wrapper around libsrtp, making it possible to encrypt and
  decrypt Secure Real-time Transport Protocol (SRTP) packets from Python code.
  
  SRTP is a profile of the Real-time Transport Protocol (RTP) which provides
  confidentiality, message authentication, and replay protection. It is defined
  by RFC 3711.
  
  WWW: https://github.com/jlaine/pylibsrtp

Added:
  head/devel/py-pylibsrtp/
  head/devel/py-pylibsrtp/Makefile   (contents, props changed)
  head/devel/py-pylibsrtp/distinfo   (contents, props changed)
  head/devel/py-pylibsrtp/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile   (contents, props changed)

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Oct  9 04:26:22 2018	(r481597)
+++ head/devel/Makefile	Tue Oct  9 04:33:00 2018	(r481598)
@@ -4925,6 +4925,7 @@
     SUBDIR += py-pykde4-kde4
     SUBDIR += py-pykdeuic4-kde4
     SUBDIR += py-pyke
+    SUBDIR += py-pylibsrtp
     SUBDIR += py-pylru
     SUBDIR += py-pylru-cache
     SUBDIR += py-pymarc

Added: head/devel/py-pylibsrtp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pylibsrtp/Makefile	Tue Oct  9 04:33:00 2018	(r481598)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	pylibsrtp
+PORTVERSION=	0.6.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	swills@FreeBSD.org
+COMMENT=	Python wrapper around libsrtp
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libsrtp2.so:net/libsrtp2
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${PY_FLAVOR}
+
+USES=		localbase python:3.5+
+USE_PYTHON=	autoplist concurrent distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-pylibsrtp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pylibsrtp/distinfo	Tue Oct  9 04:33:00 2018	(r481598)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1539056354
+SHA256 (pylibsrtp-0.6.0.tar.gz) = 7c76f18e403f68ee4825345bbc811140b3f8a8ed28d1228295508d95db399af1
+SIZE (pylibsrtp-0.6.0.tar.gz) = 9328

Added: head/devel/py-pylibsrtp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pylibsrtp/pkg-descr	Tue Oct  9 04:33:00 2018	(r481598)
@@ -0,0 +1,8 @@
+pylibsrtp is a Python wrapper around libsrtp, making it possible to encrypt and
+decrypt Secure Real-time Transport Protocol (SRTP) packets from Python code.
+
+SRTP is a profile of the Real-time Transport Protocol (RTP) which provides
+confidentiality, message authentication, and replay protection. It is defined
+by RFC 3711.
+
+WWW: https://github.com/jlaine/pylibsrtp



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810090433.w994X0Rt011250>