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

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun May 2 03:16:03 UTC 2010


Author: jawnsy-guest
Date: Sun May  2 03:15:53 2010
New Revision: 57301

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

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=57301&op=diff
==============================================================================
--- branches/upstream/libnet-imap-simple-perl/current/Changes (original)
+++ branches/upstream/libnet-imap-simple-perl/current/Changes Sun May  2 03:15:53 2010
@@ -1,3 +1,15 @@
+1.1912: Fri Apr 23 2010
+   - Doug confirmed that it worked.  I'm going to go ahead and
+     release this as a new version.
+
+1.1912_1: Thu Apr 22 2010
+   - Hrm, per Doug Reed at Service Optimi, I noticed that _last
+     returns self->{last} regardless of whether it's ever been
+     set.  Seems like we can DWIM and call self->select if it's
+     never been called yet and make ->list (et al) function.
+
+     We'll see what he thinks of this fix.
+
 1.1911: Sun Mar 14 2010
    - Fixed [introduced] bugs illuminated in #55552 (RT), thanks
      to Aaron Wilson <aaron at gmx.co.uk> for a positively excellent

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=57301&op=diff
==============================================================================
--- branches/upstream/libnet-imap-simple-perl/current/META.yml (original)
+++ branches/upstream/libnet-imap-simple-perl/current/META.yml Sun May  2 03:15:53 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Net-IMAP-Simple
-version:            1.1911
+version:            1.1912
 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=57301&op=diff
==============================================================================
--- branches/upstream/libnet-imap-simple-perl/current/Simple.pm (original)
+++ branches/upstream/libnet-imap-simple-perl/current/Simple.pm Sun May  2 03:15:53 2010
@@ -8,7 +8,7 @@
 use IO::Socket;
 use IO::Select;
 
-our $VERSION = "1.1911";
+our $VERSION = "1.1912";
 
 BEGIN {
     # I'd really rather the pause/cpan indexers miss this "package"
@@ -146,7 +146,7 @@
 sub _port        { return $_[0]->{use_ssl} ? 993 : 143 } 
 sub _sock        { return $_[0]->{sock} }
 sub _count       { return $_[0]->{count} }
-sub _last        { return $_[0]->{last} }
+sub _last        { $_[0]->select unless exists $_[0]->{last}; return $_[0]->{last} }
 sub _timeout     { return 90 }
 sub _retry       { return 1 }
 sub _retry_delay { return 5 }




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