From owner-svn-ports-head@freebsd.org Tue Oct 9 04:33:01 2018 Return-Path: Delivered-To: svn-ports-head@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 C25A310BE3B6; Tue, 9 Oct 2018 04:33:01 +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 794C973F84; Tue, 9 Oct 2018 04:33:01 +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 59D5E5342; Tue, 9 Oct 2018 04:33:01 +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 w994X1iP011254; Tue, 9 Oct 2018 04:33:01 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w994X0Rt011250; Tue, 9 Oct 2018 04:33:00 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201810090433.w994X0Rt011250@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:33:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481598 - in head/devel: . py-pylibsrtp X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . py-pylibsrtp X-SVN-Commit-Revision: 481598 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2018 04:33:02 -0000 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 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