Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-RPC-XML-0.82-1.6 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: perl-RPC-XML Distribution: openSUSE Tumbleweed
Version: 0.82 Vendor: openSUSE
Release: 1.6 Build date: Sat Jan 27 19:34:44 2024
Group: Unspecified Build host: i02-ch2d
Size: 685372 Source RPM: perl-RPC-XML-0.82-1.6.src.rpm
Packager: http://bugs.opensuse.org
Url: https://metacpan.org/release/RPC-XML
Summary: Set of classes for core data, message and XML handling
The *RPC::XML* package is an implementation of the *XML-RPC* standard. The
package as a whole provides classes for data, for clients, for servers and
for parsers (based on the XML::Parser and XML::LibXML packages from CPAN).

This module provides a set of classes for creating values to pass to the
constructors for requests and responses. These are lightweight objects,
most of which are implemented as blessed scalar references so as to
associate specific type information with the value. Classes are also
provided for requests, responses and faults (errors).

This module does not actually provide any transport implementation or
server basis. For these, see RPC::XML::Client and RPC::XML::Server,
respectively.

Provides

Requires

License

Artistic-1.0 OR GPL-1.0-or-later

Changelog

* Thu Apr 08 2021 Tina Müller <timueller+perl@suse.de>
  - updated to 0.82
    see /usr/share/doc/packages/perl-RPC-XML/ChangeLog
    0.82	Wednesday January  6, 2021, 09:59:00 AM -0800
    * Makefile.PL
    * lib/RPC/XML/Server.pm
    Bump version numbers.
    * Makefile.PL
    * lib/RPC/XML/Server.pm
    * t/40_server.t
    * t/40_server_xmllibxml.t
    * t/41_server_hang.t
    * t/60_net_server.t
    * t/util.pl
    RT #120472: Applied patch from Petr Písař for fixes to IPv6
    support. Full detail in the message for this commit in the git
    repository.
    0.81	Tuesday January  5, 2021, 06:33:00 PM -0800
    * MANIFEST
    * perlcritic.rc (added)
    Add a perlcritic.rc file for testers who run author tests.
    * t/40_server.t
    * t/40_server_xmllibxml.t
    Remove redundant testing and general clean-up. Removed tests of
    url() that were just re-testing HTTP::Daemon::url().
    * lib/RPC/XML/Client.pm
    Parameterize the request-as-string debug feature.
    * lib/RPC/XML/Client.pm
    Merge pull request #13 from
    enrico-sorcinelli/add-request-string. Added xmlrpc request
    string as object property. (Enrico Sorcinelli)
* Thu Mar 11 2021 Dominique Leuenberger <dimstar@opensuse.org>
  - Add perl(HTTP::Daemon) BuildRequires: so far, this was pulled in
    by perl-libwww-perl. The RPC-XML library itself can work with or
    without HTTP::Daemon, but the test suite has an explicit test for
    it.
* Thu Aug 22 2019 Tina Mueller <tina.mueller@suse.com>
  - Remove patches not needed anymore:
    * RPC-XML-0.60-rev127.dif
    * RPC-XML-0.76-extern_ent.dif
    * RPC-XML-0.78-reproducible.diff
* Wed Apr 03 2019 Stephan Kulow <coolo@suse.com>
  - updated to 0.80
    see /usr/share/doc/packages/perl-RPC-XML/ChangeLog
    0.80	Sunday May  8, 2016, 12:45:00 PM -0700
    * etc/make_method
    Make the build reproducible by dropping timestamps in
    make_method output. (Niko Tyni)
    * t/40_server.t
    * t/40_server_xmllibxml.t
    * t/50_client.t
    Fixes for test problems with Strawberry Perl.
    * lib/RPC/XML/Client.pm
    Fix leak caused by failing to free Expat parser. We don't want
    to return from the method until the parser's been freed. We
    therefore need to call $parser->release() before the return
    statements caused by request failures. (Tom Grimwood-Taylor)
    * lib/RPC/XML/Server.pm
    One socket-opt change, one typo corrected.
    * lib/RPC/XML.pm
    Applied patch for numeric regexes and critic cleanup. Addresses
    GitHub pull request #10 and RT #111636.
    * t/60_net_server.t
    RT #99578: Work-around fix for Net::Server+IO::Socket::IP. If a
    system's IPv6 declaration of localhost was before the IPv4
    declaration in the hosts file, this test would fail.
* Tue Mar 08 2016 coolo@suse.com
  - update to 0.79
      Test clean-up/fixes to address CPAN test failures. Should
      address problems with having IO::Socket::IP acting in place of
      IO::Socket::INET and also address some issues with a dynloader
      bug being triggered by t/70_compression_detect.t.
  - possibly obsoleting RPC-XML-0.60-rev127.dif
* Tue Mar 08 2016 coolo@suse.com
  - add RPC-XML-0.78-reproducible.diff to remove date from build result
* Tue Apr 14 2015 coolo@suse.com
  - updated to 0.78
    see /usr/share/doc/packages/perl-RPC-XML/ChangeLog
    0.78	Thursday February  6, 2014, 08:00:00 PM -0800
    * 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.
* Mon Jul 01 2013 coolo@suse.com
  - add RPC-XML-0.77-fixtest.dif to make sure the serialization is
    reproducible even with hash randomization in perl 5.18 (RT#86187)
* Sun May 05 2013 mc@suse.com
  - update to version 0.77
    * Make RPC::XML::Server work with Net::Server again,
      after the API changes of Net::Server 2.x.
    * Correct handling of dateTime parameters
    * Add port to Host header in client requests.
    * Fix spelling error in man page
    * improve tests
  - remove patches which are unused since a long time
    * RPC-XML-0.53-ext-daemon-and-header-cb.dif
    * RPC-XML-0.60-fix-utf8.dif
* Mon Jun 04 2012 mls@suse.de
  - predeclare extern_ent so that it works with perl-5.16.0

Files

/usr/bin/make_method
/usr/lib/perl5/vendor_perl/5.38.2/Apache
/usr/lib/perl5/vendor_perl/5.38.2/Apache/RPC
/usr/lib/perl5/vendor_perl/5.38.2/Apache/RPC/Server.pm
/usr/lib/perl5/vendor_perl/5.38.2/Apache/RPC/Status.pm
/usr/lib/perl5/vendor_perl/5.38.2/Apache/RPC/status.xpl
/usr/lib/perl5/vendor_perl/5.38.2/RPC
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML.pm
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/Client.pm
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/Parser
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/Parser.pm
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/Parser/XMLLibXML.pm
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/Parser/XMLParser.pm
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/ParserFactory.pm
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/Procedure.pm
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/Server.pm
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/identity.xpl
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/introspection.xpl
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/listMethods.xpl
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/methodHelp.xpl
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/methodSignature.xpl
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/multicall.xpl
/usr/lib/perl5/vendor_perl/5.38.2/RPC/XML/status.xpl
/usr/share/doc/packages/perl-RPC-XML
/usr/share/doc/packages/perl-RPC-XML/ChangeLog
/usr/share/doc/packages/perl-RPC-XML/ChangeLog.xml
/usr/share/doc/packages/perl-RPC-XML/README
/usr/share/doc/packages/perl-RPC-XML/README.apache2
/usr/share/man/man1/make_method.1.gz
/usr/share/man/man3/Apache::RPC::Server.3pm.gz
/usr/share/man/man3/Apache::RPC::Status.3pm.gz
/usr/share/man/man3/RPC::XML.3pm.gz
/usr/share/man/man3/RPC::XML::Client.3pm.gz
/usr/share/man/man3/RPC::XML::Parser.3pm.gz
/usr/share/man/man3/RPC::XML::Parser::XMLLibXML.3pm.gz
/usr/share/man/man3/RPC::XML::Parser::XMLParser.3pm.gz
/usr/share/man/man3/RPC::XML::ParserFactory.3pm.gz
/usr/share/man/man3/RPC::XML::Procedure.3pm.gz
/usr/share/man/man3/RPC::XML::Server.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri Feb 2 00:13:08 2024