diff -Nru libmodule-versions-report-perl-1.05/ChangeLog libmodule-versions-report-perl-1.06/ChangeLog --- libmodule-versions-report-perl-1.05/ChangeLog 2008-06-13 20:30:11.000000000 +0100 +++ libmodule-versions-report-perl-1.06/ChangeLog 2008-10-21 14:16:18.000000000 +0100 @@ -1,5 +1,9 @@ Revision history for Perl module Module::Versions::Report +2008-10-21 Jesse Vincent + * Fix META.yml + * Bump the package limit from 1k to 10k + 2008-06-13 Jesse Vincent * Release 1.05 diff -Nru /tmp/9QIPEe2HxM/libmodule-versions-report-perl-1.05/debian/changelog /tmp/1Z6vzb62uc/libmodule-versions-report-perl-1.06/debian/changelog --- libmodule-versions-report-perl-1.05/debian/changelog 2008-11-05 22:26:46.000000000 +0000 +++ libmodule-versions-report-perl-1.06/debian/changelog 2008-11-05 22:26:46.000000000 +0000 @@ -1,3 +1,16 @@ +libmodule-versions-report-perl (1.06-1) unstable; urgency=low + + [ Ansgar Burchardt ] + * New upstream release. + * Add myself to Uploaders. + * Convert debian/copyright to proposed machine-readable format. + Copyright holders for debian/* are taken from the changelog. + + [ gregor herrmann ] + * debian/rules: use the group's default template. + + -- Ansgar Burchardt Sat, 25 Oct 2008 18:35:53 +0200 + libmodule-versions-report-perl (1.05-1) unstable; urgency=low * New upstream release. diff -Nru /tmp/9QIPEe2HxM/libmodule-versions-report-perl-1.05/debian/control /tmp/1Z6vzb62uc/libmodule-versions-report-perl-1.06/debian/control --- libmodule-versions-report-perl-1.05/debian/control 2008-11-05 22:26:46.000000000 +0000 +++ libmodule-versions-report-perl-1.06/debian/control 2008-11-05 22:26:46.000000000 +0000 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian Perl Group Uploaders: Niko Tyni , Damyan Ivanov , - gregor herrmann + gregor herrmann , Ansgar Burchardt Build-Depends: debhelper (>= 7) Build-Depends-Indep: perl (>= 5.6.0-16) Standards-Version: 3.8.0 diff -Nru /tmp/9QIPEe2HxM/libmodule-versions-report-perl-1.05/debian/copyright /tmp/1Z6vzb62uc/libmodule-versions-report-perl-1.06/debian/copyright --- libmodule-versions-report-perl-1.05/debian/copyright 2008-11-05 22:26:46.000000000 +0000 +++ libmodule-versions-report-perl-1.06/debian/copyright 2008-11-05 22:26:46.000000000 +0000 @@ -1,21 +1,33 @@ -This package was debianized by Stephen Quinney on -Fri, 02 Jul 2004 13:29:29 +0100 - -It was downloaded from http://search.cpan.org/dist/Module-Versions-Report/ - -Author: - - Sean M. Burke +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=228 +Upstream-Name: Module-Versions-Report +Upstream-Maintainer: Jesse Vincent +Upstream-Source: http://search.cpan.org/dist/Module-Versions-Report/ + +Files: * +Copyright: © 2001-2003, Sean M. Burke +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + . + This program is distributed in the hope that it will be useful, but + without any warranty; without even the implied warranty of + merchantability or fitness for a particular purpose. + . + 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'. +Files: debian/* Copyright: + © 2004-2006, Stephen Quinney + © 2006-2007, Niko Tyni + © 2008, Roberto C. Sanchez + © 2008, Jose Luis Rivas + © 2008, Damyan Ivanov + © 2008, gregor herrmann + © 2008, Ansgar Burchardt +License: GPL-1+ | Artistic + It is assumed that all contributors put their work under the same license + as the module itself. - Copyright 2001-2003, Sean M. Burke , all rights - reserved. This program is free software; you can redistribute it - and/or modify it under the same terms as Perl itself. - -License: - - 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'. diff -Nru /tmp/9QIPEe2HxM/libmodule-versions-report-perl-1.05/debian/rules /tmp/1Z6vzb62uc/libmodule-versions-report-perl-1.06/debian/rules --- libmodule-versions-report-perl-1.05/debian/rules 2008-11-05 22:26:46.000000000 +0000 +++ libmodule-versions-report-perl-1.06/debian/rules 2008-11-05 22:26:46.000000000 +0000 @@ -1,4 +1,23 @@ #!/usr/bin/make -f -%: +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build diff -Nru /tmp/9QIPEe2HxM/libmodule-versions-report-perl-1.05/lib/Module/Versions/Report.pm /tmp/1Z6vzb62uc/libmodule-versions-report-perl-1.06/lib/Module/Versions/Report.pm --- libmodule-versions-report-perl-1.05/lib/Module/Versions/Report.pm 2008-06-13 20:29:13.000000000 +0100 +++ libmodule-versions-report-perl-1.06/lib/Module/Versions/Report.pm 2008-10-21 14:15:40.000000000 +0100 @@ -1,8 +1,8 @@ require 5; package Module::Versions::Report; -$VERSION = '1.05'; -$PACKAGES_LIMIT = 1000; +$VERSION = '1.06'; +$PACKAGES_LIMIT = 10000; =head1 NAME diff -Nru /tmp/9QIPEe2HxM/libmodule-versions-report-perl-1.05/Makefile.PL /tmp/1Z6vzb62uc/libmodule-versions-report-perl-1.06/Makefile.PL --- libmodule-versions-report-perl-1.05/Makefile.PL 2008-06-05 17:29:43.000000000 +0100 +++ libmodule-versions-report-perl-1.06/Makefile.PL 2008-10-21 14:25:24.000000000 +0100 @@ -7,6 +7,7 @@ WriteMakefile( NAME => 'Module-Versions-Report', VERSION_FROM => 'lib/Module/Versions/Report.pm', + LICENSE => 'perl', ABSTRACT => 'report versions of all modules in memory', 'dist' => { COMPRESS => 'gzip -6f', SUFFIX => 'gz', }, ); diff -Nru /tmp/9QIPEe2HxM/libmodule-versions-report-perl-1.05/META.yml /tmp/1Z6vzb62uc/libmodule-versions-report-perl-1.06/META.yml --- libmodule-versions-report-perl-1.05/META.yml 2008-06-13 20:30:38.000000000 +0100 +++ libmodule-versions-report-perl-1.06/META.yml 2008-10-21 14:27:04.000000000 +0100 @@ -1,12 +1,18 @@ --- #YAML:1.0 -name: Module-Versions-Report -version: 1.05 -abstract: report versions of all modules in memory -license: ~ -author: ~ -generated_by: ExtUtils::MakeMaker version 6.44 -distribution_type: module -requires: +name: Module-Versions-Report +version: 1.06 +abstract: report versions of all modules in memory +author: [] +license: perl +distribution_type: module +configure_requires: + ExtUtils::MakeMaker: 0 +requires: {} +no_index: + directory: + - t + - inc +generated_by: ExtUtils::MakeMaker version 6.46 meta-spec: - url: http://module-build.sourceforge.net/META-spec-v1.3.html - version: 1.3 + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 diff -Nru /tmp/9QIPEe2HxM/libmodule-versions-report-perl-1.05/SIGNATURE /tmp/1Z6vzb62uc/libmodule-versions-report-perl-1.06/SIGNATURE --- libmodule-versions-report-perl-1.05/SIGNATURE 2008-06-13 20:30:34.000000000 +0100 +++ libmodule-versions-report-perl-1.06/SIGNATURE 2008-10-21 14:26:52.000000000 +0100 @@ -14,19 +14,19 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -SHA1 bab979585b69021cd5060cc9d961382dee57c852 ChangeLog +SHA1 e6547a75bfa35b5f3ee0e9de3d130a7f5c948253 ChangeLog SHA1 5100a6effb9d891380cdef4568fd1b76256374a1 MANIFEST SHA1 b06a8885d1afbe56e1601b4950784b2dfc0a5208 MANIFEST.SKIP -SHA1 f989d5dce8c4cabe64fb945934be60116750ef8e META.yml -SHA1 13483ba20165e50ad24143c1a8a017f83bffe094 Makefile.PL +SHA1 ada2a8d90afd8d680c089047331f746c91be98e9 META.yml +SHA1 8b2130262330b204bf5d85fc1bdc57e1844e4037 Makefile.PL SHA1 c1ef7c52be72b6f5c504fdc57bf5b8e438f80193 README -SHA1 6d28fb26b7ebffb34df6363e8671cd1dc74ae917 lib/Module/Versions/Report.pm +SHA1 e262c899efaa4495925fe3c8b83954560d515638 lib/Module/Versions/Report.pm SHA1 a56f8e90792af5e6407d1fc1af7ad4a8c12f9cf7 t/00about.t SHA1 6f54aa87a5d212f92d04c44e632e46bfe6520ff5 t/10load.t -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.8 (Darwin) +Version: GnuPG v1.4.9 (Darwin) -iD8DBQFIUsrYEi9d9xCOQEYRAt6aAJ9Vi3fhltVToNcRXd0iEoYHOXG4NQCfXnYW -Y17fdwA2BVdP5O8Z4pXVMBU= -=7V8R +iEYEARECAAYFAkj92JoACgkQEi9d9xCOQEYYOQCdHUj6DMaCFx5jRB2F2tgomZCm +XrwAn2WSX4VeVh9bBYBiq3bgbnrd6ELE +=eim6 -----END PGP SIGNATURE-----