r28062 - in /trunk/dh-make-perl/lib: Debian/AptContents.pm Debian/Dependencies.pm DhMakePerl/PodParser.pm

bricas-guest at users.alioth.debian.org bricas-guest at users.alioth.debian.org
Thu Dec 11 14:03:41 UTC 2008


Author: bricas-guest
Date: Thu Dec 11 14:03:38 2008
New Revision: 28062

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=28062
Log:
minor pod cleanup, strict+warnings

Modified:
    trunk/dh-make-perl/lib/Debian/AptContents.pm
    trunk/dh-make-perl/lib/Debian/Dependencies.pm
    trunk/dh-make-perl/lib/DhMakePerl/PodParser.pm

Modified: trunk/dh-make-perl/lib/Debian/AptContents.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/AptContents.pm?rev=28062&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/AptContents.pm (original)
+++ trunk/dh-make-perl/lib/Debian/AptContents.pm Thu Dec 11 14:03:38 2008
@@ -1,4 +1,7 @@
 package Debian::AptContents;
+
+use strict;
+use warnings;
 
 =head1 NAME
 

Modified: trunk/dh-make-perl/lib/Debian/Dependencies.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Dependencies.pm?rev=28062&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Dependencies.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Dependencies.pm Thu Dec 11 14:03:38 2008
@@ -1,3 +1,12 @@
+package Debian::Dependencies;
+
+use strict;
+use warnings;
+
+use Debian::Dependency;
+
+use overload '""'   => \&stringify;
+
 =head1 NAME
 
 Debian::Dependencies -- a list of Debian::Dependency objects
@@ -21,16 +30,6 @@
 When used in string context, Debian::Dependencies converts itself into a
 comma-delimitted list of dependencies, suitable for dependency fields of
 F<debian/control> files.
-
-=cut
-
-package Debian::Dependencies;
-use strict;
-use warnings;
-use Debian::Dependency;
-
-use overload
-    '""'   => \&stringify;
 
 =head2 CLASS METHODS
 

Modified: trunk/dh-make-perl/lib/DhMakePerl/PodParser.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl/PodParser.pm?rev=28062&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl/PodParser.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl/PodParser.pm Thu Dec 11 14:03:38 2008
@@ -1,4 +1,7 @@
 package DhMakePerl::PodParser;
+
+use strict;
+use warnings;
 
 use base qw(Pod::Parser);
 




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