From owner-svn-ports-head@freebsd.org Thu Oct 29 21:35:03 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4975BA2089A; Thu, 29 Oct 2015 21:35:03 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C26B1246; Thu, 29 Oct 2015 21:35:03 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9TLZ2WN048718; Thu, 29 Oct 2015 21:35:02 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9TLZ1cx048714; Thu, 29 Oct 2015 21:35:01 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510292135.t9TLZ1cx048714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Thu, 29 Oct 2015 21:35:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400480 - in head/print: . py-fpdf 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.20 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: Thu, 29 Oct 2015 21:35:03 -0000 Author: pawel Date: Thu Oct 29 21:35:01 2015 New Revision: 400480 URL: https://svnweb.freebsd.org/changeset/ports/400480 Log: PyFPDF is a library for PDF document generation under Python, ported from PHP (see FPDF "Free"-PDF, a well-known PDFlib-extension replacement with many examples, scripts and derivatives). Compared with other PDF libraries, PyFPDF is simple, small and versatile, with advanced capabilities and easy to learn, extend and maintain. Features * Python 2.5 to 2.7 support (with experimental Python3 support) * Unicode (UTF-8) TrueType font subset embedding * Barcode I2of5 and code39, QR code coming soon ... * PNG, GIF and JPG support (including transparency and alpha channel) * Templates with a visual designer & basic html2pdf * Exceptions support, other minor fixes, improvements and PEP8 code cleanups WWW: https://code.google.com/p/pyfpdf/ PR: 203816 Submitted by: Fabiano Sidler Added: head/print/py-fpdf/ head/print/py-fpdf/Makefile (contents, props changed) head/print/py-fpdf/distinfo (contents, props changed) head/print/py-fpdf/pkg-descr (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Thu Oct 29 21:15:49 2015 (r400479) +++ head/print/Makefile Thu Oct 29 21:35:01 2015 (r400480) @@ -193,6 +193,7 @@ SUBDIR += psutils SUBDIR += py-cups SUBDIR += py-fonttools + SUBDIR += py-fpdf SUBDIR += py-pdf SUBDIR += py-pollyreports SUBDIR += py-preppy Added: head/print/py-fpdf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-fpdf/Makefile Thu Oct 29 21:35:01 2015 (r400480) @@ -0,0 +1,19 @@ +# Created by: Fabiano Sidler +# $FreeBSD$ + +PORTNAME= fpdf +PORTVERSION= 1.7.2 +CATEGORIES= print python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= fabianosidler@swissonline.ch +COMMENT= Simple PDF generation for Python + +LICENSE= LGPL3 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/print/py-fpdf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-fpdf/distinfo Thu Oct 29 21:35:01 2015 (r400480) @@ -0,0 +1,2 @@ +SHA256 (fpdf-1.7.2.tar.gz) = 125840783289e7d12552b1e86ab692c37322e7a65b96a99e0ea86cca041b6779 +SIZE (fpdf-1.7.2.tar.gz) = 39504 Added: head/print/py-fpdf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/py-fpdf/pkg-descr Thu Oct 29 21:35:01 2015 (r400480) @@ -0,0 +1,17 @@ +PyFPDF is a library for PDF document generation under Python, ported from +PHP (see FPDF "Free"-PDF, a well-known PDFlib-extension replacement with +many examples, scripts and derivatives). + +Compared with other PDF libraries, PyFPDF is simple, small and versatile, +with advanced capabilities and easy to learn, extend and maintain. + +Features + * Python 2.5 to 2.7 support (with experimental Python3 support) + * Unicode (UTF-8) TrueType font subset embedding + * Barcode I2of5 and code39, QR code coming soon ... + * PNG, GIF and JPG support (including transparency and alpha channel) + * Templates with a visual designer & basic html2pdf + * Exceptions support, other minor fixes, improvements and PEP8 code + cleanups + +WWW: https://code.google.com/p/pyfpdf/