Package: libexperimental-perl Version: 0.005-1 Severity: wishlist Tags: patch
Having a libexperimental-perl package available via wheezy-backports (possibly squeeze-sloppy) would make life easier for people who want to maintain the same software for jessie/sid, wheezy (and possibly squeeze). I have attached a patch that replaces usage of Module::Build::Tiny (which is only available in jessie/sid) with a simple EU:MM thing that does the job. If nobody objects, I intend to upload packages to wheezy-backports -- possibly squeeze-sloppy in the next few days. Cheers, -Hilko
diff --git a/debian/control b/debian/control index 3896130..3ba8a67 100644 --- a/debian/control +++ b/debian/control @@ -4,6 +4,5 @@ Priority: optional Maintainer: Debian Perl Group <pkg-perl-maintain...@lists.alioth.debian.org> Uploaders: gregor herrmann <gre...@debian.org> -Build-Depends: debhelper (>= 9.20130630), - libmodule-build-tiny-perl, +Build-Depends: debhelper (>= 9), perl Standards-Version: 3.9.4 diff --git a/debian/rules b/debian/rules index 2d33f6a..71ef367 100755 --- a/debian/rules +++ b/debian/rules @@ -2,3 +2,11 @@ %: - dh $@ + dh $@ --buildsystem=perl_makemaker + +override_dh_auto_configure: + echo 'use ExtUtils::MakeMaker; WriteMakefile' > Makefile.PL + dh_auto_configure + +override_dh_auto_clean: + dh_auto_clean + rm -f Makefile.PL