summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmonz <schmonz>2014-07-30 21:55:25 +0000
committerschmonz <schmonz>2014-07-30 21:55:25 +0000
commitbe2f20d8c3f415a3df7d8ab8634437436be77ecb (patch)
tree954013dfbe1efa6b24e62b579ed4e0a059b66d5d
parent4fce8979c630a121edf280fe992df9140c1e4455 (diff)
downloadpkgsrc-be2f20d8c3f415a3df7d8ab8634437436be77ecb.tar.gz
Update to 0.78. From the changelog:
* lib/RPC/XML.pm A patch to loop detection in smart_encode from Dag-Erling Smørgrav. Some other minor bits. * lib/RPC/XML/Procedure.pm RT #83108: Fixed a spelling error. Some other fixes, too. * lib/RPC/XML.pm RT #86187: Force key-ordering in struct as_string and serialize. Was getting some intermittent bug reports of failures in t/15_serialize.t that amounted to the keys in a fault struct not being in consistent order. * lib/RPC/XML.pm * t/15_serialize.t Undo the previous change and fix the test. The previous change didn't feel right, so this rolls it back and fixes the problem at the level of the test, instead. * Makefile.PL * lib/RPC/XML.pm * lib/RPC/XML/Client.pm * lib/RPC/XML/Server.pm Replace direct evals for loading optional modules with Module::Load. Required adding this to Makefile.PL because Module::Load is not core in 5.8.8. Also did some slight doc tweaking. * lib/RPC/XML.pm * lib/RPC/XML/Client.pm Merge pull request #5 from alexrj/utf8-encode. Use utf8::encode() instead of utf8::downgrade(). * lib/RPC/XML.pm * lib/RPC/XML/Client.pm * lib/RPC/XML/Server.pm Finish the uft8 encode vs. downgrade change from the previous commit. Changed in places that were overlooked, and adjusted the version number in all three modules. * lib/RPC/XML.pm * lib/RPC/XML/Parser/XMLLibXML.pm Merge pull request #6 from dctabuyz/master. Added 'no_blanks' libxml option to skip blank XML::LibXML::Text nodes. * lib/RPC/XML/Server.pm Merge pull request #7 from kvar/master. Initialize $do_compress in RPC::XML::Server between requests. * lib/RPC/XML.pm * lib/RPC/XML/Parser/XMLLibXML.pm * lib/RPC/XML/Server.pm Bump version numbers on modules changed in github pulls. * t/15_serialize.t Fix a test failure on Windows. * lib/RPC/XML.pm RT #70408: Fix spelling error in man page, reported by Debian group. * t/90_rt54183_sigpipe.t Fix to handle cases where server creation fails. Now skips the tests rather than dying. * lib/RPC/XML/Client.pm RT #67486: Add port to Host header in client requests. * lib/RPC/XML/Server.pm RT #65341: Added "use" of forgotten library File::Temp. This was causing failure when "message_file_thresh" kicked in. * t/10_data.t RT #78602: Changed 64-bit test from use64bitint to longsize. On some systems (such as OS X), use64bitint can be true even when in 32-bit mode. * t/21_xml_libxml.t Fix from Christian Walde, skip passed test on Windows. * lib/RPC/XML/Server.pm * t/40_server.t Checkpoint refactoring and additional tests. Work is not complete here, but the Net::Server changes demand immediate attention * t/20_xml_parser.t RT #72780: Check for a possible parser failure. One instance of XML::Parser failing to parse the extern entities test. Cannot reproduce, so wrap it in a "skip" block for now. * lib/RPC/XML/Procedure.pm * t/30_method.t RT #71452: Correct handling of dateTime parameters. Existing code in lib/RPC/XML/Procedure.pm did not properly handle parameters of the dateTime.iso8601 type. Also, there were no tests for these. * MANIFEST * t/30_method.t (deleted) * t/30_proceudre.t (added) Renamed t/30_method.t to t/30_procedure.t. * lib/RPC/XML/Server.pm RT #77992: Make RPC::XML::Server work with Net::Server again, after the API changes of Net::Server 2.x.
-rw-r--r--net/p5-RPC-XML/Makefile11
-rw-r--r--net/p5-RPC-XML/distinfo8
2 files changed, 10 insertions, 9 deletions
diff --git a/net/p5-RPC-XML/Makefile b/net/p5-RPC-XML/Makefile
index 14a11ea7ec6..fcc9b20fa06 100644
--- a/net/p5-RPC-XML/Makefile
+++ b/net/p5-RPC-XML/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.16 2014/05/29 23:37:10 wiz Exp $
+# $NetBSD: Makefile,v 1.17 2014/07/30 21:55:25 schmonz Exp $
-DISTNAME= RPC-XML-0.76
+DISTNAME= RPC-XML-0.78
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 3
CATEGORIES= net www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=RPC/}
@@ -13,12 +12,14 @@ COMMENT= XML-RPC client and server library for Perl
LICENSE= ${PERL5_LICENSE}
DEPENDS+= {perl>=5.10,p5-PathTools>=0.8}:../../devel/p5-PathTools
-DEPENDS+= {perl>=5.10,p5-Scalar-List-Utils>=1.2}:../../devel/p5-Scalar-List-Utils
-DEPENDS+= p5-XML-LibXML>=1.70:../../textproc/p5-XML-LibXML
+DEPENDS+= {perl>=5.10,p5-Scalar-List-Utils>=1.19}:../../devel/p5-Scalar-List-Utils
+#DEPENDS+= p5-Module-Load>=0.24:../../devel/p5-Module-Load
+DEPENDS+= p5-XML-LibXML>=1.85:../../textproc/p5-XML-LibXML
DEPENDS+= p5-XML-Parser>=2.31:../../textproc/p5-XML-Parser
DEPENDS+= p5-libwww>=5.834:../../www/p5-libwww
DEPENDS+= p5-DateTime>=0.70:../../time/p5-DateTime
DEPENDS+= p5-DateTime-Format-ISO8601>=0.07:../../time/p5-DateTime-Format-ISO8601
+DEPENDS+= p5-Compress-Raw-Zlib>=2.063:../../devel/p5-Compress-Raw-Zlib
USE_TOOLS+= gmake
USE_LANGUAGES= # empty
diff --git a/net/p5-RPC-XML/distinfo b/net/p5-RPC-XML/distinfo
index ce19c8ab9c3..41b7a48232a 100644
--- a/net/p5-RPC-XML/distinfo
+++ b/net/p5-RPC-XML/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2011/11/05 20:26:27 hiramatsu Exp $
+$NetBSD: distinfo,v 1.10 2014/07/30 21:55:25 schmonz Exp $
-SHA1 (RPC-XML-0.76.tar.gz) = a2f807a2d3e8ac85bf83f4722706f69e25a38fe5
-RMD160 (RPC-XML-0.76.tar.gz) = d455e0092a92211b552833fa55b48107a6cc64eb
-Size (RPC-XML-0.76.tar.gz) = 203771 bytes
+SHA1 (RPC-XML-0.78.tar.gz) = 3f67aeaafa98097410cd956a13fa7b8e549e5687
+RMD160 (RPC-XML-0.78.tar.gz) = c86bf864881494a48ff76b670d6ba35199db4ace
+Size (RPC-XML-0.78.tar.gz) = 207243 bytes