--- libclass-std-utils-perl-0.0.3.orig/debian/control +++ libclass-std-utils-perl-0.0.3/debian/control @@ -0,0 +1,20 @@ +Source: libclass-std-utils-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5), libmodule-build-perl +Build-Depends-Indep: perl (>= 5.6.10-12), libtest-simple-perl, libtest-pod-perl, libtest-pod-coverage-perl, perl-modules (>= 5.10) | libversion-perl +Maintainer: Debian Perl Group +Uploaders: Xavier Oswald +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Class-Std-Utils/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-std-utils-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-std-utils-perl/ +DM-Upload-Allowed: yes + +Package: libclass-std-utils-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Utility subroutines for building "inside-out" objects + Class::Std::Utils provides three utility subroutines that simplify the + creation of "inside-out" classes. See Chapters 15 and 16 of "Perl Best + Practices" (O'Reilly, 2005) for details. --- libclass-std-utils-perl-0.0.3.orig/debian/copyright +++ libclass-std-utils-perl-0.0.3/debian/copyright @@ -0,0 +1,24 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat + +Debianized-By: Xavier Oswald +Debianized-Date: Tue, 9 Sep 2008 13:04:55 +0200 + +Original-Source-Location: http://search.cpan.org/dist/Class-Std-Utils/ + +Upstream-Author: Damian Conway + +Files: * +Copyright: © 2005 Damian Conway +License: GPL-1+ | Artistic + This code is free software; you can redistribute it and/or modify it under the + same terms as Perl itself. + +Files: debian/* +Copyright: © 2008 Xavier Oswald +License: GPL-1+ | Artistic + The Debian packaging is put under the same terms as the module itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. 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'. --- libclass-std-utils-perl-0.0.3.orig/debian/watch +++ libclass-std-utils-perl-0.0.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Class-Std-Utils/ .*/Class-Std-Utils-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libclass-std-utils-perl-0.0.3.orig/debian/compat +++ libclass-std-utils-perl-0.0.3/debian/compat @@ -0,0 +1 @@ +5 --- libclass-std-utils-perl-0.0.3.orig/debian/changelog +++ libclass-std-utils-perl-0.0.3/debian/changelog @@ -0,0 +1,5 @@ +libclass-std-utils-perl (0.0.3-1) unstable; urgency=low + + * Initial Release (Closes: #498347) + + -- Xavier Oswald Tue, 9 Sep 2008 13:04:55 +0200 --- libclass-std-utils-perl-0.0.3.orig/debian/rules +++ libclass-std-utils-perl-0.0.3/debian/rules @@ -0,0 +1,47 @@ +#!/usr/bin/make -f + +export PERL_MM_USE_DEFAULT=1 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Build.PL installdirs=vendor + $(PERL) Build + $(PERL) Build test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(PERL) Build install destdir=$(TMP) create_packlist=0 + touch $@ + +binary-arch: + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install