--- libclass-pluggable-perl-0.022.orig/debian/changelog +++ libclass-pluggable-perl-0.022/debian/changelog @@ -0,0 +1,11 @@ +libclass-pluggable-perl (0.022-2) unstable; urgency=medium + + * Correctly specify my email address in the control & changelog files. + + -- Sarah Connor Wed, 26 Mar 2008 09:55:21 +0000 + +libclass-pluggable-perl (0.022-1) unstable; urgency=low + + * Initial Release. (Closes: #471567) + + -- Sarah Connor Tue, 18 Mar 2008 23:25:45 +0000 --- libclass-pluggable-perl-0.022.orig/debian/control +++ libclass-pluggable-perl-0.022/debian/control @@ -0,0 +1,22 @@ +Source: libclass-pluggable-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-12) +Maintainer: Sarah Connor +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Class-Pluggable/ + +Package: libclass-pluggable-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, +Description: Simple pluggable class. + This class makes your class (sub class of Class::Pluggable) pluggable. + In this documentation, the word "pluggable" has two meanings. + . + One is just simply adding new method to your pluggable classs from + other plugin modules. So, after you plugged some modules to your class, + you can use there method exactly same as your own object method. + . + You can see this kind of plugin mechanism in CGI::Application and + CGI::Application::Plugin::Session. --- libclass-pluggable-perl-0.022.orig/debian/compat +++ libclass-pluggable-perl-0.022/debian/compat @@ -0,0 +1 @@ +5 --- libclass-pluggable-perl-0.022.orig/debian/watch +++ libclass-pluggable-perl-0.022/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 3; this line is compulsory! +version=3 +http://search.cpan.org/dist/Class-Pluggable/ .*/Class-Pluggable-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libclass-pluggable-perl-0.022.orig/debian/copyright +++ libclass-pluggable-perl-0.022/debian/copyright @@ -0,0 +1,22 @@ +This is the debian package for the Class-Pluggable module. +It was created by Sarah Connor on +Tuesday 18th March 2008 + +It was downloaded from http://search.cpan.org/dist/Class-Pluggable/ + +The upstream author is: Ken Takeshige, . + +Copyright (c) 2006 Ken Takeshige + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + 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'. --- libclass-pluggable-perl-0.022.orig/debian/rules +++ libclass-pluggable-perl-0.022/debian/rules @@ -0,0 +1,76 @@ +#!/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. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +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 + + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + # Add commands to install the package into $(TMP) here + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installexamples + dh_installdocs README + dh_installchangelogs Changes + 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