r25467 - in /trunk/net-hotline: Changes debian/ debian/changelog lib/Net/Hotline.pm lib/Net/Hotline/Client.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri Sep 19 21:31:56 UTC 2008


Author: gregoa
Date: Fri Sep 19 21:31:53 2008
New Revision: 25467

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25467
Log:
New upstream release (closes: #329603).

Modified:
    trunk/net-hotline/Changes
    trunk/net-hotline/debian/   (props changed)
    trunk/net-hotline/debian/changelog
    trunk/net-hotline/lib/Net/Hotline.pm
    trunk/net-hotline/lib/Net/Hotline/Client.pm

Modified: trunk/net-hotline/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/net-hotline/Changes?rev=25467&op=diff
==============================================================================
--- trunk/net-hotline/Changes (original)
+++ trunk/net-hotline/Changes Fri Sep 19 21:31:53 2008
@@ -1,4 +1,8 @@
 Revision history for Net::Hotline
+
+0.82 (11.27.2002) - John Siracusa <siracusa at mindspring.com>
+
+    * Clarified ambiguous call to rename() in Client.pm
 
 0.82 (06.10.2002) - John Siracusa <siracusa at mindspring.com>
 

Propchange: trunk/net-hotline/debian/
------------------------------------------------------------------------------
    svn-bp:TrunkUrl = svn+ssh://svn.debian.org/svn/pkg-perl/trunk/net-hotline

Propchange: trunk/net-hotline/debian/
------------------------------------------------------------------------------
    svn-bp:tagsUrl = svn+ssh://svn.debian.org/svn/pkg-perl/tags/net-hotline

Propchange: trunk/net-hotline/debian/
------------------------------------------------------------------------------
--- svn-bp:upsCurrentUrl (added)
+++ svn-bp:upsCurrentUrl Fri Sep 19 21:31:53 2008
@@ -1,0 +1,1 @@
+svn+ssh://svn.debian.org/svn/pkg-perl/branches/upstream/net-hotline/current

Propchange: trunk/net-hotline/debian/
------------------------------------------------------------------------------
--- svn-bp:upsTagUrl (added)
+++ svn-bp:upsTagUrl Fri Sep 19 21:31:53 2008
@@ -1,0 +1,1 @@
+svn+ssh://svn.debian.org/svn/pkg-perl/branches/upstream/net-hotline

Modified: trunk/net-hotline/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/net-hotline/debian/changelog?rev=25467&op=diff
==============================================================================
--- trunk/net-hotline/debian/changelog (original)
+++ trunk/net-hotline/debian/changelog Fri Sep 19 21:31:53 2008
@@ -1,4 +1,4 @@
-net-hotline (0.82-4) UNRELEASED; urgency=low
+net-hotline (0.83-1) UNRELEASED; urgency=low
 
   * Take over for the Debian Perl Group; Closes: #465880 -- ITA
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
@@ -7,6 +7,8 @@
     maintainers at lists.alioth.debian.org> (was: Debian QA Group
     <packages at qa.debian.org>); added: /me to Uploaders.
   * Add debian/watch.
+
+  * New upstream release (closes: #329603).
 
  -- gregor herrmann <gregoa at debian.org>  Fri, 19 Sep 2008 23:19:05 +0200
 

Modified: trunk/net-hotline/lib/Net/Hotline.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/net-hotline/lib/Net/Hotline.pm?rev=25467&op=diff
==============================================================================
--- trunk/net-hotline/lib/Net/Hotline.pm (original)
+++ trunk/net-hotline/lib/Net/Hotline.pm Fri Sep 19 21:31:53 2008
@@ -2,7 +2,7 @@
 
 # Provides the version number for the whole set of Net::Hotline:: libs.
 # Currently, this includes only the Net::Hotline::Client
-$VERSION = '0.82';
+$VERSION = '0.83';
 
 # The client module is loaded when you "use Net::Hotline"
 use Net::Hotline::Client;

Modified: trunk/net-hotline/lib/Net/Hotline/Client.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/net-hotline/lib/Net/Hotline/Client.pm?rev=25467&op=diff
==============================================================================
--- trunk/net-hotline/lib/Net/Hotline/Client.pm (original)
+++ trunk/net-hotline/lib/Net/Hotline/Client.pm Fri Sep 19 21:31:53 2008
@@ -34,7 +34,7 @@
 # Class attributes
 #
 
-$VERSION = '0.82';
+$VERSION = '0.83';
 $DEBUG   = 0;
 
 # CRC perl code lifted from Convert::BinHex by Eryq (eryq at enteract.com)
@@ -3935,7 +3935,7 @@
 
     # Rename data file to remove the .data part
     ($finished_file = $data_file) =~ s/$self->{'DATA_FORK_EXT'}$//;
-    unless(rename($data_file, $finished_file))
+    unless(CORE::rename($data_file, $finished_file))
     {
       $task->error_text(qq(Could not rename "$data_file" to "$finished_file": $!));
       $self->{'LAST_ERROR'} = $task->error_text();
@@ -3950,7 +3950,7 @@
   elsif(! -e $rsrc_file)
   {
     ($finished_file = $data_file) =~ s/$self->{'DATA_FORK_EXT'}$//;
-    rename($data_file, $finished_file);
+    CORE::rename($data_file, $finished_file);
     $data_file = $finished_file;
   }
 




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