diff -Nru libpackage-constants-perl-0.04/CHANGES libpackage-constants-perl-0.06/CHANGES --- libpackage-constants-perl-0.04/CHANGES 2013-10-24 19:35:34.000000000 +0000 +++ libpackage-constants-perl-0.06/CHANGES 2014-12-24 09:39:01.000000000 +0000 @@ -1,12 +1,23 @@ -0.04 Thu Oct 24 20:34:00 BST 2013 -================================================= -* Update Makefile.PL to add repository et al -* Install into site if >= v5.12.0 -* Add use deprecate due to core scheduled removal +Revision history for Perl module Package::Constants + +0.06 2014-12-24 BINGOS + - Added min perl version 5.006 to the code, and added "use warnings", + and use of our. + - Added min perl version 5.006 to metadata + - Reformatted this file as per CPAN::Changes::Spec + - Added SEE ALSO section to doc + +0.04 2013-10-24 BINGOS + - Update Makefile.PL to add repository et al + - Install into site if >= v5.12.0 + - Add use deprecate due to core scheduled removal + +0.02 2008-12-13 KANE + - Users of 0.01 need not upgrade + - Package::Constants is a core module, so the Makefile.PL + should reflect this and install into the 'core' + directory, instead of 'site' + +0.01 2005-09-06 KANE + - First release to CPAN -0.02 Sat Dec 13 18:35:01 CET 2008 -================================================= -* Users of 0.01 need not upgrade -* Package::Constants is a core module, so the Makefile.PL - should reflect this and install into the 'core' - directory, instead of 'site' diff -Nru libpackage-constants-perl-0.04/debian/changelog libpackage-constants-perl-0.06/debian/changelog --- libpackage-constants-perl-0.04/debian/changelog 2014-05-11 13:09:34.000000000 +0000 +++ libpackage-constants-perl-0.06/debian/changelog 2015-11-29 16:17:15.000000000 +0000 @@ -1,3 +1,21 @@ +libpackage-constants-perl (0.06-1) unstable; urgency=medium + + * Team upload. + + [ Salvatore Bonaccorso ] + * Update Vcs-Browser URL to cgit web frontend + + [ gregor herrmann ] + * Add debian/upstream/metadata. + * Import upstream version 0.06. + * Add years of upstream copyright. + * Update Upstream-Contact in debian/copyright. + * Mark package as autopkgtest-able. + * Declare compliance with Debian Policy 3.9.6. + * Make short description a noun phrase. + + -- gregor herrmann Sun, 29 Nov 2015 17:17:01 +0100 + libpackage-constants-perl (0.04-1) unstable; urgency=low * Initial release. (Closes: #747731) diff -Nru libpackage-constants-perl-0.04/debian/control libpackage-constants-perl-0.06/debian/control --- libpackage-constants-perl-0.04/debian/control 2014-05-11 13:07:37.000000000 +0000 +++ libpackage-constants-perl-0.06/debian/control 2015-11-29 16:17:15.000000000 +0000 @@ -1,19 +1,21 @@ Source: libpackage-constants-perl -Section: perl -Priority: optional Maintainer: Debian Perl Group Uploaders: Niko Tyni -Build-Depends: debhelper (>= 9.20120312) +Section: perl +Testsuite: autopkgtest-pkg-perl +Priority: optional +Build-Depends: debhelper (>= 9) Build-Depends-Indep: perl -Standards-Version: 3.9.5 -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libpackage-constants-perl.git +Standards-Version: 3.9.6 +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libpackage-constants-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libpackage-constants-perl.git Homepage: https://metacpan.org/release/Package-Constants Package: libpackage-constants-perl Architecture: all -Depends: ${misc:Depends}, ${perl:Depends} -Description: List constants defined in a package +Depends: ${misc:Depends}, + ${perl:Depends} +Description: module to list constants defined in a package Package::Constants lists all the constants defined in a certain package. This can be useful for, among others, setting up an autogenerated @EXPORT/@EXPORT_OK for a Constants.pm file. diff -Nru libpackage-constants-perl-0.04/debian/copyright libpackage-constants-perl-0.06/debian/copyright --- libpackage-constants-perl-0.04/debian/copyright 2014-05-11 13:08:15.000000000 +0000 +++ libpackage-constants-perl-0.06/debian/copyright 2015-11-29 16:17:15.000000000 +0000 @@ -1,19 +1,15 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: https://metacpan.org/release/Package-Constants -Upstream-Contact: Jos Boumans +Upstream-Contact: Chris Williams Upstream-Name: Package-Constants Files: * -Copyright: Jos Boumans +Copyright: 2005, Jos Boumans License: Artistic or GPL-1+ - This library is free software; you may redistribute and/or modify it - under the same terms as Perl itself. Files: debian/* Copyright: 2014, Niko Tyni License: Artistic or GPL-1+ - The Debian packaging is licensed under the same terms as the software - itself. License: Artistic This program is free software; you can redistribute it and/or modify diff -Nru libpackage-constants-perl-0.04/debian/upstream/metadata libpackage-constants-perl-0.06/debian/upstream/metadata --- libpackage-constants-perl-0.04/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ libpackage-constants-perl-0.06/debian/upstream/metadata 2015-11-29 16:17:15.000000000 +0000 @@ -0,0 +1,5 @@ +--- +Archive: CPAN +Contact: Chris Williams +Name: Package-Constants +Repository: git://github.com/jib/package-constants.git diff -Nru libpackage-constants-perl-0.04/lib/Package/Constants.pm libpackage-constants-perl-0.06/lib/Package/Constants.pm --- libpackage-constants-perl-0.04/lib/Package/Constants.pm 2013-10-24 19:37:08.000000000 +0000 +++ libpackage-constants-perl-0.06/lib/Package/Constants.pm 2014-12-24 09:39:19.000000000 +0000 @@ -2,11 +2,12 @@ use if $] >= 5.019006, 'deprecate'; +use 5.006; use strict; -use vars qw[$VERSION $DEBUG]; +use warnings; -$VERSION = '0.04'; -$DEBUG = 0; +our $VERSION = '0.06'; +our $DEBUG = 0; =head1 NAME @@ -85,6 +86,10 @@ 1; +=head1 SEE ALSO + +L - get a list of all the public functions defined in a package. + =head1 BUG REPORTS Please report bugs or other issues to Ebug-package-constants@rt.cpan.org. diff -Nru libpackage-constants-perl-0.04/Makefile.PL libpackage-constants-perl-0.06/Makefile.PL --- libpackage-constants-perl-0.04/Makefile.PL 2013-10-24 19:29:42.000000000 +0000 +++ libpackage-constants-perl-0.06/Makefile.PL 2014-12-24 09:37:44.000000000 +0000 @@ -9,14 +9,15 @@ }, }, - NAME => 'Package::Constants', - VERSION_FROM => 'lib/Package/Constants.pm', # finds $VERSION - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, - PREREQ_PM => { 'Test::More' => 0, - }, - INSTALLDIRS => ( $] >= 5.009005 && $] < 5.012 ? 'perl' : 'site' ), - AUTHOR => 'Jos Boumans ', - ABSTRACT => 'List constants defined in a package' + NAME => 'Package::Constants', + VERSION_FROM => 'lib/Package/Constants.pm', # finds $VERSION + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, + PREREQ_PM => { 'Test::More' => 0, + }, + INSTALLDIRS => ( $] >= 5.009005 && $] < 5.012 ? 'perl' : 'site' ), + AUTHOR => 'Jos Boumans ', + ABSTRACT => 'List constants defined in a package', + MIN_PERL_VERSION => '5.006', ); sub WriteMakefile1 { #Written by Alexandr Ciornii, version 0.21. Added by eumm-upgrade. diff -Nru libpackage-constants-perl-0.04/META.json libpackage-constants-perl-0.06/META.json --- libpackage-constants-perl-0.04/META.json 2013-10-24 19:39:40.000000000 +0000 +++ libpackage-constants-perl-0.06/META.json 2014-12-24 09:40:05.000000000 +0000 @@ -4,7 +4,7 @@ "Jos Boumans " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.8, CPAN::Meta::Converter version 2.132830", + "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.143240", "license" : [ "perl_5" ], @@ -32,7 +32,8 @@ }, "runtime" : { "requires" : { - "Test::More" : "0" + "Test::More" : "0", + "perl" : "5.006" } } }, @@ -42,5 +43,5 @@ "url" : "git://github.com/jib/package-constants.git" } }, - "version" : "0.04" + "version" : "0.06" } diff -Nru libpackage-constants-perl-0.04/META.yml libpackage-constants-perl-0.06/META.yml --- libpackage-constants-perl-0.04/META.yml 2013-10-24 19:39:40.000000000 +0000 +++ libpackage-constants-perl-0.06/META.yml 2014-12-24 09:40:05.000000000 +0000 @@ -3,22 +3,23 @@ author: - 'Jos Boumans ' build_requires: - ExtUtils::MakeMaker: 0 + ExtUtils::MakeMaker: '0' configure_requires: - ExtUtils::MakeMaker: 0 + ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.8, CPAN::Meta::Converter version 2.132830' +generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.143240' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 + version: '1.4' name: Package-Constants no_index: directory: - t - inc requires: - Test::More: 0 + Test::More: '0' + perl: '5.006' resources: repository: git://github.com/jib/package-constants.git -version: 0.04 +version: '0.06'