Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=WmlRMNID; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=ELFiTmFD Received: by mail.netbsd.org (Postfix, from userid 605) id 7284B84D4C; Sun, 28 Apr 2024 00:43:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714265020; bh=SGImFs1bzeiwNV0S/c6inQY9NRYP0MzExPTgHHa0NcE=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=WmlRMNIDBP0zfkKeKVg8Fi7JzSqbhV23vzone5obFvmSktG8imzG4XGNdLXIkF/S4 zh36jXe48yXFtZjQzbNktCOmMIfln8vOcdtb7ahFfVw5Zn0F8te/RdV1Wjzix7nelp aWt4xE+PK8c9itW0cAN48+1Nm47dqQL7qZS9ccIg= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6152184D31 for ; Sun, 28 Apr 2024 00:43:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id JZ57ZOHnAbRc for ; Sun, 28 Apr 2024 00:43:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id ADA1784D0E for ; Sun, 28 Apr 2024 00:43:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714265018; bh=SGImFs1bzeiwNV0S/c6inQY9NRYP0MzExPTgHHa0NcE=; h=Date:From:Subject:To:Reply-To; b=ELFiTmFDmI6L461CGLNhlogDKcuvBkMIJJH6ES35JsSeL24w45L4Au6Z9140B7p4I zmtTHpQZXakoBPM/EyuExN8gyhFoSElp4YDzD1JbM+SlyhZ62wq4pNT4eh/60KiipU X8mOc6s8Mzgswwm0uOHtx7N4wba/ZDz2cJYS0qwc= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9F425FA2C; Sun, 28 Apr 2024 00:43:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714265018261320" MIME-Version: 1.0 Date: Sun, 28 Apr 2024 00:43:38 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/textproc/p5-PDF-Table To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20240428004338.9F425FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714265018261320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Sun Apr 28 00:43:38 UTC 2024 Modified Files: pkgsrc/textproc/p5-PDF-Table: Makefile distinfo Log Message: Update to 1.006 Upstream changes: === Version 1.006 (2024-03-20) examples/*.pl Add ability to read an ENV environmental variable 'PDF_prefLib' to get the preferred library to use (API2 or Builder). Checks for command line A or B (or -A -B), ENV{PDF_prefLib} A or B, PDF::API2 or PDF::Builder, examples/PDFpref file A or B, PDF::API2 or PDF::Builder. This is of real interest only when BOTH libraries are installed, and you need to pick one or the other to run with. Note that util/3_examples.pl also has the ability to give 'A' or 'B' on the command line to indicate a preference for API2 or Builder (if both are installed). Note that the t-tests use a dummy library PDFAPI2Mock, that provides enough of the interface to let the tests be run, regardless of whether you already have API2 or Builder installed! However, you will still need to have at least one of the two installed in order to run the examples or otherwise use PDF::Table. lib/PDF/Table.pm, examples/no_repeat.pl (new), util/3_examples Was incorrectly defaulting undefined header repeat switch, in a manner that did not allow the switch to be '0': no repeating the header (#77). Add new example of multipage table without repeating header. README.md update to point to new Home Page structure on catskilltech.com including both full documentation and examples To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/textproc/p5-PDF-Table/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/textproc/p5-PDF-Table/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714265018261320 Content-Disposition: inline Content-Length: 1630 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/p5-PDF-Table/Makefile diff -u pkgsrc/textproc/p5-PDF-Table/Makefile:1.30 pkgsrc/textproc/p5-PDF-Table/Makefile:1.31 --- pkgsrc/textproc/p5-PDF-Table/Makefile:1.30 Thu Jul 6 09:41:42 2023 +++ pkgsrc/textproc/p5-PDF-Table/Makefile Sun Apr 28 00:43:38 2024 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2023/07/06 09:41:42 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2024/04/28 00:43:38 wen Exp $ -DISTNAME= PDF-Table-1.005 +DISTNAME= PDF-Table-1.006 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=PDF/} Index: pkgsrc/textproc/p5-PDF-Table/distinfo diff -u pkgsrc/textproc/p5-PDF-Table/distinfo:1.17 pkgsrc/textproc/p5-PDF-Table/distinfo:1.18 --- pkgsrc/textproc/p5-PDF-Table/distinfo:1.17 Tue Jul 4 02:25:13 2023 +++ pkgsrc/textproc/p5-PDF-Table/distinfo Sun Apr 28 00:43:38 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.17 2023/07/04 02:25:13 wen Exp $ +$NetBSD: distinfo,v 1.18 2024/04/28 00:43:38 wen Exp $ -BLAKE2s (PDF-Table-1.005.tar.gz) = 3396e95e177607ca93470b1415bfbd15e369313e028a4f594717aa48a031c64e -SHA512 (PDF-Table-1.005.tar.gz) = b93aaeb37ec8500fecd50ff3e5bdf79872ee942b76561f6ad62a6f33907fec3401af571272063fcb2950d73f6e92355e1f34ade0ff3448898eb0b0ca037c178f -Size (PDF-Table-1.005.tar.gz) = 91154 bytes +BLAKE2s (PDF-Table-1.006.tar.gz) = 3b6afa4ed87259e003b76765554d7829ea0063c0fe5474d93b82e9c361b8d557 +SHA512 (PDF-Table-1.006.tar.gz) = 04d201a1a1f3f69f356f8a74868775bd2c340a9f369ec0ef773ac222955306beb4e3614d4ffa7172377fe4fd3cb791d698619c71ae284c89c40e9e9dbe944eda +Size (PDF-Table-1.006.tar.gz) = 92514 bytes --_----------=_1714265018261320--