Update to version 0.55.

Remote attack vulnerability fixed.

PR:		37143
Submitted by:	maintainer
This commit is contained in:
Anders Nordby 2002-04-16 22:52:14 +00:00
parent 963ed9e594
commit 5a1a4be50b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57776
3 changed files with 4 additions and 27 deletions

View file

@ -6,13 +6,13 @@
# #
PORTNAME= SOAP-Lite PORTNAME= SOAP-Lite
PORTVERSION= 0.51 PORTVERSION= 0.55
CATEGORIES= net perl5 CATEGORIES= net perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= SOAP MASTER_SITE_SUBDIR= SOAP
PKGNAMEPREFIX= p5- PKGNAMEPREFIX= p5-
MAINTAINER= kapr@crosswinds.net MAINTAINER= kappa@freebsd.org.ua
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/MIME/Lite.pm:${PORTSDIR}/mail/p5-MIME-Lite \ BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/MIME/Lite.pm:${PORTSDIR}/mail/p5-MIME-Lite \
${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/MIME/Tools.pm:${PORTSDIR}/mail/p5-MIME-Tools \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/MIME/Tools.pm:${PORTSDIR}/mail/p5-MIME-Tools \
@ -23,6 +23,7 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/MIME/Lite.pm:${PORTS
RUN_DEPENDS= ${BUILD_DEPENDS} RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= yes PERL_CONFIGURE= yes
CONFIGURE_ARGS+= --noprompt
INSTALL_TARGET= pure_install INSTALL_TARGET= pure_install
MAN1= SOAPsh.pl.1 XMLRPCsh.pl.1 MAN1= SOAPsh.pl.1 XMLRPCsh.pl.1

View file

@ -1 +1 @@
MD5 (SOAP-Lite-0.51.tar.gz) = 6b35b54c56c348c1348c66dcfea346dd MD5 (SOAP-Lite-0.55.tar.gz) = 77618ef6822aa10eaa8770cc20f0d794

View file

@ -1,24 +0,0 @@
--- Makefile.PL.orig Mon May 28 17:12:36 2001
+++ Makefile.PL Mon May 28 17:14:23 2001
@@ -71,7 +71,7 @@
EOI
my %prerequisites;
-my $auto = ExtUtils::MakeMaker::prompt("\nDo you want to proceed with this configuration?" => 'yes') =~ /^\s*y/i;
+my $auto = "y";
foreach (split /(^[-\s]+$)/m, $prerequisites) {
print unless $auto;
@@ -83,11 +83,7 @@
}
}
-my $noncoretests = ExtUtils::MakeMaker::prompt('
-During "make test" phase we may run tests with several SOAP servers
-that may take long and may fail due to server/connectivity problems.
-
-Do you want to perform these tests in addition to core tests?', 'no') =~ /^\s*(y)/i;
+my $noncoretests = "n";
my $tests = join ' ', glob ($noncoretests ? 't/*.t' : 't/0*.t');