r2764 - in /packages/libnetxap-perl/trunk/debian: changelog patches/00list patches/60lc.dpatch

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Sat May 13 17:49:54 UTC 2006


Author: ntyni-guest
Date: Sat May 13 17:49:54 2006
New Revision: 2764

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=2764
Log:
Fix lc() call in Net::IMAP:Acl::new

Added:
    packages/libnetxap-perl/trunk/debian/patches/60lc.dpatch   (with props)
Modified:
    packages/libnetxap-perl/trunk/debian/changelog
    packages/libnetxap-perl/trunk/debian/patches/00list

Modified: packages/libnetxap-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libnetxap-perl/trunk/debian/changelog?rev=2764&op=diff
==============================================================================
--- packages/libnetxap-perl/trunk/debian/changelog (original)
+++ packages/libnetxap-perl/trunk/debian/changelog Sat May 13 17:49:54 2006
@@ -7,9 +7,11 @@
     as it's required by the 'clean' target.
   * Don't ignore the return value of 'make realclean'.
   * Cleanup of debian/rules.
-  * debian/patches/20pod.dpatch: One more fix for POD comments.
+  * debian/patches:
+    + 20pod.dpatch: One more fix for POD comments.
+    + 60lc.dpatch: Fix typo in Net::IMAP:Acl::new()
 
- -- Niko Tyni <ntyni at iki.fi>  Sat, 13 May 2006 20:46:47 +0300
+ -- Niko Tyni <ntyni at iki.fi>  Sat, 13 May 2006 20:48:36 +0300
 
 libnetxap-perl (0.02-5) unstable; urgency=low
 

Modified: packages/libnetxap-perl/trunk/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libnetxap-perl/trunk/debian/patches/00list?rev=2764&op=diff
==============================================================================
--- packages/libnetxap-perl/trunk/debian/patches/00list (original)
+++ packages/libnetxap-perl/trunk/debian/patches/00list Sat May 13 17:49:54 2006
@@ -3,3 +3,4 @@
 30banner.dpatch
 40namespace.dpatch
 50debug.dpatch
+60lc.dpatch

Added: packages/libnetxap-perl/trunk/debian/patches/60lc.dpatch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libnetxap-perl/trunk/debian/patches/60lc.dpatch?rev=2764&op=file
==============================================================================
--- packages/libnetxap-perl/trunk/debian/patches/60lc.dpatch (added)
+++ packages/libnetxap-perl/trunk/debian/patches/60lc.dpatch Sat May 13 17:49:54 2006
@@ -1,0 +1,20 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 60lc.dpatch by Niko Tyni <ntyni at iki.fi>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Fix lc() usage.
+## DP: Originally from CPAN #346 by  Michael Guennewig
+
+ at DPATCH@
+diff -urNad trunk~/Net/IMAP.pm trunk/Net/IMAP.pm
+--- trunk~/Net/IMAP.pm	2006-05-13 20:42:29.000000000 +0300
++++ trunk/Net/IMAP.pm	2006-05-13 20:48:06.367039898 +0300
+@@ -2460,7 +2460,7 @@
+   $self->{Mailbox} = shift(@fields);
+   my %hash = @fields;
+   for my $key (keys %hash) {
+-    $self->{Identifiers}{lc{$key}} = $hash{$key};
++    $self->{Identifiers}{lc($key)} = $hash{$key};
+   }
+ 
+   return $self;

Propchange: packages/libnetxap-perl/trunk/debian/patches/60lc.dpatch
------------------------------------------------------------------------------
    svn:executable = *




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