--- libmro-compat-perl-0.05.orig/debian/control +++ libmro-compat-perl-0.05/debian/control @@ -0,0 +1,22 @@ +Source: libmro-compat-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-7), libclass-c3-xs-perl, libclass-c3-perl +Maintainer: Debian Perl Group +Uploaders: Krzysztof Krzyzaniak (eloy) , + Damyan Ivanov +Standards-Version: 3.7.2 +XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmro-compat-perl/ +XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libmro-compat-perl/ + +Package: libmro-compat-perl +Architecture: all +Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, libclass-c3-perl +Recommends: libclass-c3-xs-perl +Description: mro::* interface compatibility for Perls < 5.9.5 + The "mro" namespace provides several utilities for dealing with method + resolution order and method caching in general in Perl 5.9.5 and higher. + . + MRO::Compat provides those interfaces for earlier versions of Perl + (back to 5.6.0 anyways). --- libmro-compat-perl-0.05.orig/debian/rules +++ libmro-compat-perl-0.05/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +export PERL_MM_USE_DEFAULT=1 +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch build-stamp + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot +# dh_installexamples + dh_installdocs README + dh_installchangelogs ChangeLog + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libmro-compat-perl-0.05.orig/debian/watch +++ libmro-compat-perl-0.05/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.cpan.org/modules/by-authors/id/B/BL/BLBLACK/MRO-Compat-(.+).tar.gz --- libmro-compat-perl-0.05.orig/debian/changelog +++ libmro-compat-perl-0.05/debian/changelog @@ -0,0 +1,30 @@ +libmro-compat-perl (0.05-1) unstable; urgency=low + + * New upstream release + + Fix for RT#28661 (ill-formated %INC filenames aren't nice) + * Fixed old dh-make-perl cruft + + moved dh_clean $stamp_files before realclean + + dropped unused/unneeded dh_calls + + moved test suite from install to build target + * Added myself to Uploaders + * debian/copyright: improved + + more precise download URL + + added explicit upstream copyright notice with year + + -- Damyan Ivanov Wed, 12 Sep 2007 10:54:31 +0300 + +libmro-compat-perl (0.04-1) unstable; urgency=low + + [ Krzysztof Krzyzaniak (eloy) ] + * New upstream release + + [ Damyan Ivanov ] + * Updated debian/watch to use by-authors download area + + -- Krzysztof Krzyzaniak (eloy) Mon, 20 Aug 2007 14:49:04 +0200 + +libmro-compat-perl (0.03-1) unstable; urgency=low + + * Initial Release (closes: #429796) + + -- Krzysztof Krzyzaniak (eloy) Tue, 19 Jun 2007 12:37:21 +0200 --- libmro-compat-perl-0.05.orig/debian/compat +++ libmro-compat-perl-0.05/debian/compat @@ -0,0 +1 @@ +5 --- libmro-compat-perl-0.05.orig/debian/copyright +++ libmro-compat-perl-0.05/debian/copyright @@ -0,0 +1,24 @@ +This is the debian package for the MRO-Compat module. +It was created by Krzysztof Krzyzaniak (eloy) using dh-make-perl. + +The upstream author is: Brandon L. Black, . + +It was downloaded from http://www.cpan.org/modules/by-authors/id/B/BL/BLBLACK + +COPYRIGHT AND LICENSE + Copyright 2007 Brandon L. Black + + This library is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + +Perl is distributed under licenses: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in /usr/share/common-licenses/GPL' and + the Artistic Licence in /usr/share/common-licenses/Artistic'.