r60402 - in /trunk/dh-make-perl: debian/changelog lib/DhMakePerl/Command/Packaging.pm
carnil-guest at users.alioth.debian.org
carnil-guest at users.alioth.debian.org
Mon Jul 19 06:16:37 UTC 2010
Author: carnil-guest
Date: Mon Jul 19 06:16:24 2010
New Revision: 60402
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60402
Log:
Add support for perl_dbi addon for dh.
Modified:
trunk/dh-make-perl/debian/changelog
trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm
Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=60402&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Mon Jul 19 06:16:24 2010
@@ -25,12 +25,13 @@
stop mark after sentences.
* Add explicit Link to versioned `/usr/share/common-licenses/GPL-1' as this
was added by base-files 5.8 (See #436105).
+ * Add support for perl_dbi addon for dh.
[ Chris Butler ]
* Fixed DhMakePerl::Utils to cope with modules in Module::CoreList where the
version is unspecified. (Closes: #585755)
- -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com> Mon, 05 Jul 2010 19:41:36 +0200
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com> Mon, 19 Jul 2010 08:12:27 +0200
dh-make-perl (0.68-1) unstable; urgency=low
Modified: trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm?rev=60402&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm Mon Jul 19 06:16:24 2010
@@ -1178,6 +1178,10 @@
C<dh --with=bash-completion> needs debhelper 7.0.8 and bash-completion 1:1.0-3.
+=item dh --with=perl_dbi
+
+C<dh --with=perl_dbi> needs debhelper 7.0.8 and libdbi-perl 1.612.
+
=item quilt.make
If F</usr/share/quilt/quilt.make> is included in F<debian/rules>, a
@@ -1239,6 +1243,12 @@
$deps,
'bash-completion (>= 1:1.0-3)'
) if (/dh\s+.*--with[= ]bash[-_]completion/);
+
+ $self->explained_dependency(
+ 'dh -with=perl_dbi',
+ $deps,
+ 'libdbi-perl (>= 1.612)'
+ ) if (/dh\s+.*--with[= ]perl[-_]dbi/);
$self->explained_dependency( 'override_dh_* target',
$deps, 'debhelper (>= 7.0.50)' )
More information about the Pkg-perl-cvs-commits
mailing list