--- libemail-foldertype-perl-0.813.orig/debian/changelog +++ libemail-foldertype-perl-0.813/debian/changelog @@ -0,0 +1,83 @@ +libemail-foldertype-perl (0.813-1.3) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Sun, 03 Jan 2021 19:56:19 +0100 + +libemail-foldertype-perl (0.813-1.2) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "Removal of debhelper compat 4": switch to debhelper compat level 9. + (Closes: #817528) + * Drop build-dependency on perl-modules. + + -- gregor herrmann Tue, 28 Jun 2016 11:57:21 +0200 + +libemail-foldertype-perl (0.813-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "FTBFS with perl 5.22 in experimental (MakeMaker changes)": + use DESTDIR in debian/rules. + (Closes: #793527) + + -- gregor herrmann Wed, 26 Aug 2015 17:08:35 +0200 + +libemail-foldertype-perl (0.813-1) unstable; urgency=low + + * New upstream release + + -- Michael Ablassmeier Sat, 24 Mar 2007 15:23:58 +0100 + +libemail-foldertype-perl (0.812-1) unstable; urgency=low + + * New upstream release + * Add new README file to debian/docs + + -- Michael Ablassmeier Wed, 30 Aug 2006 06:54:50 +0200 + +libemail-foldertype-perl (0.811-1) unstable; urgency=low + + * New upstream release + * Add watch file + + -- Michael Ablassmeier Wed, 23 Aug 2006 09:56:15 +0200 + +libemail-foldertype-perl (0.810-1) unstable; urgency=low + + * New upstream release + + -- Michael Ablassmeier Thu, 3 Aug 2006 10:46:20 +0200 + +libemail-foldertype-perl (0.8-3) unstable; urgency=low + + * Move debhelper from B-D-I to B-D. + * Conforms with new Standards Version. + + -- Michael Ablassmeier Fri, 16 Jun 2006 10:25:59 +0200 + +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.813.orig/debian/compat +++ libemail-foldertype-perl-0.813/debian/compat @@ -0,0 +1 @@ +9 --- libemail-foldertype-perl-0.813.orig/debian/control +++ libemail-foldertype-perl-0.813/debian/control @@ -0,0 +1,14 @@ +Source: libemail-foldertype-perl +Section: perl +Priority: optional +Maintainer: Michael Ablassmeier +Build-Depends: debhelper (>= 9) +Build-Depends-Indep: perl (>= 5.6.0-16) +Standards-Version: 3.7.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.813.orig/debian/copyright +++ libemail-foldertype-perl-0.813/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.813.orig/debian/docs +++ libemail-foldertype-perl-0.813/debian/docs @@ -0,0 +1 @@ +README --- libemail-foldertype-perl-0.813.orig/debian/rules +++ libemail-foldertype-perl-0.813/debian/rules @@ -0,0 +1,58 @@ +#!/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 + +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 DESTDIR=$(CURDIR)/debian/$(package) + -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