svn commit: r400480 - in head/print: . py-fpdf

Pawel Pekala pawel at FreeBSD.org
Thu Oct 29 21:35:03 UTC 2015


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 <fabianosidler at swissonline.ch>

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 <fabianosidler at swissonline.ch>
+# $FreeBSD$
+
+PORTNAME=	fpdf
+PORTVERSION=	1.7.2
+CATEGORIES=	print python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	fabianosidler at swissonline.ch
+COMMENT=	Simple PDF generation for Python
+
+LICENSE=	LGPL3
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

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/


More information about the svn-ports-all mailing list