--- liblogfile-rotate-perl-1.04.orig/debian/changelog +++ liblogfile-rotate-perl-1.04/debian/changelog @@ -0,0 +1,78 @@ +liblogfile-rotate-perl (1.04-4.1) 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 13:21:35 +0100 + +liblogfile-rotate-perl (1.04-4) unstable; urgency=low + + * In debian/rules, remove /usr/lib/perl5 only if it exists. + Prevents FTBFS under perl 5.10. (Closes: #467887) + * Add tmancill@debian.org to Uploaders in debian/control. + * Remove Build-Depends-Indep dependency on debhelper. + + -- tony mancill Thu, 28 Feb 2008 11:47:30 -0800 + +liblogfile-rotate-perl (1.04-3) unstable; urgency=low + + * New maintainer (Closes: #358573). + * Conforms to Debian Policy version 3.7.2.0. + + -- Eugene Krivdyuk Thu, 1 Jun 2006 17:10:25 +0300 + +liblogfile-rotate-perl (1.04-2) unstable; urgency=low + + * QA upload. + * Package is orphaned (#358573); set maintainer to Debian QA Group. + * Acknowledge NMU. Closes: #157489. + * Change section to perl in accordance with the override file. + * Switch to debhelper 5. + * debian/changelog: Remove obsolete Emacs local variables. + * debian/copyright: Refer to /usr/share/common-licenses/GPL and + /usr/share/common-licenses/Artistic. + * debian/watch: Add. + * Conforms to Standards version 3.6.2. + + -- Matej Vela Thu, 6 Apr 2006 09:09:21 +0200 + +liblogfile-rotate-perl (1.04-1.2) unstable; urgency=low + + * Non-Maintainer Upload (BSP 2002-11) + * Changed Build-Depends to Build-Depends-Indep. + * Now Build the .deb in binary-indep target (closes: Bug#157489). + + -- Aurelien Jarno Fri, 22 Nov 2002 13:30:24 +0100 + +liblogfile-rotate-perl (1.04-1) unstable; urgency=low + + * New upstream release + * Build with latest dh-make-perl/debhelper + * Build with latest perl policy + + -- Scott K. Ellis Sat, 24 Feb 2001 20:48:36 -0500 + +liblogfile-rotate-perl (1.03-1) unstable; urgency=low + + * New upstream release + + -- Scott K. Ellis Tue, 9 May 2000 10:29:36 -0400 + +liblogfile-rotate-perl (0.12-2.1) unstable; urgency=low + + * NMU for perl-5.005 upgrade. + * Follow the new perl policy. + + -- Raphael Hertzog Fri, 2 Jul 1999 22:09:49 +0200 + +liblogfile-rotate-perl (0.12-2) unstable; urgency=low + + * Missed installing manpage (oops). + + -- Scott K. Ellis Thu, 26 Mar 1998 16:01:14 -0500 + +liblogfile-rotate-perl (0.12-1) unstable; urgency=low + + * Initial Release. + + -- Scott K. Ellis Thu, 26 Mar 1998 15:46:56 -0500 --- liblogfile-rotate-perl-1.04.orig/debian/compat +++ liblogfile-rotate-perl-1.04/debian/compat @@ -0,0 +1 @@ +5 --- liblogfile-rotate-perl-1.04.orig/debian/control +++ liblogfile-rotate-perl-1.04/debian/control @@ -0,0 +1,15 @@ +Source: liblogfile-rotate-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.6.0-17) +Maintainer: Eugene Krivdyuk +Uploaders: tony mancill +Standards-Version: 3.7.2.0 + +Package: liblogfile-rotate-perl +Architecture: all +Depends: ${perl:Depends} +Description: Perl module to rotate logfiles + Logfile::Rotate provides methods to rename and save several versions of + your logfiles, optionally compressing them after renaming them. --- liblogfile-rotate-perl-1.04.orig/debian/copyright +++ liblogfile-rotate-perl-1.04/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by Scott K. Ellis + +Current maintainer is Eugene Krivdyuk + +It was downloaded from CPAN (http://www.perl.com/CPAN/) + +The upstream author is: + +Paul Gampe . + + +Copyright (c) 1997-99 Paul Gampe. All rights reserved. +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN ``AS IS'' BASIS, AND +THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE +MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +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'. --- liblogfile-rotate-perl-1.04.orig/debian/docs +++ liblogfile-rotate-perl-1.04/debian/docs @@ -0,0 +1,3 @@ +README +TODO +Logfile-Rotate.man.html --- liblogfile-rotate-perl-1.04.orig/debian/rules +++ liblogfile-rotate-perl-1.04/debian/rules @@ -0,0 +1,53 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PERL ?= /usr/bin/perl +package = liblogfile-rotate-perl + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) realclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/$(package) + [ ! -d $(package)/usr/lib/perl5 ] || rmdir --parents --ignore-fail-on-non-empty --verbose $(package)/usr/lib/perl5 + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs Changes + dh_installdocs + dh_link + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- liblogfile-rotate-perl-1.04.orig/debian/watch +++ liblogfile-rotate-perl-1.04/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/CPAN/authors/id/P/PA/PAULG/Logfile-Rotate-(.*)\.tar\.gz