945a7e09f0
Upstream changes: 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)
34 lines
1.2 KiB
Makefile
34 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.31 2021/09/05 07:38:42 wen Exp $
|
|
|
|
DISTNAME= RPC-XML-0.82
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= net www perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=RPC/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.blackperl.com/RPC::XML/
|
|
#HOMEPAGE= http://search.cpan.org/dist/RPC-XML/
|
|
COMMENT= XML-RPC client and server library for Perl
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
# if Net::Server exists, t/60 may fail due to more test items
|
|
# t/60_net_server.t ............... skipped: Net::Server not available
|
|
#EPENDS+= p5-Net-Server-[0-9]*:../../net/p5-Net-Server
|
|
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
|
|
|
|
USE_TOOLS+= gmake
|
|
USE_LANGUAGES= # empty
|
|
|
|
SUBST_CLASSES+= usebase
|
|
SUBST_STAGE.usebase= pre-configure
|
|
SUBST_FILES.usebase= lib/RPC/XML.pm
|
|
SUBST_SED.usebase= -e "s|^use base 'RPC::XML::|use parent -norequire, 'RPC::XML::|g"
|
|
|
|
PERL5_PACKLIST= auto/RPC/XML/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|