diff -Nru set-crontab-perl-1.00/Changes set-crontab-perl-1.02/Changes --- set-crontab-perl-1.00/Changes 2001-05-01 00:26:05.000000000 +0100 +++ set-crontab-perl-1.02/Changes 2008-07-30 16:11:38.000000000 +0100 @@ -1,3 +1,15 @@ +1.02 2008-07-30 + + * The 1.01 distribution tarball was broken; this is what it should + have been. + +1.01 2008-07-30 + + * Relicensed on request from the old Artistic License to "the same + terms as Perl itself" (i.e. new Artistic/GPL). + + (No functional changes.) + 1.00 2001-05-01 * First stable release. diff -Nru /tmp/NTtPonQHDf/set-crontab-perl-1.00/Crontab.pm /tmp/3EkxendNAf/set-crontab-perl-1.02/Crontab.pm --- set-crontab-perl-1.00/Crontab.pm 2001-05-01 00:44:44.000000000 +0100 +++ set-crontab-perl-1.02/Crontab.pm 2008-07-30 16:11:55.000000000 +0100 @@ -1,5 +1,4 @@ -# $Id: Crontab.pm,v 1.00 2001/04/30 23:44:44 ams Exp $ -# Copyright 2001 Abhijit Menon-Sen +# Copyright 2001 Abhijit Menon-Sen package Set::Crontab; @@ -7,7 +6,7 @@ use Carp; use vars qw( $VERSION ); -($VERSION) = q$Revision: 1.00 $ =~ /([\d.]+)/; +$VERSION = '1.02'; sub _expand { @@ -151,9 +150,9 @@ =head1 AUTHOR -Abhijit Menon-Sen +Abhijit Menon-Sen -Copyright 2001 Abhijit Menon-Sen +Copyright 2001 Abhijit Menon-Sen -This software is distributed under the terms of the Artistic License -. +This module is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. diff -Nru /tmp/NTtPonQHDf/set-crontab-perl-1.00/debian/changelog /tmp/3EkxendNAf/set-crontab-perl-1.02/debian/changelog --- set-crontab-perl-1.00/debian/changelog 2009-11-10 10:00:25.000000000 +0000 +++ set-crontab-perl-1.02/debian/changelog 2009-11-10 10:00:25.000000000 +0000 @@ -1,3 +1,15 @@ +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 diff -Nru /tmp/NTtPonQHDf/set-crontab-perl-1.00/debian/compat /tmp/3EkxendNAf/set-crontab-perl-1.02/debian/compat --- set-crontab-perl-1.00/debian/compat 1970-01-01 01:00:00.000000000 +0100 +++ set-crontab-perl-1.02/debian/compat 2009-11-10 10:00:25.000000000 +0000 @@ -0,0 +1 @@ +5 \ No newline at end of file diff -Nru /tmp/NTtPonQHDf/set-crontab-perl-1.00/debian/control /tmp/3EkxendNAf/set-crontab-perl-1.02/debian/control --- set-crontab-perl-1.00/debian/control 2009-11-10 10:00:25.000000000 +0000 +++ set-crontab-perl-1.02/debian/control 2009-11-10 10:00:25.000000000 +0000 @@ -2,12 +2,12 @@ Section: perl Priority: optional Maintainer: Stefan Hornburg (Racke) -Build-Depends: debhelper (>> 3.0.0) -Standards-Version: +Build-Depends: debhelper (>> 5.0.0) +Standards-Version: 3.8.3 Package: libset-crontab-perl Architecture: all -Depends: ${perl:Depends} +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. diff -Nru /tmp/NTtPonQHDf/set-crontab-perl-1.00/debian/rules /tmp/3EkxendNAf/set-crontab-perl-1.02/debian/rules --- set-crontab-perl-1.00/debian/rules 2009-11-10 10:00:25.000000000 +0000 +++ set-crontab-perl-1.02/debian/rules 2009-11-10 10:00:25.000000000 +0000 @@ -5,9 +5,6 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -# This is the debhelper compatability version to use. -export DH_COMPAT=3 - ifndef PERL PERL = /usr/bin/perl endif @@ -48,10 +45,6 @@ # Build architecture-independent files here. binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install # dh_testversion dh_testdir dh_testroot @@ -79,5 +72,9 @@ 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 diff -Nru /tmp/NTtPonQHDf/set-crontab-perl-1.00/MANIFEST /tmp/3EkxendNAf/set-crontab-perl-1.02/MANIFEST --- set-crontab-perl-1.00/MANIFEST 2001-05-01 00:26:14.000000000 +0100 +++ set-crontab-perl-1.02/MANIFEST 2008-07-30 16:12:16.000000000 +0100 @@ -1,6 +1,7 @@ Changes Crontab.pm -MANIFEST Makefile.PL README test.pl +MANIFEST +META.yml Module meta-data (added by MakeMaker) diff -Nru /tmp/NTtPonQHDf/set-crontab-perl-1.00/META.yml /tmp/3EkxendNAf/set-crontab-perl-1.02/META.yml --- set-crontab-perl-1.00/META.yml 1970-01-01 01:00:00.000000000 +0100 +++ set-crontab-perl-1.02/META.yml 2008-07-30 16:12:16.000000000 +0100 @@ -0,0 +1,10 @@ +# http://module-build.sourceforge.net/META-spec.html +#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# +name: Set-Crontab +version: 1.02 +version_from: Crontab.pm +installdirs: site +requires: + +distribution_type: module +generated_by: ExtUtils::MakeMaker version 6.30_01 diff -Nru /tmp/NTtPonQHDf/set-crontab-perl-1.00/README /tmp/3EkxendNAf/set-crontab-perl-1.02/README --- set-crontab-perl-1.00/README 2001-05-01 00:43:12.000000000 +0100 +++ set-crontab-perl-1.02/README 2008-07-29 23:09:46.000000000 +0100 @@ -45,9 +45,9 @@ The crontab(5) manpage. AUTHOR - Abhijit Menon-Sen + Abhijit Menon-Sen - Copyright 2001 Abhijit Menon-Sen + Copyright 2001 Abhijit Menon-Sen - This software is distributed under the terms of the Artistic - License . + This module is free software; you can redistribute it and/or modify + it under the same terms as Perl itself.