--- libemail-foldertype-perl-0.8.orig/debian/changelog +++ libemail-foldertype-perl-0.8/debian/changelog @@ -0,0 +1,25 @@ +libemail-foldertype-perl (0.8-2) unstable; urgency=low + + * Really add dependency on libmodule-pluggable-perl, + not build-dep. (Closes #359888) + + -- Michael Ablassmeier Thu, 30 Mar 2006 12:07:33 +0200 + +libemail-foldertype-perl (0.8-1) unstable; urgency=low + + * New upstream release (Closes: #329532) + * New Maintainer. (Closes: #357346) + * Remove debian/docs, no more readme in upstream tarball. + * Update Standards Version. + * Adjust short Description. + * Update debian/rules. + * Add dependency on libmodule-pluggable-perl. + + -- Michael Ablassmeier Thu, 23 Mar 2006 10:39:01 +0100 + +libemail-foldertype-perl (0.7-1) unstable; urgency=low + + * Initial Release. (Closes:Bug#269355) + + -- S. Zachariah Sprackett Tue, 31 Aug 2004 22:53:59 -0400 + --- libemail-foldertype-perl-0.8.orig/debian/control +++ libemail-foldertype-perl-0.8/debian/control @@ -0,0 +1,13 @@ +Source: libemail-foldertype-perl +Section: perl +Priority: optional +Maintainer: Michael Ablassmeier +Build-Depends-Indep: debhelper (>> 4.0.0), perl (>= 5.6.0-16), perl-modules +Standards-Version: 3.6.2 + +Package: libemail-foldertype-perl +Architecture: all +Depends: ${perl:Depends}, libmodule-pluggable-perl +Description: determine the type of a mail folder + Provides a utility function for detecting the type of a given mail folder. + Available types are subject to the types that are registered. --- libemail-foldertype-perl-0.8.orig/debian/copyright +++ libemail-foldertype-perl-0.8/debian/copyright @@ -0,0 +1,21 @@ +This package was debianized by S. Zachariah Sprackett on +Tue, 31 Aug 2004 22:51:23 -0400 + +It was downloaded from http://www.perl.com/CPAN + +Upstream Authors: + Casey West , Simon Wistow + +Copyright: + (C) Copyright 2003, Simon Wistow + (C) Copyright 2004, Casey West + + This program is free software; you can redistribute it and/or modify it + under the terms of the "Artistic License" which comes with Debian. + + THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +On Debian GNU/Linux systems, the complete text of the Artistic License +can be found in `/usr/share/common-licenses/Artistic'. --- libemail-foldertype-perl-0.8.orig/debian/rules +++ libemail-foldertype-perl-0.8/debian/rules @@ -0,0 +1,61 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatability version to use. +export DH_COMPAT=4 + +ifndef PERL + PERL = /usr/bin/perl +endif + +package = libemail-foldertype-perl + +build: build-stamp +build-stamp: + dh_testdir + + perl Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + -$(MAKE) realclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install PREFIX=$(CURDIR)/debian/$(package)/usr + -rmdir --ignore-fail-on-non-empty -p $(CURDIR)/debian/$(package)/usr/lib/perl5 + + +binary-arch: build install + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install