r43557 - in /trunk/dh-make-perl: MANIFEST debian/changelog debian/control t/manifest.t

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Thu Sep 3 04:55:41 UTC 2009


Author: ryan52-guest
Date: Thu Sep  3 04:55:07 2009
New Revision: 43557

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=43557
Log:
use Test::DistManifest

Added:
    trunk/dh-make-perl/t/manifest.t
Modified:
    trunk/dh-make-perl/MANIFEST
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/debian/control

Modified: trunk/dh-make-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/MANIFEST?rev=43557&op=diff
==============================================================================
--- trunk/dh-make-perl/MANIFEST (original)
+++ trunk/dh-make-perl/MANIFEST Thu Sep  3 04:55:07 2009
@@ -73,8 +73,10 @@
 t/dists/Strange-2.1/wanted-debian/watch
 t/extract_name_ver_from_makefile.t
 t/makefiles/module-install-autodie.PL
+t/manifest.t
 t/perl-deps.t
 t/perl-versions.t
 t/pod-coverage.t
 t/pod.t
 TODO
+Makefile.PL

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=43557&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Thu Sep  3 04:55:07 2009
@@ -1,8 +1,9 @@
 dh-make-perl (0.60) UNRELEASED; urgency=low
 
   * fix MANIFEST file handling
-
- -- Ryan Niebur <ryanryan52 at gmail.com>  Wed, 02 Sep 2009 21:46:19 -0700
+  * use Test::DistManifest
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Wed, 02 Sep 2009 21:54:48 -0700
 
 dh-make-perl (0.59) 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=43557&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/control (original)
+++ trunk/dh-make-perl/debian/control Thu Sep  3 04:55:07 2009
@@ -23,7 +23,8 @@
  libtext-diff-perl,
  libtie-ixhash-perl,
  libwww-mechanize-perl,
- libyaml-perl
+ libyaml-perl,
+ libtest-distmanifest-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Gunnar Wolf <gwolf at debian.org>, Wolfgang Schemmel <debian at 37.org>,
  Christopher Sacca <csacca at thecsl.org>,

Added: trunk/dh-make-perl/t/manifest.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/t/manifest.t?rev=43557&op=file
==============================================================================
--- trunk/dh-make-perl/t/manifest.t (added)
+++ trunk/dh-make-perl/t/manifest.t Thu Sep  3 04:55:07 2009
@@ -1,0 +1,10 @@
+#!/usr/bin/perl -w
+
+use Test::More;
+
+eval 'use Test::DistManifest';
+if ($@) {
+  plan skip_all => 'Test::DistManifest required to test MANIFEST';
+}
+
+manifest_ok();




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