r52909 - in /trunk/dh-make-perl/lib: Debian/WNPP/ Debian/WNPP/Bug.pm Debian/WNPPBug.pm DhMakePerl.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Tue Feb 16 22:22:18 UTC 2010


Author: dmn
Date: Tue Feb 16 22:22:06 2010
New Revision: 52909

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52909
Log:
rename WNPPBug to WNPP::Bug

Added:
    trunk/dh-make-perl/lib/Debian/WNPP/
    trunk/dh-make-perl/lib/Debian/WNPP/Bug.pm
      - copied, changed from r52908, trunk/dh-make-perl/lib/Debian/WNPPBug.pm
Removed:
    trunk/dh-make-perl/lib/Debian/WNPPBug.pm
Modified:
    trunk/dh-make-perl/lib/DhMakePerl.pm

Copied: trunk/dh-make-perl/lib/Debian/WNPP/Bug.pm (from r52908, trunk/dh-make-perl/lib/Debian/WNPPBug.pm)
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/WNPP/Bug.pm?rev=52909&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/WNPPBug.pm (original)
+++ trunk/dh-make-perl/lib/Debian/WNPP/Bug.pm Tue Feb 16 22:22:06 2010
@@ -1,15 +1,15 @@
-package Debian::WNPPBug;
+package Debian::WNPP::Bug;
 
 use strict;
 use warnings;
 
 =head1 NAME
 
-Debian::WNPPBug - handy representation of Debian WNPP bug reports
+Debian::WNPP::Bug - handy representation of Debian WNPP bug reports
 
 =head1 SYNOPSIS
 
-    my $b = Debian::WNPBug->new(
+    my $b = Debian::WNPP::Bug->new(
         {   number            => 1234,
             title             => 'RFP: nice-package -- do nice things easier',
             type              => 'rfp',

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=52909&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Tue Feb 16 22:22:06 2010
@@ -47,7 +47,7 @@
 use Debian::Dependencies      ();
 use Debian::Dependency        ();
 use Debian::Version qw(deb_ver_cmp);
-use Debian::WNPPBug;
+use Debian::WNPP::Bug;
 use Parse::DebianChangelog;
 use DhMakePerl::Config;
 use DhMakePerl::PodParser ();
@@ -1261,7 +1261,7 @@
         my $desc = $link->text();
 
         if ( $desc && $desc =~ /^ITP: $package / ) {
-            return Debian::WNPPBug->new(
+            return Debian::WNPP::Bug->new(
                 type   => 'ITP',
                 number => $1,
                 title  => $desc




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