Date: Wed, 17 Oct 2012 08:55:50 +0000 (UTC) From: Ruslan Mahmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306003 - in head/print: . py-pollyreports Message-ID: <201210170855.q9H8to7U034647@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rm Date: Wed Oct 17 08:55:50 2012 New Revision: 306003 URL: http://svn.freebsd.org/changeset/ports/306003 Log: PollyReports.py provides a set of classes for database report writing. It assumes that you are using Reportlab to do PDF generation, but can work with any "canvas-like" object as desired. WWW: http://newcenturycomputers.net/projects/pollyreports.html PR: 172537 Submitted by: Jose Jachuf <jjachuf at gmail dot com> Feature safe: yes Added: head/print/py-pollyreports/ head/print/py-pollyreports/Makefile (contents, props changed) head/print/py-pollyreports/distinfo (contents, props changed) head/print/py-pollyreports/pkg-descr (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Wed Oct 17 08:03:42 2012 (r306002) +++ head/print/Makefile Wed Oct 17 08:55:50 2012 (r306003) @@ -251,6 +251,7 @@ SUBDIR += py-cups SUBDIR += py-fonttools SUBDIR += py-pdf + SUBDIR += py-pollyreports SUBDIR += py-pyscript SUBDIR += py-relatorio SUBDIR += py-reportlab Added: head/print/py-pollyreports/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-pollyreports/Makefile Wed Oct 17 08:55:50 2012 (r306003) @@ -0,0 +1,32 @@ +# Created by: Jose Jachuf <jjachuf@gmail.com> +# $FreeBSD$ + +PORTNAME= PollyReports +PORTVERSION= 1.6.6 +CATEGORIES= print python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jjachuf@gmail.com +COMMENT= Band-oriented PDF report generation from database query + +LICENSE= BSD + +USE_PYTHON= -2.7 +USE_PYDISTUTILS=yes + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/PollyReports.py \ + %%PYTHON_SITELIBDIR%%/PollyReports.pyc \ + %%PYTHON_SITELIBDIR%%/PollyReports.pyo + +OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}/options +OPTIONS_DEFINE= REPORTLAB +REPORTLAB_DESC= Install Reportlab2 + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MREPORTLAB} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}reportlab2>=2.1:${PORTSDIR}/print/py-reportlab2 +.endif + +.include <bsd.port.mk> Added: head/print/py-pollyreports/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-pollyreports/distinfo Wed Oct 17 08:55:50 2012 (r306003) @@ -0,0 +1,2 @@ +SHA256 (PollyReports-1.6.6.tar.gz) = 1a03b1b1506393bc76488dfe3c5caf87588ccf1ec6f8f629af40ce6f3549bf14 +SIZE (PollyReports-1.6.6.tar.gz) = 19874 Added: head/print/py-pollyreports/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-pollyreports/pkg-descr Wed Oct 17 08:55:50 2012 (r306003) @@ -0,0 +1,5 @@ +PollyReports.py provides a set of classes for database report writing. +It assumes that you are using Reportlab to do PDF generation, but can +work with any "canvas-like" object as desired. + +WWW: http://newcenturycomputers.net/projects/pollyreports.html
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210170855.q9H8to7U034647>