From owner-svn-ports-head@freebsd.org Sat Jan 5 16:43:42 2019 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 9C27514A07F7; Sat, 5 Jan 2019 16:43:42 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4290989D50; Sat, 5 Jan 2019 16:43:42 +0000 (UTC) (envelope-from swills@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 3455B1B4BA; Sat, 5 Jan 2019 16:43:42 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x05Ghf8m075218; Sat, 5 Jan 2019 16:43:41 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x05Ghfgv075210; Sat, 5 Jan 2019 16:43:41 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201901051643.x05Ghfgv075210@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 5 Jan 2019 16:43:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489354 - in head/textproc: . p5-PDF-Reuse X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/textproc: . p5-PDF-Reuse X-SVN-Commit-Revision: 489354 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4290989D50 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.91 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.92)[-0.916,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 05 Jan 2019 16:43:42 -0000 Author: swills Date: Sat Jan 5 16:43:40 2019 New Revision: 489354 URL: https://svnweb.freebsd.org/changeset/ports/489354 Log: textproc/p5-PDF-Reuse: create port PDF::Reuse - Reuse and mass produce PDF documents This module could be used when you want to mass produce similar (but not identical) PDF documents and reuse templates, JavaScripts and some other components. It is functional to be fast, and to give your programs capacity to produce many pages per second and very big PDF documents if necessary. WWW: http://search.cpan.org/dist/PDF-Reuse/ PR: 216608 Submitted by: gehm@doom-labs.net Added: head/textproc/p5-PDF-Reuse/ head/textproc/p5-PDF-Reuse/Makefile (contents, props changed) head/textproc/p5-PDF-Reuse/distinfo (contents, props changed) head/textproc/p5-PDF-Reuse/pkg-descr (contents, props changed) head/textproc/p5-PDF-Reuse/pkg-plist (contents, props changed) Modified: head/textproc/Makefile (contents, props changed) Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Jan 5 16:29:02 2019 (r489353) +++ head/textproc/Makefile Sat Jan 5 16:43:40 2019 (r489354) @@ -685,6 +685,7 @@ SUBDIR += p5-PDF-API3 SUBDIR += p5-PDF-Create SUBDIR += p5-PDF-FromHTML + SUBDIR += p5-PDF-Reuse SUBDIR += p5-PDF-Table SUBDIR += p5-PDF-Tiny SUBDIR += p5-PDF-WebKit Added: head/textproc/p5-PDF-Reuse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-PDF-Reuse/Makefile Sat Jan 5 16:43:40 2019 (r489354) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= PDF-Reuse +DISTVERSION= 0.39 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= gehm@doom-labs.net +COMMENT= Another perl module to reuse and mass produce PDF documents + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= p5-IO-Compress>=0:archivers/p5-IO-Compress \ + p5-Exporter>=0:devel/p5-Exporter \ + p5-AutoLoader>=0:devel/p5-AutoLoader \ + p5-Carp>=0:devel/p5-Carp \ + p5-Digest-MD5>=0:security/p5-Digest-MD5 \ + p5-Font-TTF>=0:x11-fonts/p5-Font-TTF\ + p5-Text-PDF>=0:print/p5-Text-PDF + +USES= perl5 +USE_PERL5= configure + +.include Added: head/textproc/p5-PDF-Reuse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-PDF-Reuse/distinfo Sat Jan 5 16:43:40 2019 (r489354) @@ -0,0 +1,3 @@ +TIMESTAMP = 1485788783 +SHA256 (PDF-Reuse-0.39.tar.gz) = 93e3a21851d9f8a5b5c93e84c1796e6c2f3ef999e0f4c819723840c4dbbc9d07 +SIZE (PDF-Reuse-0.39.tar.gz) = 64884 Added: head/textproc/p5-PDF-Reuse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-PDF-Reuse/pkg-descr Sat Jan 5 16:43:40 2019 (r489354) @@ -0,0 +1,8 @@ +PDF::Reuse - Reuse and mass produce PDF documents + +This module could be used when you want to mass produce similar (but not +identical) PDF documents and reuse templates, JavaScripts and some other +components. It is functional to be fast, and to give your programs capacity to +produce many pages per second and very big PDF documents if necessary. + +WWW: http://search.cpan.org/dist/PDF-Reuse/ Added: head/textproc/p5-PDF-Reuse/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-PDF-Reuse/pkg-plist Sat Jan 5 16:43:40 2019 (r489354) @@ -0,0 +1,69 @@ +%%SITE_PERL%%/PDF/Reuse.pm +%%SITE_PERL%%/PDF/Reuse/Util.pm +%%SITE_PERL%%/PDF/Util/graphObj_pl +%%SITE_PERL%%/PDF/Util/reuseComponent_pl +%%SITE_PERL%%/auto/PDF/Reuse/AcroFormsEtc.al +%%SITE_PERL%%/auto/PDF/Reuse/analysera.al +%%SITE_PERL%%/auto/PDF/Reuse/autosplit.ix +%%SITE_PERL%%/auto/PDF/Reuse/behandlaNames.al +%%SITE_PERL%%/auto/PDF/Reuse/byggForm.al +%%SITE_PERL%%/auto/PDF/Reuse/calcMatrix.al +%%SITE_PERL%%/auto/PDF/Reuse/checkContentStream.al +%%SITE_PERL%%/auto/PDF/Reuse/checkResources.al +%%SITE_PERL%%/auto/PDF/Reuse/createCharProcs.al +%%SITE_PERL%%/auto/PDF/Reuse/crossrefObj.al +%%SITE_PERL%%/auto/PDF/Reuse/defInit.al +%%SITE_PERL%%/auto/PDF/Reuse/defLadda.al +%%SITE_PERL%%/auto/PDF/Reuse/descend.al +%%SITE_PERL%%/auto/PDF/Reuse/errLog.al +%%SITE_PERL%%/auto/PDF/Reuse/extractName.al +%%SITE_PERL%%/auto/PDF/Reuse/extractObject.al +%%SITE_PERL%%/auto/PDF/Reuse/fillTheForm.al +%%SITE_PERL%%/auto/PDF/Reuse/findBarFont.al +%%SITE_PERL%%/auto/PDF/Reuse/findDir.al +%%SITE_PERL%%/auto/PDF/Reuse/getImage.al +%%SITE_PERL%%/auto/PDF/Reuse/getKnown.al +%%SITE_PERL%%/auto/PDF/Reuse/getObject.al +%%SITE_PERL%%/auto/PDF/Reuse/getPage.al +%%SITE_PERL%%/auto/PDF/Reuse/inkludera.al +%%SITE_PERL%%/auto/PDF/Reuse/kolla.al +%%SITE_PERL%%/auto/PDF/Reuse/mergeLinks.al +%%SITE_PERL%%/auto/PDF/Reuse/ordnaBookmarks.al +%%SITE_PERL%%/auto/PDF/Reuse/prAltJpeg.al +%%SITE_PERL%%/auto/PDF/Reuse/prBar.al +%%SITE_PERL%%/auto/PDF/Reuse/prBookmark.al +%%SITE_PERL%%/auto/PDF/Reuse/prCid.al +%%SITE_PERL%%/auto/PDF/Reuse/prCompress.al +%%SITE_PERL%%/auto/PDF/Reuse/prDoc.al +%%SITE_PERL%%/auto/PDF/Reuse/prDocDir.al +%%SITE_PERL%%/auto/PDF/Reuse/prDocForm.al +%%SITE_PERL%%/auto/PDF/Reuse/prExtract.al +%%SITE_PERL%%/auto/PDF/Reuse/prField.al +%%SITE_PERL%%/auto/PDF/Reuse/prGetLogBuffer.al +%%SITE_PERL%%/auto/PDF/Reuse/prGraphState.al +%%SITE_PERL%%/auto/PDF/Reuse/prId.al +%%SITE_PERL%%/auto/PDF/Reuse/prIdType.al +%%SITE_PERL%%/auto/PDF/Reuse/prImage.al +%%SITE_PERL%%/auto/PDF/Reuse/prInit.al +%%SITE_PERL%%/auto/PDF/Reuse/prInitVars.al +%%SITE_PERL%%/auto/PDF/Reuse/prJpeg.al +%%SITE_PERL%%/auto/PDF/Reuse/prJs.al +%%SITE_PERL%%/auto/PDF/Reuse/prLink.al +%%SITE_PERL%%/auto/PDF/Reuse/prLog.al +%%SITE_PERL%%/auto/PDF/Reuse/prLogDir.al +%%SITE_PERL%%/auto/PDF/Reuse/prMbox.al +%%SITE_PERL%%/auto/PDF/Reuse/prSinglePage.al +%%SITE_PERL%%/auto/PDF/Reuse/prTouchUp.al +%%SITE_PERL%%/auto/PDF/Reuse/prVers.al +%%SITE_PERL%%/auto/PDF/Reuse/prep.al +%%SITE_PERL%%/auto/PDF/Reuse/quickxform.al +%%SITE_PERL%%/auto/PDF/Reuse/sidAnalys.al +%%SITE_PERL%%/auto/PDF/Reuse/skrivJS.al +%%SITE_PERL%%/auto/PDF/Reuse/skrivKedja.al +%%SITE_PERL%%/auto/PDF/Reuse/translate.al +%%SITE_PERL%%/auto/PDF/Reuse/unZipPrepare.al +%%SITE_PERL%%/auto/PDF/Reuse/xRefs.al +%%SITE_PERL%%/auto/PDF/Reuse/xform.al +%%SITE_PERL%%/auto/PDF/Reuse/xrefSection.al +%%PERL5_MAN3%%/PDF::Reuse.3.gz +%%PERL5_MAN3%%/PDF::Reuse::Util.3.gz