From owner-svn-ports-head@FreeBSD.ORG Fri Nov 29 00:40:37 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D093D7F4; Fri, 29 Nov 2013 00:40:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B28D81E0F; Fri, 29 Nov 2013 00:40:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAT0ebR5088279; Fri, 29 Nov 2013 00:40:37 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAT0eaqt088272; Fri, 29 Nov 2013 00:40:36 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201311290040.rAT0eaqt088272@svn.freebsd.org> From: William Grzybowski Date: Fri, 29 Nov 2013 00:40:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335134 - in head/multimedia: . py-librtmp X-SVN-Group: ports-head 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.16 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: Fri, 29 Nov 2013 00:40:38 -0000 Author: wg Date: Fri Nov 29 00:40:36 2013 New Revision: 335134 URL: http://svnweb.freebsd.org/changeset/ports/335134 Log: multimedia/py-librtmp: Python bindings for librtmp, built with cffi python-librtmp is a Python interface to librtmp. It uses cffi to interface with the C library librtmp. WWW: https://github.com/chrippa/python-librtmp Added: head/multimedia/py-librtmp/ head/multimedia/py-librtmp/Makefile (contents, props changed) head/multimedia/py-librtmp/distinfo (contents, props changed) head/multimedia/py-librtmp/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Fri Nov 29 00:32:52 2013 (r335133) +++ head/multimedia/Makefile Fri Nov 29 00:40:36 2013 (r335134) @@ -286,13 +286,14 @@ SUBDIR += py-kaa-base SUBDIR += py-kaa-imlib2 SUBDIR += py-kaa-metadata - SUBDIR += py-subliminal + SUBDIR += py-librtmp SUBDIR += py-mlt SUBDIR += py-openlp SUBDIR += py-periscope SUBDIR += py-pybmp SUBDIR += py-qt4-multimedia SUBDIR += py-qt4-phonon + SUBDIR += py-subliminal SUBDIR += py-tvnamer SUBDIR += pyjama SUBDIR += pymp Added: head/multimedia/py-librtmp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-librtmp/Makefile Fri Nov 29 00:40:36 2013 (r335134) @@ -0,0 +1,28 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= librtmp +PORTVERSION= 0.1.2 +CATEGORIES= multimedia python +MASTER_SITES= CHEESESHOP +DISTNAME= python-${PORTNAME}-${PORTVERSION} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Python bindings for librtmp, built with cffi + +LICENSE= BSD + +LIB_DEPENDS= librtmp.so:${PORTSDIR}/multimedia/librtmp +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=0:${PORTSDIR}/devel/py-cffi + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes +PYDISTUTILS_PKGNAME= python-${PORTNAME} +PYEASYINSTALL_ARCHDEP= yes + +.include Added: head/multimedia/py-librtmp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-librtmp/distinfo Fri Nov 29 00:40:36 2013 (r335134) @@ -0,0 +1,2 @@ +SHA256 (python-librtmp-0.1.2.tar.gz) = 207e539c04419cc2ea3380cfdee0c8576168079603168c7cc1807e9f4982e997 +SIZE (python-librtmp-0.1.2.tar.gz) = 23390 Added: head/multimedia/py-librtmp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-librtmp/pkg-descr Fri Nov 29 00:40:36 2013 (r335134) @@ -0,0 +1,4 @@ +python-librtmp is a Python interface to librtmp. It uses cffi to interface with +the C library librtmp. + +WWW: https://github.com/chrippa/python-librtmp