From owner-svn-ports-head@FreeBSD.ORG Fri Jun 7 13:35:55 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C3E04F41; Fri, 7 Jun 2013 13:35:55 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id B64C81F66; Fri, 7 Jun 2013 13:35:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r57DZtlt016720; Fri, 7 Jun 2013 13:35:55 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r57DZs3Q016715; Fri, 7 Jun 2013 13:35:54 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201306071335.r57DZs3Q016715@svn.freebsd.org> From: William Grzybowski Date: Fri, 7 Jun 2013 13:35:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320201 - in head/devel: . py-tvrage 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.14 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, 07 Jun 2013 13:35:55 -0000 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 +# $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 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