Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CEDBE84D44 for ; Tue, 4 Jul 2023 10:55:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at 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 nfm3J6pVpgI7 for ; Tue, 4 Jul 2023 10:55:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DE87284D39 for ; Tue, 4 Jul 2023 10:55:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D1249FA89; Tue, 4 Jul 2023 10:55:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688468103193970" MIME-Version: 1.0 Date: Tue, 4 Jul 2023 10:55:03 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/textproc/p5-XML-Generator To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20230704105503.D1249FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688468103193970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Tue Jul 4 10:55:03 UTC 2023 Modified Files: pkgsrc/textproc/p5-XML-Generator: Makefile distinfo Log Message: Update to 1.13 Upstream changes: 1.13 -- Sat Apr 29 21:45:32 ADT 2023 Production Release of 1.12 no changes. [Significant Updates since 1.11] Two fairly minor updates that should not impact anyone much. Dropping support for 5.008 - if you really need it send a PR to fix. There has been a longstanding "bug" that inserted standalone in the xml declaration whether it was needed or not. This makes it optional if it is not required for externally-defined DTD or directly specified. - 1a4e7a0 Update version for Release 1.13 - abb366d v1.12 1.12 -- Sat Apr 29 11:55:46 ADT 2023 [Significant Updates since 1.11] Two fairly minor updates that should not impact anyone much. Dropping support for 5.008 - if you really need it send a PR to fix. There has been a longstanding "bug" that inserted standalone in the xml declaration whether it was needed or not. This makes it optional if it is not required for externally-defined DTD or directly specified. - 1a7defd Forgot to increment the number of tests - 7a05609 Fix standalone bug - aa3c19d Add autoprereqs - a458ec3 Drop support for perl 5.008 - 85847a1 v1.11 1.11 -- Mon Apr 17 17:17:55 ADT 2023 [Significant Updates since 1.09] Allow the xml tag attributes to be specified during construction when conformance is not 'strict' by Wesley Schwengle (waterkip) Release 1.10 for production - 0ff9e8b Update for production release - 85396bc Update Copyright year - 30c95bf v1.10 1.10 -- Sun Apr 16 20:10:11 ADT 2023 [Significant Updates since 1.09] Allow the xml tag attributes to be specified during construction when conformance is not 'strict' - efc7d9d Update for release - 83b1699 Remove VERSION number from git repo - a49e891 Add new xml option to constructor - 4171530 v1.09 1.09 -- Fri Feb 18 23:06:27 AST 2022 - b31c19f Increment version - 1a3fa9e Fix RT 49038: Doc bug - escaping - d398d9c Fix dependency info 1.08 -- Thu Feb 17 20:00:24 AST 2022 [Significant Updates since 1.04] - Fix RT 77323: escape all characters outside the normal ASCII range - Fix RT 80273 v1.04 incorrectly escaping stringified inner tags - Fix RT 70986 and provides test - Move to Dist::Zilla to build [Changes since 1.07] - 6258a3b Update version number for release - c9a09d4 v1.07 1.07 -- Thu Feb 17 16:58:42 AST 2022 - c70c220 Add .gitignore - 124e36a Update version and Dist::Zilla settings - 0f6ccd0 Fix some pod issues 1.06 -- Thu Feb 17 08:04:38 AST 2022 - 7c9d6d5 v1.06 - a676ff3 Merge pull request #1 from perl-net-saml2/distzilla - d565282 Move to Dist::Zilla 1.05 Wed Feb 16 22:00:00 2022 - 1eb746e (tag: 1.05) Update for new release - 0e895a0 Add github action - f636f4b Fix RT 77323: escape all characters outside the normal ASCII range - 423c2cf Fix RT 80273 v1.04 incorrectly escaping stringified inner tags - 8ef1c52 Fixes RT 70986 and provides test To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/textproc/p5-XML-Generator/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/p5-XML-Generator/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688468103193970 Content-Disposition: inline Content-Length: 1693 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/p5-XML-Generator/Makefile diff -u pkgsrc/textproc/p5-XML-Generator/Makefile:1.18 pkgsrc/textproc/p5-XML-Generator/Makefile:1.19 --- pkgsrc/textproc/p5-XML-Generator/Makefile:1.18 Tue Jun 28 11:36:41 2022 +++ pkgsrc/textproc/p5-XML-Generator/Makefile Tue Jul 4 10:55:03 2023 @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.18 2022/06/28 11:36:41 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2023/07/04 10:55:03 wen Exp $ # -DISTNAME= XML-Generator-1.04 +DISTNAME= XML-Generator-1.13 PKGNAME= p5-${DISTNAME} -PKGREVISION= 11 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=XML/} Index: pkgsrc/textproc/p5-XML-Generator/distinfo diff -u pkgsrc/textproc/p5-XML-Generator/distinfo:1.6 pkgsrc/textproc/p5-XML-Generator/distinfo:1.7 --- pkgsrc/textproc/p5-XML-Generator/distinfo:1.6 Tue Oct 26 11:22:50 2021 +++ pkgsrc/textproc/p5-XML-Generator/distinfo Tue Jul 4 10:55:03 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2021/10/26 11:22:50 nia Exp $ +$NetBSD: distinfo,v 1.7 2023/07/04 10:55:03 wen Exp $ -BLAKE2s (XML-Generator-1.04.tar.gz) = acf1c8fdc1126dd158f3db538fd7ab11bd7611a3df4a0972d70b82ed92a8468c -SHA512 (XML-Generator-1.04.tar.gz) = ce151a2d575c9ec4cd42819a5d573bfc4985e0daa3945c310d61bb0a6376e4b8a0dcef5ce89e444795d99c9751719d45981675d1418ba6d729d152187688d552 -Size (XML-Generator-1.04.tar.gz) = 24606 bytes +BLAKE2s (XML-Generator-1.13.tar.gz) = 0a5edc119f35938fc1dc3f25c43b476bedbd51b6e608323eea2bcdac21130433 +SHA512 (XML-Generator-1.13.tar.gz) = ae2b09633a7d9d1bf6cc3ca8c19532585e69534f865e712969cff50d60d1e05589dfbfae6a5ecdb59ef68fbb127431744bf09b0bf91a1c86a9853c596667d248 +Size (XML-Generator-1.13.tar.gz) = 45541 bytes --_----------=_1688468103193970--