r32246 - in /trunk/dh-make-perl: debian/changelog debian/control lib/DhMakePerl/Config.pm

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Sat Mar 21 07:51:10 UTC 2009


Author: ryan52-guest
Date: Sat Mar 21 07:50:56 2009
New Revision: 32246

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32246
Log:
* if --pkg-perl is given, and --dist is not, set dist = sid
* add myself to uploaders

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

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=32246&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Sat Mar 21 07:50:56 2009
@@ -15,8 +15,10 @@
 
   [ 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
+  * if --pkg-perl is given, and --dist is not, set dist = sid
+  * add myself to uploaders
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Sat, 21 Mar 2009 00:48:42 -0700
 
 dh-make-perl (0.52) unstable; urgency=low
 

Modified: trunk/dh-make-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/control?rev=32246&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/control (original)
+++ trunk/dh-make-perl/debian/control Sat Mar 21 07:50:56 2009
@@ -23,7 +23,8 @@
 Uploaders: Gunnar Wolf <gwolf at debian.org>, Wolfgang Schemmel <debian at 37.org>,
  Christopher Sacca <csacca at thecsl.org>,
  Damyan Ivanov <dmn at debian.org>, gregor herrmann <gregoa at debian.org>,
- Oliver Gorwits <oliver.gorwits at oucs.ox.ac.uk>
+ Oliver Gorwits <oliver.gorwits at oucs.ox.ac.uk>,
+ Ryan Niebur <ryanryan52 at gmail.com>
 Standards-Version: 3.8.1
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/dh-make-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/dh-make-perl/

Modified: trunk/dh-make-perl/lib/DhMakePerl/Config.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl/Config.pm?rev=32246&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl/Config.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl/Config.pm Sat Mar 21 07:50:56 2009
@@ -96,6 +96,8 @@
     GetOptions( \%opts, $self->options, )
         or die "Error parsing command-line options\n";
 
+    $opts{dist} = "sid" if(!defined($opts{dist}) && defined($opts{"pkg-perl"}));
+
     # Make CPAN happy, make the user happy: Be more tolerant!
     # Accept names to be specified with double-colon, dash or slash
     $opts{cpan} =~ s![/-]!::!g if $opts{cpan};




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