Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory vz-cvs-3.sog:/tmp/cvs-serv4091
Added Files:
net-ip-pm.info soap-lite-pm.info net-google-pm.info
net-dns-pm.info net-dns-pm.patch net-dav-server-pm.info
Log Message:
to 10.7
--- NEW FILE: soap-lite-pm.info ---
Info2: <<
Package: soap-lite%type_pkg[-ssl]-pm%type_pkg[perl]
version: 0.712
Revision: 6
###
Depends: <<
(%type_pkg[-ssl]) crypt-ssleay-pm%type_pkg[perl],
(%type_pkg[-ssl]) io-socket-ssl-pm%type_pkg[perl],
class-inspector-pm%type_pkg[perl],
constant-pm (>= 1.14-1),
data-uuid-pm%type_pkg[perl],
dime-tools-pm%type_pkg[perl],
fcgi-pm%type_pkg[perl],
getopt-long-pm%type_pkg[perl],
http-daemon-pm%type_pkg[perl],
io-compress-pm%type_pkg[perl],
io-stringy-pm,
libnet-pm%type_pkg[perl],
libwww-pm%type_pkg[perl],
mime-base64-pm%type_pkg[perl],
mime-lite-pm%type_pkg[perl],
mime-tools-pm%type_pkg[perl] (>= 6.106-1),
perl%type_pkg[perl]-core,
task-weaken-pm%type_pkg[perl],
uri-pm%type_pkg[perl],
version-pm%type_pkg[perl],
xml-parser-pm%type_pkg[perl]
<<
BuildDepends: <<
fink (>= 0.24.12),
test-harness-pm%type_pkg[perl]
<<
# * previously was unvarianted
# * previously had unvarianted compontents in some variants
# * former -bin splitoff merged back into main
# * automatic swapping among -ssl variants of this perlversion variant
Conflicts: <<
soap-lite-pm588-bin, soap-lite-pm5100-bin,
soap-lite-pm%type_pkg[perl], soap-lite-ssl-pm%type_pkg[perl]
<<
Replaces: <<
soap-lite-pm,
soap-lite-pm588-bin, soap-lite-pm5100-bin,
soap-lite-pm%type_pkg[perl], soap-lite-ssl-pm%type_pkg[perl]
<<
###
Source: mirror:cpan:authors/id/M/MK/MKUTTER/SOAP-Lite-%v.tar.gz
Source-MD5: fd71a0c0feff85f670ab4b2e571652a8
###
PatchScript: <<
### Fix user interaction
perl -pi.bak -e 's,ExtUtils::MakeMaker::prompt\(\<\<EOI.*,print \<\<EOI;,g'
Makefile.PL
### Remove SSL bits
[ "%type_pkg[-ssl]" = "-ssl" ] || perl -pi.bak -e 's,::SSL,SSL-disabled,g'
Makefile.PL
### Disable things that aren't currently available so get consistent build
### when they do become available
perl -pi -e 's/("MIME::Parser)(" => "6.106")/\1-disabled\2/' Makefile.PL
perl -pi -e 's/("SOAP::Transport::\S+)(" => 0.712)/\1-disabled\2/' Makefile.PL
perl -pi -e 's/("Apache)(" => 0)/\1-disabled\2/' Makefile.PL
<<
###
Type: perl (5.12.3), -ssl (boolean)
UpdatePOD: true
NoPerlTests: true
###
ConfigureParams: --noprompt
###
InstallScript: <<
#!/bin/sh -ex
%{default_script}
mkdir -p %i/lib/perl5/%type_raw[perl]/man
mv %i/share/man/man3 %i/lib/perl5/%type_raw[perl]/man/man3
for f in SOAPsh.pl stubmaker.pl XMLRPCsh.pl; do
mv %i/bin/${f} %i/bin/${f}%type_pkg[perl]
mv %i/share/man/man1/${f}.1
%i/share/man/man1/${f}%type_pkg[perl].1
done
<<
DocFiles: Changes README
PostInstScript: <<
if [ "$1" = configure ]; then
for f in SOAPsh.pl stubmaker.pl XMLRPCsh.pl; do
update-alternatives --install %p/bin/${f}
${f} %p/bin/${f}%type_pkg[perl] %type_pkg[perl] \
--slave %p/share/man/man1/${f}.1
${f}.1 %p/share/man/man1/${f}%type_pkg[perl].1
done
fi
<<
PreRmScript: <<
if [ "$1" = remove ]; then
for f in SOAPsh.pl stubmaker.pl XMLRPCsh.pl; do
update-alternatives --remove ${f}
%p/bin/${f}%type_pkg[perl]
done
fi
<<
DescPackaging: <<
Former Maintainer: Koen van der Drift <[email protected]>
-bin splitoff merged back into main as of 0.712-4
<<
Description: Simple Object Access Protocol (SOAP) modules
DescDetail: <<
SOAP::Lite for Perl is a collection of Perl modules which provides a simple
and lightweight interface to the Simple Object Access Protocol (SOAP) both
on client and server side.
To learn about SOAP, go to http://www.soaplite.com/#LINKS for more
information.
This version of SOAP::Lite supports a subset of the SOAP 1.1 specification
and has initial support for SOAP 1.2 specification.
See http://www.w3.org/TR/SOAP for details.
FEATURES
- Supports SOAP 1.1 spec.
- Interoperability tests with different implementations: Apache SOAP,
Frontier, Microsoft SOAP, Microsoft .NET, DevelopMentor, XMethods, 4s4c,
Phalanx, Kafka, SQLData, Lucin (in Java, Perl, C++, Python, VB, COM, XSLT).
- Provides COM interface. Single dll (standalone [2.5MB] or minimal [32kB]).
Works on Windows 9x/Me/NT/2K. Doesn't require ROPE or MSXML.
Examples in VB, Excel/VBA, C#, ASP, JavaScript, PerlScript and Perl.
- Provides transparent compression support for HTTP transport.
- Provides mod_soap module. Make SOAP server with a few lines in .htaccess
or .conf file.
- Includes XML::Parser::Lite (regexp-based XML parser) which runs instead
of XML::Parser where Perl 5.6 runs (even on WinCE) with some limitations.
- Includes XMLRPC::Lite, implementation of XML-RPC protocol on client and
server side. All transports and features of SOAP::Lite are available.
- Supports multipart/form-data MIME attachments.
- Supports circular linked lists and multiple references.
- Supports Map datatype (encoding of maps/hashes with arbitrary keys).
- Supports HTTPS protocol.
- Provides proxy support.
- Provides CGI/daemon/mod_perl/Apache::Registry server implementations.
- Provides TCP server implementation.
- Provides IO (STDIN/STDOUT/File) server implementation.
- Provides FTP client implementation.
- Supports single/multipart MIME attachment (parsing side only).
- Supports SMTP protocol.
- Provides POP3 server implementation.
- Supports M-POST and redirects in HTTP transport.
- Supports Basic/Digest server authentication.
- Works with CGI accelerators, like VelociGen and PerlEx.
- Supports UDDI interface on client side. See UDDI::Lite for details.
- Supports UDDI publishing API. Examples and documentation provided.
- Supports WSDL schema with stub and run-time access.
- Supports blessed object references.
- Supports arrays (both serialization and deserialization with autotyping).
- Supports custom serialization.
- Provides exception transport with custom exceptions
- Supports Base64 encoding.
- Supports XML entity encoding.
- Supports header attributes.
- Supports dynamic and static class/method binding.
- Supports objects-by-reference with simple garbage collection and
activation.
- Provides shell for interactive SOAP sessions.
- Supports out parameters binding.
- Supports transparent SOAP calls with autodispatch feature.
- Provides easy services deployment. Put module in specified directory and
it'll be accessible.
- Has tests, examples and documentation to let you be up and running in no
time.
<<
DescPort: <<
make test disabled, requires web access
<<
###
License: Artistic
Maintainer: None <[email protected]>
Homepage: http://search.cpan.org/dist/SOAP-Lite
# end of Info2 field:
<<
--- NEW FILE: net-google-pm.info ---
Info2: <<
Package: net-google-pm%type_pkg[perl]
Version: 1.0
Revision: 2
###
Depends: <<
libwww-pm%type_pkg[perl],
perl%type_pkg[perl]-core,
soap-lite-ssl-pm%type_pkg[perl] | soap-lite-pm%type_pkg[perl]
<<
BuildDepends: <<
fink (>= 0.30.2),
module-build-pm%type_pkg[perl]
<<
Replaces: net-google-pm (<= 0.60-1)
###
Source: mirror:cpan:authors/id/A/AS/ASCOPE/Net-Google-%v.tar.gz
Source-MD5: 47d272d1b4714bfb0852dc77e7632433
###
Type: perl (5.12.3)
NoPerlTests: true
###
DefaultScript: ModuleBuild
InstallScript: <<
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: Changes README
###
Description: OOP-ish interface to the Google SOAP API
DescPort: <<
make test - requires a Google API key, thus disabled
<<
###
License: Artistic/GPL
Maintainer: None <[email protected]>
Homepage: http://search.cpan.org/dist/Net-Google
<<
--- NEW FILE: net-dns-pm.patch ---
diff -Nurd -x'*~' Net-DNS-0.66.orig/Makefile.PL Net-DNS-0.66/Makefile.PL
--- Net-DNS-0.66.orig/Makefile.PL 2009-12-30 06:01:39.000000000 -0500
+++ Net-DNS-0.66/Makefile.PL 2010-08-09 06:22:37.000000000 -0400
@@ -45,6 +45,8 @@
'IPv6-tests!' => \$IPv6_tests,
);
+$online_tests = 0 if !defined $online_tests;
+$IPv6_tests = 1 if !defined $IPv6_tests;
#
--- NEW FILE: net-dns-pm.info ---
Info2: <<
Package: net-dns-pm%type_pkg[perl]
Version: 0.66
Revision: 1
Type: perl (5.12.3)
Description: Name-server resolver
License: Artistic/GPL
Maintainer: Daniel Macks <[email protected]>
Homepage: http://search.cpan.org/dist/Net-DNS/
BuildDepends: <<
fink (>= 0.24.12)
<<
Depends: <<
digest-sha-pm%type_pkg[perl],
digest-hmac-pm,
io-socket-inet6-pm%type_pkg[perl],
net-ip-pm,
perl%type_pkg[perl]-core,
socket6-pm%type_pkg[perl]
<<
PatchFile: %{ni}.patch
PatchFile-MD5: 0d28c38fdb9fc499d9b97f571ecd91b5
InfoTest: <<
TestDepends: digest-bubblebabble-pm
<<
Source: mirror:cpan:authors/id/O/OL/OLAF/Net-DNS-%v.tar.gz
Source-MD5: 1635d876324e3c2f6e277d5778bfe94c
UpdatePOD: true
DocFiles: Changes README TODO
InstallScript: <<
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DescPackaging: <<
Disable prompting during configuration by hardcoding response
to avoid network access during tests (both per packaging
standards). Can't find a ConfigureParams flag that works, so
hardcode in Makefile.PL.
<<
<<
--- NEW FILE: net-ip-pm.info ---
Package: net-ip-pm
Version: 1.25
Revision: 1
Type: perl
Description: Easy manipulation of IPv4 and IPv6 addresses
License: Artistic
Homepage: http://search.cpan.org/dist/Net-IP/
Maintainer: Daniel Macks <[email protected]>
Conflicts: net-ip-pm-bin (<< 1.25-1)
Replaces: net-ip-pm-bin (<< 1.25-1)
# Unpack Phase.
Source: mirror:cpan:authors/id/M/MA/MANU/Net-IP-%v.tar.gz
Source-MD5: a49c0b02a9b793ff60191cdafc0c202e
# Install Phase.
UpdatePOD: true
DocFiles: Changes COPYING README
# Documentation.
DescDetail: <<
This module provides functions to deal with IPv4/IPv6 addresses. The
module can be used as a class, allowing the user to instantiate IP
objects, which can be single IP addresses, prefixes, or ranges of
addresses. There is also a procedural way of accessing most of the
functions. Most subroutines can take either IPv4 or IPv6 addresses
transparently.
<<
DescPackaging: <<
Former maintainer: Blair Zajac <[email protected]>
<<
--- NEW FILE: net-dav-server-pm.info ---
Info2: <<
Package: net-dav-server-pm%type_pkg[perl]
Version: 1.302
Revision: 1
Source: mirror:cpan:authors/id/G/GW/GWADEJ/Net-DAV-Server-%v.tar.gz
Source-MD5: 1afaafac2a3652f145b80e30b884ca48
Type: perl (5.12.3)
UpdatePOD: true
BuildDepends: test-pod-pm
Depends: <<
class-accessor-pm,
dbd-sqlite-pm%type_pkg[perl],
dbi-pm%type_pkg[perl],
digest-sha1-pm%type_pkg[perl],
encode-pm%type_pkg[perl],
file-find-rule-filesys-virtual-pm,
file-slurp-pm,
http-date-pm%type_pkg[perl],
http-message-pm%type_pkg[perl],
libwww-pm%type_pkg[perl],
perl%type_pkg[perl]-core,
uri-pm%type_pkg[perl],
xml-libxml-pm%type_pkg[perl]
<<
Conflicts: %N-man (<< 1.29-1)
Replaces: %N-man (<< 1.29-1)
InstallScript: <<
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
<<
DocFiles: CHANGES MANIFEST META.yml README
License: Artistic/GPL
Description: Provide a DAV Server
Maintainer: None <[email protected]>
Homepage: http://search.cpan.org/dist/Net-DAV-Server
DescPackaging: <<
Report bugs to the maintainer or the CPAN bug tracker:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-DAV-Server
Former Maintainer: Chris Dolan <[email protected]>
<<
<<
------------------------------------------------------------------------------
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management
Up to 160% more powerful than alternatives and 25% more efficient.
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs