From owner-svn-ports-head@freebsd.org Thu Jun 21 20:22:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FC7310279A6; Thu, 21 Jun 2018 20:22:17 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 455278CFE3; Thu, 21 Jun 2018 20:22:17 +0000 (UTC) (envelope-from pi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 267D216BDC; Thu, 21 Jun 2018 20:22:17 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LKMHSZ031008; Thu, 21 Jun 2018 20:22:17 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LKMGDO031004; Thu, 21 Jun 2018 20:22:16 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806212022.w5LKMGDO031004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 20:22:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472998 - in head/textproc: . py-pdfrw X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/textproc: . py-pdfrw X-SVN-Commit-Revision: 472998 X-SVN-Commit-Repository: ports 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.26 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, 21 Jun 2018 20:22:17 -0000 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@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@unrelenting.technology +COMMENT= PDF file reader/writer library + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +.include 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