From owner-svn-ports-head@FreeBSD.ORG Wed Oct 17 08:55:51 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 354525E6; Wed, 17 Oct 2012 08:55:51 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 128D28FC0C; Wed, 17 Oct 2012 08:55:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9H8tog0034652; Wed, 17 Oct 2012 08:55:50 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9H8to7U034647; Wed, 17 Oct 2012 08:55:50 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210170855.q9H8to7U034647@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Wed, 17 Oct 2012 08:55:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306003 - in head/print: . py-pollyreports 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: Wed, 17 Oct 2012 08:55:51 -0000 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 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 +# $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 + +.if ${PORT_OPTIONS:MREPORTLAB} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}reportlab2>=2.1:${PORTSDIR}/print/py-reportlab2 +.endif + +.include 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