svn commit: r472998 - in head/textproc: . py-pdfrw

Kurt Jaeger pi at FreeBSD.org
Thu Jun 21 20:22:17 UTC 2018


Author: pi
Date: Thu Jun 21 20:22:16 2018
New Revision: 472998
URL: https://svnweb.freebsd.org/changeset/ports/472998

Log:
  New port: textproc/py-pdfrw
  
  A Python library and utility that reads and writes PDF files:
  
  - Version 0.4 is tested and works on Python 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6
  - Operations include subsetting, merging, rotating, modifying metadata, etc.
  - The fastest pure Python PDF parser available
  - Has been used for years by a printer in pre-press production
  - Can be used with rst2pdf to faithfully reproduce vector images
  - Can be used either standalone, or in conjunction with reportlab
    to reuse existing PDFs in new ones
  - Permissively licensed
  
  WWW: https://github.com/pmaupin/pdfrw
  
  PR:		226702
  Submitted by:	greg at unrelenting.technology

Added:
  head/textproc/py-pdfrw/
  head/textproc/py-pdfrw/Makefile   (contents, props changed)
  head/textproc/py-pdfrw/distinfo   (contents, props changed)
  head/textproc/py-pdfrw/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Thu Jun 21 20:18:32 2018	(r472997)
+++ head/textproc/Makefile	Thu Jun 21 20:22:16 2018	(r472998)
@@ -1337,6 +1337,7 @@
     SUBDIR += py-parso
     SUBDIR += py-pdfminer
     SUBDIR += py-pdfminer3k
+    SUBDIR += py-pdfrw
     SUBDIR += py-pss
     SUBDIR += py-pyPEG2
     SUBDIR += py-pyctpp2

Added: head/textproc/py-pdfrw/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-pdfrw/Makefile	Thu Jun 21 20:22:16 2018	(r472998)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME=	pdfrw
+PORTVERSION=	0.4
+CATEGORIES=	textproc python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	greg at unrelenting.technology
+COMMENT=	PDF file reader/writer library
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/textproc/py-pdfrw/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-pdfrw/distinfo	Thu Jun 21 20:22:16 2018	(r472998)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1521393528
+SHA256 (pdfrw-0.4.tar.gz) = 0dc0494a0e6561b268542b28ede2280387c2728114f117d3bb5d8e4787b93ef4
+SIZE (pdfrw-0.4.tar.gz) = 95402

Added: head/textproc/py-pdfrw/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/py-pdfrw/pkg-descr	Thu Jun 21 20:22:16 2018	(r472998)
@@ -0,0 +1,12 @@
+A Python library and utility that reads and writes PDF files:
+
+- Version 0.4 is tested and works on Python 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6
+- Operations include subsetting, merging, rotating, modifying metadata, etc.
+- The fastest pure Python PDF parser available
+- Has been used for years by a printer in pre-press production
+- Can be used with rst2pdf to faithfully reproduce vector images
+- Can be used either standalone, or in conjunction with reportlab
+  to reuse existing PDFs in new ones
+- Permissively licensed
+
+WWW: https://github.com/pmaupin/pdfrw


More information about the svn-ports-all mailing list