r3919 - in /packages/libwww-curl-perl/trunk: Makefile.PL debian/changelog

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Tue Sep 26 10:08:24 UTC 2006


Author: ntyni-guest
Date: Tue Sep 26 10:08:22 2006
New Revision: 3919

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3919
Log:
fix parameter include in Easy.pm.in

Modified:
    packages/libwww-curl-perl/trunk/Makefile.PL
    packages/libwww-curl-perl/trunk/debian/changelog

Modified: packages/libwww-curl-perl/trunk/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libwww-curl-perl/trunk/Makefile.PL?rev=3919&op=diff
==============================================================================
--- packages/libwww-curl-perl/trunk/Makefile.PL (original)
+++ packages/libwww-curl-perl/trunk/Makefile.PL Tue Sep 26 10:08:22 2006
@@ -178,15 +178,16 @@
     open(EASY_PM,    ">lib/WWW/Curl/Easy.pm")    or die "Can't create lib/WWW/Curl/Easy.pm\n";
     open(EASY_PM_IN, "Easy.pm.in") or die "Can't read Easy.pm.in\n";
     while (my $line = <EASY_PM_IN>) {
-        if ($line !~ m/^\@CURLOPT_INCLUDE\@/) {
+        if ($line !~ m/^(\s*)\@CURLOPT_INCLUDE\@/) {
             print EASY_PM $line;
         } else {
+	    my $indent = $1;
             foreach my $option (sort keys %cinit_types) {
                 next unless $option; # an empty CURLOPT_
-                print EASY_PM "CURLOPT_$option\n";
+                print EASY_PM $indent . "CURLOPT_$option\n";
             }
             foreach my $option (sort @curlinfo) {
-                print EASY_PM $option . "\n";
+                print EASY_PM $indent . $option . "\n";
             }
         }
     }

Modified: packages/libwww-curl-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libwww-curl-perl/trunk/debian/changelog?rev=3919&op=diff
==============================================================================
--- packages/libwww-curl-perl/trunk/debian/changelog (original)
+++ packages/libwww-curl-perl/trunk/debian/changelog Tue Sep 26 10:08:22 2006
@@ -1,10 +1,11 @@
 libwww-curl-perl (3.02-2) unstable; urgency=low
 
   * Clean up unneeded dependencies.
-  * Upgrade to Standards-Version 3.7.2. No changes needed. 
+  * Upgrade to Standards-Version 3.7.2. No changes needed.
   * Upgrade to debhelper compatibility level 5.
+  * Fix curl parameter list documentation in WWW::Curl::Easy.
 
- -- Niko Tyni <ntyni at iki.fi>  Tue, 26 Sep 2006 13:04:51 +0300
+ -- Niko Tyni <ntyni at iki.fi>  Tue, 26 Sep 2006 13:07:19 +0300
 
 libwww-curl-perl (3.02-1) unstable; urgency=low
 




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