r11056 - in /trunk/libwww-perl/debian: changelog copyright patches/ patches/documentation_fixes.patch patches/series

tincho-guest at users.alioth.debian.org tincho-guest at users.alioth.debian.org
Sun Dec 9 10:56:09 UTC 2007


Author: tincho-guest
Date: Sun Dec  9 10:56:09 2007
New Revision: 11056

URL: http://svn.debian.org/wsvn/?sc=1&rev=11056
Log:
* debian/copyright: converted to UTF-8, updated and converted to new format.
* debian/patches/documentation_fixes.patch: Patch to lwp-request
  documentation (Closes: #396968, #408426).

Added:
    trunk/libwww-perl/debian/patches/
    trunk/libwww-perl/debian/patches/documentation_fixes.patch
    trunk/libwww-perl/debian/patches/series
Modified:
    trunk/libwww-perl/debian/changelog
    trunk/libwww-perl/debian/copyright

Modified: trunk/libwww-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libwww-perl/debian/changelog?rev=11056&op=diff
==============================================================================
--- trunk/libwww-perl/debian/changelog (original)
+++ trunk/libwww-perl/debian/changelog Sun Dec  9 10:56:09 2007
@@ -7,10 +7,12 @@
     - Added quilt build-dependency for documentation patches to be added.
     - New run-time dependency: libhtml-tagset-perl.
   * debian/compat: to version 5.
-  * debian/copyright: converted to UTF-8 and updated.
+  * debian/copyright: converted to UTF-8, updated and converted to new format.
   * debian/rules: revamped with current group practices. Added quilt support.
-
- -- Martín Ferrari <martin.ferrari at gmail.com>  Sun, 09 Dec 2007 07:14:01 -0300
+  * debian/patches/documentation_fixes.patch: Patch to lwp-request
+    documentation (Closes: #396968, #408426).
+
+ -- Martín Ferrari <martin.ferrari at gmail.com>  Sun, 09 Dec 2007 07:54:42 -0300
 
 libwww-perl (5.805-2) UNRELEASED; urgency=low
 

Modified: trunk/libwww-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libwww-perl/debian/copyright?rev=11056&op=diff
==============================================================================
--- trunk/libwww-perl/debian/copyright (original)
+++ trunk/libwww-perl/debian/copyright Sun Dec  9 10:56:09 2007
@@ -2,29 +2,31 @@
 is a set of perl modules which provide access to the world wide web
 via HTTP and HTML tools.
 
-This package was put together by Michael Alan Dorman
-<mdorman at debian.org>, following the example of Rob Browning
-<osiris at cs.utexas.edu>.  The original sources should always be
-available from:
+Original sources can be found at http://search.cpan.org/dist/libwww-perl/
 
-     http://www.linpro.no/lwp/
+This package was put together by Michael Alan Dorman <mdorman at debian.org>,
+following the example of Rob Browning <osiris at cs.utexas.edu>.  
 
-The library is also available from the Comprehensive Perl Archive
-Network (CPAN). Visit <URL:http://www.perl.com/CPAN/> to find a CPAN
-site near you.
+Files: debian/*
+Copyright: © 2007 Martín Ferrari <martin.ferrari at gmail.com>
+           © 2007 gregor herrmann <gregor+debian at comodo.priv.at>
+	   © 2004-2006 Jay Bonci <jaybonci at debian.org>
+	   © 2002 Brendan O'Dea <bod at debian.org>
+	   © 1999 John Goerzen <jgoerzen at complete.org>
+	   © 1996-2004 Michael Alan Dorman <mdorman at debian.org>
+License: other
+ It is being assumed that all maintainers did choose a license compatible with
+ the package
 
-The only change for the Debian package was the addition of the debian/
-files.
+Files: *
+Copyright: © 1995-2005 Gisle Aas. All rights reserved.
+           © 1995 Martijn Koster. All rights reserved.
+License: GPL | Artistic
+ This library is free software; you can redistribute it and/or modify it under
+ the same terms as Perl itself.
 
-The libwww-perl copright is as follows:
 
-COPYRIGHT
+On Debian GNU/Linux systems, the complete text of the GNU General Public
+License can be found in `/usr/share/common-licenses/GPL' and the Artistic
+Licence in `/usr/share/common-licenses/Artistic'.
 
-  © 1995-2005 Gisle Aas. All rights reserved.
-  © 1995 Martijn Koster. All rights reserved.
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
-Larry Wall's "Artistic License" for perl can be found in
-/usr/share/common-licenses/Artistic.

Added: trunk/libwww-perl/debian/patches/documentation_fixes.patch
URL: http://svn.debian.org/wsvn/trunk/libwww-perl/debian/patches/documentation_fixes.patch?rev=11056&op=file
==============================================================================
--- trunk/libwww-perl/debian/patches/documentation_fixes.patch (added)
+++ trunk/libwww-perl/debian/patches/documentation_fixes.patch Sun Dec  9 10:56:09 2007
@@ -1,0 +1,33 @@
+Index: libwww-perl/bin/lwp-request
+===================================================================
+--- libwww-perl.orig/bin/lwp-request
++++ libwww-perl/bin/lwp-request
+@@ -10,7 +10,7 @@ lwp-request - Simple command line user a
+ 
+ =head1 SYNOPSIS
+ 
+- lwp-request [-aeEdvhx] [-m method] [-b <base URL>] [-t <timeout>]
++ lwp-request [-afPuUsSedvhx] [-m method] [-b <base URL>] [-t <timeout>]
+              [-i <if-modified-since>] [-c <content-type>] [-C <credentials>]
+              [-p <proxy-url>] [-o <format>] <url>...
+ 
+@@ -71,6 +71,10 @@ Set the proxy to be used for the request
+ proxy settings from the environment.  You can disable this with the
+ C<-P> option.
+ 
++=item -P
++
++Don't load proxy settings from environment.
++
+ =item -H <header>
+ 
+ Send this HTTP header with each request. You can specify several, e.g.:
+@@ -528,6 +532,8 @@ Usage: $progname [-options] <url>...
+     -p <proxyurl> use this as a proxy
+     -P            don't load proxy settings from environment
+     -H <header>   send this HTTP header (you can specify several)
++    -C <username>:<password>
++                  provide credentials for basic authentication
+ 
+     -u            Display method and URL before any response
+     -U            Display request headers (implies -u)

Added: trunk/libwww-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libwww-perl/debian/patches/series?rev=11056&op=file
==============================================================================
--- trunk/libwww-perl/debian/patches/series (added)
+++ trunk/libwww-perl/debian/patches/series Sun Dec  9 10:56:09 2007
@@ -1,0 +1,1 @@
+documentation_fixes.patch




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