svn commit: r306371 - in head/multimedia: . py-enzyme
Wen Heping
wen at FreeBSD.org
Thu Oct 25 07:13:13 UTC 2012
Author: wen
Date: Thu Oct 25 07:13:12 2012
New Revision: 306371
URL: http://svn.freebsd.org/changeset/ports/306371
Log:
Python module to parse metadata in video files
You can parse any video file. If a parse error occurs, it will throw a
ParseError exception. To see what data has been parsed, you can print
the object.
WWW: https://github.com/Diaoul/enzyme
PR: 172889
Submitted by: William Grzybowski <william88 at gmail.com>
Feature safe: yes
Added:
head/multimedia/py-enzyme/
head/multimedia/py-enzyme/Makefile (contents, props changed)
head/multimedia/py-enzyme/distinfo (contents, props changed)
head/multimedia/py-enzyme/pkg-descr (contents, props changed)
Modified:
head/multimedia/Makefile
Modified: head/multimedia/Makefile
==============================================================================
--- head/multimedia/Makefile Thu Oct 25 03:47:09 2012 (r306370)
+++ head/multimedia/Makefile Thu Oct 25 07:13:12 2012 (r306371)
@@ -266,6 +266,7 @@
SUBDIR += pvrxxx
SUBDIR += pwcbsd
SUBDIR += pwcview
+ SUBDIR += py-enzyme
SUBDIR += py-gstreamer
SUBDIR += py-kaa-base
SUBDIR += py-kaa-imlib2
Added: head/multimedia/py-enzyme/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/multimedia/py-enzyme/Makefile Thu Oct 25 07:13:12 2012 (r306371)
@@ -0,0 +1,20 @@
+# Created by: William Grzybowski <william88 at gmail.com>
+# $FreeBSD$
+
+PORTNAME= enzyme
+PORTVERSION= 0.2
+CATEGORIES= multimedia python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= william88 at gmail.com
+COMMENT= Python module to parse metadata in video files
+
+LICENSE= GPLv3
+
+USE_PYTHON= -2.7
+USE_PYDISTUTILS=easy_install
+
+PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
+
+.include <bsd.port.mk>
Added: head/multimedia/py-enzyme/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/multimedia/py-enzyme/distinfo Thu Oct 25 07:13:12 2012 (r306371)
@@ -0,0 +1,2 @@
+SHA256 (enzyme-0.2.tar.gz) = b84de5c8d19e4f807d49e31f39f04a594d65e3e5d379a6ee98e29be0bacac3ac
+SIZE (enzyme-0.2.tar.gz) = 70608
Added: head/multimedia/py-enzyme/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/multimedia/py-enzyme/pkg-descr Thu Oct 25 07:13:12 2012 (r306371)
@@ -0,0 +1,7 @@
+Python module to parse metadata in video files
+
+You can parse any video file. If a parse error occurs, it will throw a
+ParseError exception. To see what data has been parsed, you can print
+the object.
+
+WWW: https://github.com/Diaoul/enzyme
More information about the svn-ports-head
mailing list