diff --git a/Build.PL b/Build.PL index e5ace02..00980cb 100644 --- a/Build.PL +++ b/Build.PL @@ -2,6 +2,8 @@ use Module::Build; Module::Build->new( + create_makefile_pl => 'passthrough', + dist_name => 'SOAP-WSDL', dist_abstract => 'WSDL support for SOAP::Lite', module_name => 'SOAP::WSDL', license => 'artistic', diff --git a/CHANGES b/CHANGES index c498e77..dbc8e0c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +* v1.25 2007/09/24 - maintenance +- added Makefile.PL to ease installation + +* v1.24 2007/09/22 - bugfix +- fixes issue reported by David Bussenschutt: wsdlinit always uses new SOAP::Schema instance. + * v1.23 2007/06/05 - bugfixes and optimizations - fixes #27426: missing prereq XML::XPath - fixed build_requires diff --git a/MANIFEST b/MANIFEST index 5c3918e..d16ff4e 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2,6 +2,7 @@ Build.PL CHANGES HACKING lib/SOAP/WSDL.pm +Makefile.PL MANIFEST This list of files META.yml README diff --git a/META.yml b/META.yml index e686b54..718dea4 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- name: SOAP-WSDL -version: 1.24 +version: 1.25 author: [] abstract: WSDL support for SOAP::Lite license: artistic @@ -12,7 +12,7 @@ requires: provides: SOAP::WSDL: file: lib/SOAP/WSDL.pm - version: 1.24 + version: 1.25 generated_by: Module::Build version 0.2808 meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.2.html diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..192903a --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,31 @@ +# Note: this file was auto-generated by Module::Build::Compat version 0.03 + + unless (eval "use Module::Build::Compat 0.02; 1" ) { + print "This module requires Module::Build to install itself.\n"; + + require ExtUtils::MakeMaker; + my $yn = ExtUtils::MakeMaker::prompt + (' Install Module::Build now from CPAN?', 'y'); + + unless ($yn =~ /^y/i) { + die " *** Cannot install without Module::Build. Exiting ...\n"; + } + + require Cwd; + require File::Spec; + require CPAN; + + # Save this 'cause CPAN will chdir all over the place. + my $cwd = Cwd::cwd(); + + CPAN::Shell->install('Module::Build::Compat'); + CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate + or die "Couldn't install Module::Build, giving up.\n"; + + chdir $cwd or die "Cannot chdir() back to $cwd: $!"; + } + eval "use Module::Build::Compat 0.02; 1" or die $@; + + Module::Build::Compat->run_build_pl(args => \@ARGV); + require Module::Build; + Module::Build::Compat->write_makefile(build_class => 'Module::Build'); diff --git a/lib/SOAP/WSDL.pm b/lib/SOAP/WSDL.pm index d0d80fa..fa2c3fb 100644 --- a/lib/SOAP/WSDL.pm +++ b/lib/SOAP/WSDL.pm @@ -11,7 +11,7 @@ use warnings; @ISA = qw(SOAP::Lite); -$VERSION = "1.24"; +$VERSION = "1.25"; # SOAP::Lite has changed the name for speciying a schema in 0.6? # method before: schema @@ -1568,6 +1568,6 @@ Replace whitespace by '@' in E-Mail addresses. $LastChangedBy: kutterma $ $HeadURL: http://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/branches/1.21/lib/SOAP/WSDL.pm $ - $Rev: 20 $ + $Rev: 274 $ =cut