diff -Nru libbusiness-isbn-perl-3.005/Changes libbusiness-isbn-perl-3.006/Changes --- libbusiness-isbn-perl-3.005/Changes 2019-12-11 20:27:36.000000000 +0000 +++ libbusiness-isbn-perl-3.006/Changes 2021-01-19 14:45:16.000000000 +0000 @@ -1,5 +1,9 @@ Revision history for Perl module Business::ISBN +3.006 2021-01-19T14:44:51Z + * freshen distro, dump Travis CI, add Github Actions + * New Business::ISBN::Data is on the way too + 3.005 2019-12-11T20:27:13Z * Peter Williams fixed a big problem with ISBN-13 (GitHub #12) * You'll need to update Business::ISBN::Data too because Peter diff -Nru libbusiness-isbn-perl-3.005/debian/changelog libbusiness-isbn-perl-3.006/debian/changelog --- libbusiness-isbn-perl-3.005/debian/changelog 2019-12-15 01:59:16.000000000 +0000 +++ libbusiness-isbn-perl-3.006/debian/changelog 2021-01-23 20:09:32.000000000 +0000 @@ -1,3 +1,13 @@ +libbusiness-isbn-perl (3.006-1) unstable; urgency=medium + + * Import upstream version 3.006. + * Update years of upstream and packaging copyright. + * Declare compliance with Debian Policy 4.5.1. + * Set Rules-Requires-Root: no. + * Bump debhelper-compat to 13. + + -- gregor herrmann Sat, 23 Jan 2021 21:09:32 +0100 + libbusiness-isbn-perl (3.005-1) unstable; urgency=medium [ Damyan Ivanov ] diff -Nru libbusiness-isbn-perl-3.005/debian/control libbusiness-isbn-perl-3.006/debian/control --- libbusiness-isbn-perl-3.005/debian/control 2019-12-15 01:59:16.000000000 +0000 +++ libbusiness-isbn-perl-3.006/debian/control 2021-01-23 20:09:32.000000000 +0000 @@ -5,17 +5,18 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper-compat (= 12) +Build-Depends: debhelper-compat (= 13) Build-Depends-Indep: libbusiness-isbn-data-perl (>= 20191107) , libgd-barcode-perl , libtest-pod-coverage-perl , libtest-pod-perl , libwww-perl , perl -Standards-Version: 4.4.1 +Standards-Version: 4.5.1 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libbusiness-isbn-perl Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libbusiness-isbn-perl.git Homepage: https://sourceforge.net/projects/perl-isbn/ +Rules-Requires-Root: no Package: libbusiness-isbn-perl Architecture: all diff -Nru libbusiness-isbn-perl-3.005/debian/copyright libbusiness-isbn-perl-3.006/debian/copyright --- libbusiness-isbn-perl-3.005/debian/copyright 2019-12-15 01:59:16.000000000 +0000 +++ libbusiness-isbn-perl-3.006/debian/copyright 2021-01-23 20:09:32.000000000 +0000 @@ -4,11 +4,11 @@ Upstream-Contact: brian d foy Files: * -Copyright: 2001-2017, brian d foy +Copyright: 2001-2021, brian d foy License: Artistic-2.0 Files: debian/* -Copyright: 2007-2019, gregor herrmann +Copyright: 2007-2021, gregor herrmann 2007, Vincent Danjean 2009, Nathan Handler 2009, Rene Mayorga diff -Nru libbusiness-isbn-perl-3.005/lib/Business/ISBN10.pm libbusiness-isbn-perl-3.006/lib/Business/ISBN10.pm --- libbusiness-isbn-perl-3.005/lib/Business/ISBN10.pm 2019-12-11 20:27:36.000000000 +0000 +++ libbusiness-isbn-perl-3.006/lib/Business/ISBN10.pm 2021-01-19 14:45:16.000000000 +0000 @@ -1,3 +1,5 @@ +use 5.008; + package Business::ISBN10; use strict; use base qw(Business::ISBN); @@ -13,7 +15,7 @@ my $debug = 0; -our $VERSION = '3.005'; +our $VERSION = '3.006'; sub _max_length { 10 } @@ -104,7 +106,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright © 2001-2017, brian d foy . All rights reserved. +Copyright © 2001-2021, brian d foy . All rights reserved. This module is licensed under the Artistic License 2.0. See the LICENSE file in the distribution, or https://opensource.org/licenses/Artistic-2.0 diff -Nru libbusiness-isbn-perl-3.005/lib/Business/ISBN13.pm libbusiness-isbn-perl-3.006/lib/Business/ISBN13.pm --- libbusiness-isbn-perl-3.005/lib/Business/ISBN13.pm 2019-12-11 20:27:36.000000000 +0000 +++ libbusiness-isbn-perl-3.006/lib/Business/ISBN13.pm 2021-01-19 14:45:16.000000000 +0000 @@ -1,3 +1,5 @@ +use 5.008; + package Business::ISBN13; use strict; use base qw(Business::ISBN); @@ -9,7 +11,7 @@ my $debug = 0; -our $VERSION = '3.005'; +our $VERSION = '3.006'; sub _max_length { 13 } @@ -112,7 +114,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright © 2001-2017, brian d foy . All rights reserved. +Copyright © 2001-2021, brian d foy . All rights reserved. This module is licensed under the Artistic License 2.0. See the LICENSE file in the distribution, or https://opensource.org/licenses/Artistic-2.0 diff -Nru libbusiness-isbn-perl-3.005/lib/Business/ISBN.pm libbusiness-isbn-perl-3.006/lib/Business/ISBN.pm --- libbusiness-isbn-perl-3.005/lib/Business/ISBN.pm 2019-12-11 20:27:36.000000000 +0000 +++ libbusiness-isbn-perl-3.006/lib/Business/ISBN.pm 2021-01-19 14:45:16.000000000 +0000 @@ -1,3 +1,5 @@ +use 5.008; + package Business::ISBN; use strict; @@ -53,6 +55,11 @@ This modules handles International Standard Book Numbers, including ISBN-10 and ISBN-13. +The data come from L, which means you can update +the data separately from the code. Also, you can use L +with whatever F you like if you have updated data. See +that module for details. + =cut # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # @@ -120,7 +127,7 @@ ); }; -our $VERSION = '3.005'; +our $VERSION = '3.006'; sub ARTICLE_CODE_OUT_OF_RANGE () { -5 } sub INVALID_PREFIX () { -4 }; @@ -895,7 +902,7 @@ =head1 COPYRIGHT AND LICENSE -Copyright © 2001-2017, brian d foy . All rights reserved. +Copyright © 2001-2021, brian d foy . All rights reserved. This module is licensed under the Artistic License 2.0. See the LICENSE file in the distribution, or https://opensource.org/licenses/Artistic-2.0 diff -Nru libbusiness-isbn-perl-3.005/Makefile.PL libbusiness-isbn-perl-3.006/Makefile.PL --- libbusiness-isbn-perl-3.005/Makefile.PL 2019-12-11 20:27:36.000000000 +0000 +++ libbusiness-isbn-perl-3.006/Makefile.PL 2021-01-19 14:45:16.000000000 +0000 @@ -61,7 +61,7 @@ }, 'TEST_REQUIRES' => { - 'Test::More' => '0.95', + 'Test::More' => '1', }, 'PREREQ_PM' => { diff -Nru libbusiness-isbn-perl-3.005/MANIFEST.SKIP libbusiness-isbn-perl-3.006/MANIFEST.SKIP --- libbusiness-isbn-perl-3.005/MANIFEST.SKIP 2019-12-11 20:27:36.000000000 +0000 +++ libbusiness-isbn-perl-3.006/MANIFEST.SKIP 2021-01-19 14:45:16.000000000 +0000 @@ -58,7 +58,6 @@ #!end included /usr/local/perls/perl-5.18.1/lib/5.18.1/ExtUtils/MANIFEST.SKIP -\.travis\.yml \.?appveyor.yml \.releaserc \.lwpcookies @@ -75,3 +74,8 @@ select_tabledata.pl dropbox +\bMANIFEST\s\d +\bChanges\s\d +\.icloud$ +\A\.github\b + diff -Nru libbusiness-isbn-perl-3.005/META.json libbusiness-isbn-perl-3.006/META.json --- libbusiness-isbn-perl-3.005/META.json 2019-12-11 20:27:37.000000000 +0000 +++ libbusiness-isbn-perl-3.006/META.json 2021-01-19 14:45:18.000000000 +0000 @@ -10,7 +10,7 @@ ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : "2" + "version" : 2 }, "name" : "Business-ISBN", "no_index" : { @@ -37,7 +37,7 @@ }, "test" : { "requires" : { - "Test::More" : "0.95" + "Test::More" : "1" } } }, @@ -53,6 +53,6 @@ "web" : "https://github.com/briandfoy/business-isbn" } }, - "version" : "3.005", - "x_serialization_backend" : "JSON::PP version 2.27400_02" + "version" : "3.006", + "x_serialization_backend" : "JSON::PP version 4.02" } diff -Nru libbusiness-isbn-perl-3.005/META.yml libbusiness-isbn-perl-3.006/META.yml --- libbusiness-isbn-perl-3.005/META.yml 2019-12-11 20:27:37.000000000 +0000 +++ libbusiness-isbn-perl-3.006/META.yml 2021-01-19 14:45:18.000000000 +0000 @@ -3,7 +3,7 @@ author: - 'brian d foy ' build_requires: - Test::More: '0.95' + Test::More: '1' configure_requires: ExtUtils::MakeMaker: '6.64' File::Spec::Functions: '0' @@ -25,5 +25,5 @@ bugtracker: https://github.com/briandfoy/business-isbn/issues homepage: https://github.com/briandfoy/business-isbn repository: https://github.com/briandfoy/business-isbn.git -version: '3.005' +version: '3.006' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff -Nru libbusiness-isbn-perl-3.005/README.pod libbusiness-isbn-perl-3.006/README.pod --- libbusiness-isbn-perl-3.005/README.pod 2019-12-11 20:27:36.000000000 +0000 +++ libbusiness-isbn-perl-3.006/README.pod 2021-01-19 14:45:16.000000000 +0000 @@ -2,7 +2,11 @@ =encoding utf8 -=for HTML +=for HTML + +=for HTML + +=for HTML =for HTML @@ -100,7 +104,7 @@ you diagnose your problem. You might like to read L. +Problem|https://briandfoy.github.io/brians-guide-to-solving-any-perl-problem/>. =head2 Copyright and License