r75248 - in /branches/upstream/libnet-imap-simple-perl/current: Changes META.yml Simple.pm

jotamjr-guest at users.alioth.debian.org jotamjr-guest at users.alioth.debian.org
Wed Jun 8 04:24:52 UTC 2011


Author: jotamjr-guest
Date: Wed Jun  8 04:24:28 2011
New Revision: 75248

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75248
Log:
[svn-upgrade] new version libnet-imap-simple-perl (1.2023)

Modified:
    branches/upstream/libnet-imap-simple-perl/current/Changes
    branches/upstream/libnet-imap-simple-perl/current/META.yml
    branches/upstream/libnet-imap-simple-perl/current/Simple.pm

Modified: branches/upstream/libnet-imap-simple-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-imap-simple-perl/current/Changes?rev=75248&op=diff
==============================================================================
--- branches/upstream/libnet-imap-simple-perl/current/Changes (original)
+++ branches/upstream/libnet-imap-simple-perl/current/Changes Wed Jun  8 04:24:28 2011
@@ -1,3 +1,6 @@
+1.2023: Wed May 25 2011
+   - patch for minor (but annoying) options bug. Thanks Mr.  Griffiths!
+
 1.2022: Fri Mar 04 2011
    - horrid little typo in socket builder
 

Modified: branches/upstream/libnet-imap-simple-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-imap-simple-perl/current/META.yml?rev=75248&op=diff
==============================================================================
--- branches/upstream/libnet-imap-simple-perl/current/META.yml (original)
+++ branches/upstream/libnet-imap-simple-perl/current/META.yml Wed Jun  8 04:24:28 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Net-IMAP-Simple
-version:            1.2022
+version:            1.2023
 abstract:           ~
 author:
     - Paul Miller <jettero at cpan.org>

Modified: branches/upstream/libnet-imap-simple-perl/current/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-imap-simple-perl/current/Simple.pm?rev=75248&op=diff
==============================================================================
--- branches/upstream/libnet-imap-simple-perl/current/Simple.pm (original)
+++ branches/upstream/libnet-imap-simple-perl/current/Simple.pm Wed Jun  8 04:24:28 2011
@@ -9,7 +9,7 @@
 use IO::Select;
 use Net::IMAP::Simple::PipeSocket;
 
-our $VERSION = "1.2022";
+our $VERSION = "1.2023";
 
 BEGIN {
     # I'd really rather the pause/cpan indexers miss this "package"
@@ -75,8 +75,8 @@
     }
 
     $self->{timeout}           = ( $opts{timeout} ? $opts{timeout} : $self->_timeout );
-    $self->{retry}             = ( $opts{retry} ? $opts{retry} : $self->_retry );
-    $self->{retry_delay}       = ( $opts{retry_delay} ? $opts{retry_delay} : $self->_retry_delay );
+    $self->{retry}             = ( defined($opts{retry}) ? $opts{retry} : $self->_retry );
+    $self->{retry_delay}       = ( defined($opts{retry_delay}) ? $opts{retry_delay} : $self->_retry_delay );
     $self->{bindaddr}          = $opts{bindaddr};
     $self->{use_select_cache}  = $opts{use_select_cache};
     $self->{select_cache_ttl}  = $opts{select_cache_ttl};




More information about the Pkg-perl-cvs-commits mailing list