Compare commits

...

1 Commits
1.21 ... 1.22

Author SHA1 Message Date
Martin Kutter
903b3e95e4 import SOAP-WSDL 1.22 from CPAN
git-cpan-module:   SOAP-WSDL
git-cpan-version:  1.22
git-cpan-authorid: MKUTTER
git-cpan-file:     authors/id/M/MK/MKUTTER/SOAP-WSDL-1.22.tar.gz
2009-12-12 19:47:39 -08:00
6 changed files with 1030 additions and 787 deletions

View File

@@ -1,7 +1,12 @@
use Module::Build;
Module::Build->new(
dist_abstract => 'WSDL support for SOAP::Lite',
module_name => 'SOAP::WSDL',
license => 'artistic',
requires => { 'SOAP::Lite' => 0.55, 'XML::XPath' => 0 }
)->create_build_script;
Module::Build->new(
dist_abstract => 'WSDL support for SOAP::Lite',
module_name => 'SOAP::WSDL',
license => 'artistic',
requires => {
'SOAP::Lite' => 0.,
'XML::XPath' => 0
},
buildrequires => { 'Test::More' => 0 },
)->create_build_script;

View File

@@ -1,3 +1,10 @@
* v1.22 2007/05/30 - auto-discover service and port again
- re-introduces auto-detecting of servicename and portname
- fixes #27325: Test fails with Test::Pod::Coverage v 1.06.
- Now build requires Test::More
- documentation update
- cosmetics
2007/05/28 private methods made private and pod update
- added pod tests
- made encodeComplexType and method generators private

View File

@@ -1,21 +1,18 @@
---
name: SOAP-WSDL
version: 1.21
author:
- |-
Martin Kutter <martin.kutter@fen-net.de>
Giovanni S. Fois giovannisfois@tiscali.it
version: 1.22
author: []
abstract: WSDL support for SOAP::Lite
license: artistic
resources:
license: http://opensource.org/licenses/artistic-license.php
requires:
SOAP::Lite: 0.55
SOAP::Lite: 0
XML::XPath: 0
provides:
SOAP::WSDL:
file: lib/SOAP/WSDL.pm
version: 1.21
version: 1.22
generated_by: Module::Build version 0.28
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html

11
README
View File

@@ -20,13 +20,10 @@ need the following packages:
INSTALLING
Use the usual mantra:
perl Makefile.PL
make
make test
make install
perl Build.PL
perl Build
perl Build test
perl Build install
LICENSE

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD" if $@;
eval { use Test::Pod::Coverage 1.08 };
plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD" if $@;
BEGIN