r32040 - in /trunk/dh-make-perl: debian/changelog lib/DhMakePerl.pm

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Fri Mar 13 22:07:39 UTC 2009


Author: ryan52-guest
Date: Fri Mar 13 22:07:35 2009
New Revision: 32040

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32040
Log:
if --pkg-perl, set the changelog to UNRELEASED by default

Modified:
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/lib/DhMakePerl.pm

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=32040&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Fri Mar 13 22:07:35 2009
@@ -13,7 +13,10 @@
     packages).
   * Remove leading article from test distributions' short description.
 
- -- Pierre Neyron <pierre.neyron at free.fr>  Fri, 06 Mar 2009 00:29:48 +0100
+  [ Ryan Niebur ]
+  * if --pkg-perl, set the changelog to UNRELEASED by default
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Fri, 13 Mar 2009 15:07:26 -0700
 
 dh-make-perl (0.52) unstable; urgency=low
 

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=32040&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Fri Mar 13 22:07:35 2009
@@ -1244,8 +1244,9 @@
     my $fh  = $self->_file_w($file);
 
     my $closes = $bug ? " (Closes: #$bug)" : '';
-
-    $fh->print("$srcname ($pkgversion) unstable; urgency=low\n");
+    my $changelog_dist = $self->cfg->pkg_perl ? "UNRELEASED" : "unstable";
+
+    $fh->print("$srcname ($pkgversion) $changelog_dist; urgency=low\n");
     $fh->print("\n  * Initial Release.$closes\n\n");
     $fh->print(" -- $maintainer  $date\n");
 




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