r53222 - in /branches/upstream/libio-socket-ssl-perl/current: Changes META.yml Makefile.PL SSL.pm
angelabad-guest at users.alioth.debian.org
angelabad-guest at users.alioth.debian.org
Mon Feb 22 23:42:30 UTC 2010
Author: angelabad-guest
Date: Mon Feb 22 23:42:22 2010
New Revision: 53222
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53222
Log:
[svn-upgrade] Integrating new upstream version, libio-socket-ssl-perl (1.32)
Modified:
branches/upstream/libio-socket-ssl-perl/current/Changes
branches/upstream/libio-socket-ssl-perl/current/META.yml
branches/upstream/libio-socket-ssl-perl/current/Makefile.PL
branches/upstream/libio-socket-ssl-perl/current/SSL.pm
Modified: branches/upstream/libio-socket-ssl-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/Changes?rev=53222&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/Changes (original)
+++ branches/upstream/libio-socket-ssl-perl/current/Changes Mon Feb 22 23:42:22 2010
@@ -1,4 +1,8 @@
+v1.32 2010.02.22
+- Makefile.PL: die if Scalar::Util has no dualvar support instead of
+ only complaining. Thanks to w[DOT]phillip[DOT]moore[AT]gmail[DOT]com
+ for reporting.
v1.31 2009.09.25
- add and export constants for SSL_VERIFY_*
- set SSL_use_cert if cert is given and not SSL_server
Modified: branches/upstream/libio-socket-ssl-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/META.yml?rev=53222&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/META.yml (original)
+++ branches/upstream/libio-socket-ssl-perl/current/META.yml Mon Feb 22 23:42:22 2010
@@ -1,15 +1,23 @@
--- #YAML:1.0
-name: IO-Socket-SSL
-version: 1.31
-abstract: Nearly transparent SSL encapsulation for IO::Socket::INET.
-license: ~
-author:
+name: IO-Socket-SSL
+version: 1.32
+abstract: Nearly transparent SSL encapsulation for IO::Socket::INET.
+author:
- Steffen Ullrich & Peter Behroozi & Marko Asplund
-generated_by: ExtUtils::MakeMaker version 6.44
-distribution_type: module
-requires:
- Net::SSLeay: 1.21
- Scalar::Util: 0
+license: unknown
+distribution_type: module
+configure_requires:
+ ExtUtils::MakeMaker: 0
+build_requires:
+ ExtUtils::MakeMaker: 0
+requires:
+ Net::SSLeay: 1.21
+ Scalar::Util: 0
+no_index:
+ directory:
+ - t
+ - inc
+generated_by: ExtUtils::MakeMaker version 6.54
meta-spec:
- url: http://module-build.sourceforge.net/META-spec-v1.3.html
- version: 1.3
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: 1.4
Modified: branches/upstream/libio-socket-ssl-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/Makefile.PL?rev=53222&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/Makefile.PL (original)
+++ branches/upstream/libio-socket-ssl-perl/current/Makefile.PL Mon Feb 22 23:42:22 2010
@@ -53,10 +53,7 @@
# make sure that we have dualvar from the XS Version of Scalar::Util
if ( eval { require Scalar::Util } ) {
eval { Scalar::Util::dualvar( 0,'' ) };
- if ($@) {
- warn "You need the XS Version of Scalar::Util for dualvar() support";
- exit(0);
- }
+ die "You need the XS Version of Scalar::Util for dualvar() support" if ($@);
}
# check if we have something which handles IDN
Modified: branches/upstream/libio-socket-ssl-perl/current/SSL.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/SSL.pm?rev=53222&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/SSL.pm (original)
+++ branches/upstream/libio-socket-ssl-perl/current/SSL.pm Mon Feb 22 23:42:22 2010
@@ -78,7 +78,7 @@
}) {
@ISA = qw(IO::Socket::INET);
}
- $VERSION = '1.31';
+ $VERSION = '1.32';
$GLOBAL_CONTEXT_ARGS = {};
#Make $DEBUG another name for $Net::SSLeay::trace
More information about the Pkg-perl-cvs-commits
mailing list