--- set-crontab-perl-1.02.orig/debian/changelog +++ set-crontab-perl-1.02/debian/changelog @@ -0,0 +1,34 @@ +set-crontab-perl (1.02-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "FTBFS with perl 5.22 in experimental (MakeMaker changes)": + use DESTDIR in debian/rules. + (Closes: #795679) + + -- gregor herrmann Wed, 26 Aug 2015 18:41:01 +0200 + +set-crontab-perl (1.02-1) unstable; urgency=low + + * New upstream release. + * Added Standards-Version number to debian/control (Closes: #553568, + thanks to Manoj Srivastava for the report) + * Moved debhelper compatibility level from debian/rules to + debian/compat and increased level to 5. + * Added ${misc:Depends} to dependencies. + * Call dh_ commands from binary-indep target instead of binary-arch. + + -- Stefan Hornburg (Racke) Sun, 01 Nov 2009 19:24:22 +0100 + +set-crontab-perl (1.00-2) unstable; urgency=low + + * Changed architecture to all (Closes: #356512, thanks to Martin + Michlmayr ) + + -- Stefan Hornburg (Racke) Mon, 13 Mar 2006 09:30:41 +0100 + +set-crontab-perl (1.00-1) unstable; urgency=low + + * Initial Release (Closes: #330092). + + -- Stefan Hornburg (Racke) Tue, 27 Sep 2005 11:26:51 +0200 + --- set-crontab-perl-1.02.orig/debian/compat +++ set-crontab-perl-1.02/debian/compat @@ -0,0 +1 @@ +5 \ No newline at end of file --- set-crontab-perl-1.02.orig/debian/control +++ set-crontab-perl-1.02/debian/control @@ -0,0 +1,13 @@ +Source: set-crontab-perl +Section: perl +Priority: optional +Maintainer: Stefan Hornburg (Racke) +Build-Depends: debhelper (>> 5.0.0) +Standards-Version: 3.8.3 + +Package: libset-crontab-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Expand crontab-style integer lists + Set::Crontab parses crontab-style lists of integers and defines + some utility functions to make it easier to deal with them. --- set-crontab-perl-1.02.orig/debian/copyright +++ set-crontab-perl-1.02/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by Stefan Hornburg on +Tue Sep 27 11:21:29 2005 CEST. + +It was downloaded from the Comprehensive Perl Archive Network (CPAN). +Visit to find a CPAN site near you. + +Upstream Author: Abhijit Menon-Sen + +Copyright: + +Copyright 2001 Abhijit Menon-Sen + +This software is distributed under the terms of the Artistic License + +On a Debian system a copy of the Perl license can be found in the file +'/usr/share/common-licenses/Artistic'. + --- set-crontab-perl-1.02.orig/debian/rules +++ set-crontab-perl-1.02/debian/rules @@ -0,0 +1,80 @@ +#!/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 + +TMP := $(shell pwd)/debian/libset-crontab-perl +archlib := $(shell $(PERL) -MConfig -e 'print $$Config{installarchlib}') + +config =INSTALLDIRS=perl INSTALLMAN1DIR=$(TMP)/usr/share/man/man1 INSTALLMAN3DIR=$(TMP)/usr/share/man/man3 INSTALLARCHLIB=$(TMP)$(archlib) INSTALLBIN=$(TMP)/usr/bin INSTALLSCRIPT=$(TMP)/usr/bin + +build: build-stamp +build-stamp: + dh_testdir + +# Add here commands to compile the package. + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + - + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + +# Add here commands to install the package into debian/tmp. + $(MAKE) install DESTDIR=$(TMP) + +# Build architecture-independent files here. +binary-indep: build install +# dh_testversion + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installpam +# dh_installinit + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install