You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.1 KiB
80 lines
2.1 KiB
From a6a40029a3cbad2c7d9b39cec86b9dc4baf428a9 Mon Sep 17 00:00:00 2001 |
|
From: Dominic Hargreaves <dom@earth.li> |
|
Date: Tue, 20 Dec 2011 22:19:45 +0000 |
|
Subject: [PATCH 1/4] cpan/CPAN: add NAME headings in modules with POD |
|
|
|
This fixes the Debian Lintian warning about missing NAME sections in |
|
manpages. |
|
|
|
Bug-Debian: http://bugs.debian.org/650448 |
|
|
|
Patch-Name: fixes/manpage_name_CPAN.diff |
|
--- |
|
cpan/CPAN/lib/CPAN/Debug.pm | 4 ++++ |
|
cpan/CPAN/lib/CPAN/HandleConfig.pm | 6 ++++++ |
|
cpan/CPAN/lib/CPAN/Queue.pm | 4 ++++ |
|
cpan/CPAN/lib/CPAN/Tarzip.pm | 4 ++++ |
|
4 files changed, 18 insertions(+), 0 deletions(-) |
|
|
|
diff --git a/cpan/CPAN/lib/CPAN/Debug.pm b/cpan/CPAN/lib/CPAN/Debug.pm |
|
index 23c4a36..48e394b 100644 |
|
--- a/cpan/CPAN/lib/CPAN/Debug.pm |
|
+++ b/cpan/CPAN/lib/CPAN/Debug.pm |
|
@@ -71,6 +71,10 @@ sub debug { |
|
|
|
__END__ |
|
|
|
+=head1 NAME |
|
+ |
|
+CPAN::Debug - internal debugging for CPAN.pm |
|
+ |
|
=head1 LICENSE |
|
|
|
This program is free software; you can redistribute it and/or |
|
diff --git a/cpan/CPAN/lib/CPAN/HandleConfig.pm b/cpan/CPAN/lib/CPAN/HandleConfig.pm |
|
index 58ccbe5..bab607d 100644 |
|
--- a/cpan/CPAN/lib/CPAN/HandleConfig.pm |
|
+++ b/cpan/CPAN/lib/CPAN/HandleConfig.pm |
|
@@ -6,6 +6,12 @@ use File::Spec (); |
|
use File::Basename (); |
|
use Carp (); |
|
|
|
+=head1 NAME |
|
+ |
|
+CPAN::HandleConfig - internal configuration handling for CPAN.pm |
|
+ |
|
+=cut |
|
+ |
|
$VERSION = "5.5003"; # see also CPAN::Config::VERSION at end of file |
|
|
|
%can = ( |
|
diff --git a/cpan/CPAN/lib/CPAN/Queue.pm b/cpan/CPAN/lib/CPAN/Queue.pm |
|
index e5d88ce..1222b37 100644 |
|
--- a/cpan/CPAN/lib/CPAN/Queue.pm |
|
+++ b/cpan/CPAN/lib/CPAN/Queue.pm |
|
@@ -201,6 +201,10 @@ sub reqtype_of { |
|
|
|
__END__ |
|
|
|
+=head1 NAME |
|
+ |
|
+CPAN::Queue - internal queue support for CPAN.pm |
|
+ |
|
=head1 LICENSE |
|
|
|
This program is free software; you can redistribute it and/or |
|
diff --git a/cpan/CPAN/lib/CPAN/Tarzip.pm b/cpan/CPAN/lib/CPAN/Tarzip.pm |
|
index 972df6c..cf8aad4 100644 |
|
--- a/cpan/CPAN/lib/CPAN/Tarzip.pm |
|
+++ b/cpan/CPAN/lib/CPAN/Tarzip.pm |
|
@@ -450,6 +450,10 @@ END |
|
|
|
__END__ |
|
|
|
+=head1 NAME |
|
+ |
|
+CPAN::Tarzip - internal handling of tar archives for CPAN.pm |
|
+ |
|
=head1 LICENSE |
|
|
|
This program is free software; you can redistribute it and/or
|
|
|