Date: Fri, 7 Jun 2013 13:35:54 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320201 - in head/devel: . py-tvrage Message-ID: <201306071335.r57DZs3Q016715@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Fri Jun 7 13:35:54 2013 New Revision: 320201 URL: http://svnweb.freebsd.org/changeset/ports/320201 Log: tvrage is a python based object oriented client interface for tvrage.com's XML based api feeds. The tvrage package consists of three modules: - feeds module provides a wrapper function for each of tvrage's XML-feeds - api module provides an clean and object oriented interface on top of those services - quickinfo module is a simple pythonic wrapper for tvrage's quickinfo api. Values are returned as python dictionaries rather than dedicated objects for tv shows and episodes WWW: https://github.com/ckreutzer/python-tvrage Approved by: culot (mentor) Added: head/devel/py-tvrage/ head/devel/py-tvrage/Makefile (contents, props changed) head/devel/py-tvrage/distinfo (contents, props changed) head/devel/py-tvrage/pkg-descr (contents, props changed) head/devel/py-tvrage/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 7 13:28:30 2013 (r320200) +++ head/devel/Makefile Fri Jun 7 13:35:54 2013 (r320201) @@ -3710,6 +3710,7 @@ SUBDIR += py-turbojson SUBDIR += py-turbojson11 SUBDIR += py-turbokid + SUBDIR += py-tvrage SUBDIR += py-tw.forms SUBDIR += py-twisted SUBDIR += py-twistedCore Added: head/devel/py-tvrage/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tvrage/Makefile Fri Jun 7 13:35:54 2013 (r320201) @@ -0,0 +1,25 @@ +# Created by: William Grzybowski <wg@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= tvrage +PORTVERSION= 0.4.1 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Python client for the tvrage.com XML API + +LICENSE= BSD + +USE_GITHUB= yes +GH_ACCOUNT= ckreutzer +GH_COMMIT= c8e9781 +GH_TAGNAME= ${PORTVERSION} +GH_PROJECT= python-${PORTNAME} + +USE_PYTHON= -2.7 +USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= python_${PORTNAME} + +.include <bsd.port.mk> Added: head/devel/py-tvrage/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tvrage/distinfo Fri Jun 7 13:35:54 2013 (r320201) @@ -0,0 +1,2 @@ +SHA256 (python-tvrage-0.4.1.tar.gz) = f8a530376c5cf1bc573d1945a8504c3394b228c731a3eff5100c705997a72063 +SIZE (python-tvrage-0.4.1.tar.gz) = 10646 Added: head/devel/py-tvrage/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tvrage/pkg-descr Fri Jun 7 13:35:54 2013 (r320201) @@ -0,0 +1,12 @@ +tvrage is a python based object oriented client interface for tvrage.com's +XML based api feeds. + +The tvrage package consists of three modules: + - feeds module provides a wrapper function for each of tvrage's XML-feeds + - api module provides an clean and object oriented interface on top of those + services + - quickinfo module is a simple pythonic wrapper for tvrage's quickinfo api. + Values are returned as python dictionaries rather than dedicated objects + for tv shows and episodes + +WWW: https://github.com/ckreutzer/python-tvrage Added: head/devel/py-tvrage/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tvrage/pkg-plist Fri Jun 7 13:35:54 2013 (r320201) @@ -0,0 +1,19 @@ +%%PYTHON_SITELIBDIR%%/tvrage/__init__.py +%%PYTHON_SITELIBDIR%%/tvrage/__init__.pyc +%%PYTHON_SITELIBDIR%%/tvrage/__init__.pyo +%%PYTHON_SITELIBDIR%%/tvrage/api.py +%%PYTHON_SITELIBDIR%%/tvrage/api.pyc +%%PYTHON_SITELIBDIR%%/tvrage/api.pyo +%%PYTHON_SITELIBDIR%%/tvrage/exceptions.py +%%PYTHON_SITELIBDIR%%/tvrage/exceptions.pyc +%%PYTHON_SITELIBDIR%%/tvrage/exceptions.pyo +%%PYTHON_SITELIBDIR%%/tvrage/feeds.py +%%PYTHON_SITELIBDIR%%/tvrage/feeds.pyc +%%PYTHON_SITELIBDIR%%/tvrage/feeds.pyo +%%PYTHON_SITELIBDIR%%/tvrage/quickinfo.py +%%PYTHON_SITELIBDIR%%/tvrage/quickinfo.pyc +%%PYTHON_SITELIBDIR%%/tvrage/quickinfo.pyo +%%PYTHON_SITELIBDIR%%/tvrage/util.py +%%PYTHON_SITELIBDIR%%/tvrage/util.pyc +%%PYTHON_SITELIBDIR%%/tvrage/util.pyo +@dirrm %%PYTHON_SITELIBDIR%%/tvrage
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306071335.r57DZs3Q016715>