diff -Nru libouch-perl-0.0500/Changes libouch-perl-0.0501/Changes --- libouch-perl-0.0500/Changes 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/Changes 2019-01-29 22:33:28.000000000 +0000 @@ -1,5 +1,8 @@ Revision history for Perl module Ouch +0.0501 2019-01-29 + - Auto generate META.json as suggested by CPANTS. (Mohammad S Anwar) + 0.0500 2017-06-21 - Made :trytiny more Try::Tiny-sh thanks to Flavio Poletti diff -Nru libouch-perl-0.0500/debian/changelog libouch-perl-0.0501/debian/changelog --- libouch-perl-0.0500/debian/changelog 2018-01-01 23:21:46.000000000 +0000 +++ libouch-perl-0.0501/debian/changelog 2019-02-06 19:29:16.000000000 +0000 @@ -1,3 +1,17 @@ +libouch-perl (0.0501-1) unstable; urgency=medium + + [ Salvatore Bonaccorso ] + * Update Vcs-* headers for switch to salsa.debian.org + + [ gregor herrmann ] + * Import upstream version 0.0501. + * Update debian/upstream/metadata. + * Update years of packaging copyright. + * Declare compliance with Debian Policy 4.3.0. + * Bump debhelper compatibility level to 11. + + -- gregor herrmann Wed, 06 Feb 2019 20:29:16 +0100 + libouch-perl (0.0500-1) unstable; urgency=medium * Import upstream version 0.0500. diff -Nru libouch-perl-0.0500/debian/compat libouch-perl-0.0501/debian/compat --- libouch-perl-0.0500/debian/compat 2018-01-01 23:21:46.000000000 +0000 +++ libouch-perl-0.0501/debian/compat 2019-02-06 19:29:16.000000000 +0000 @@ -1 +1 @@ -10 +11 diff -Nru libouch-perl-0.0500/debian/control libouch-perl-0.0501/debian/control --- libouch-perl-0.0500/debian/control 2018-01-01 23:21:46.000000000 +0000 +++ libouch-perl-0.0501/debian/control 2019-02-06 19:29:16.000000000 +0000 @@ -4,12 +4,12 @@ Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 10) +Build-Depends: debhelper (>= 11) Build-Depends-Indep: libtest-trap-perl, perl -Standards-Version: 4.1.3 -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libouch-perl.git -Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libouch-perl.git +Standards-Version: 4.3.0 +Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libouch-perl +Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libouch-perl.git Homepage: https://metacpan.org/release/Ouch Package: libouch-perl diff -Nru libouch-perl-0.0500/debian/copyright libouch-perl-0.0501/debian/copyright --- libouch-perl-0.0500/debian/copyright 2018-01-01 23:21:46.000000000 +0000 +++ libouch-perl-0.0501/debian/copyright 2019-02-06 19:29:16.000000000 +0000 @@ -8,7 +8,7 @@ License: Artistic or GPL-1+ Files: debian/* -Copyright: 2011-2018, gregor herrmann +Copyright: 2011-2019, gregor herrmann License: Artistic or GPL-1+ License: Artistic diff -Nru libouch-perl-0.0500/debian/upstream/metadata libouch-perl-0.0501/debian/upstream/metadata --- libouch-perl-0.0500/debian/upstream/metadata 2018-01-01 23:21:46.000000000 +0000 +++ libouch-perl-0.0501/debian/upstream/metadata 2019-02-06 19:29:16.000000000 +0000 @@ -4,3 +4,4 @@ Contact: JT Smith Name: Ouch Repository: https://github.com/rizen/Ouch.git +Repository-Browse: https://github.com/rizen/Ouch diff -Nru libouch-perl-0.0500/dist.ini libouch-perl-0.0501/dist.ini --- libouch-perl-0.0500/dist.ini 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/dist.ini 2019-01-29 22:33:28.000000000 +0000 @@ -4,9 +4,10 @@ copyright_holder = Plain Black Corporation copyright_year = 2011 -version = 0.0500 +version = 0.0501 [@Classic] +[MetaJSON] [MetaResources] bugtracker.web = http://github.com/rizen/Ouch/issues diff -Nru libouch-perl-0.0500/lib/Ouch.pm libouch-perl-0.0501/lib/Ouch.pm --- libouch-perl-0.0500/lib/Ouch.pm 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/lib/Ouch.pm 2019-01-29 22:33:28.000000000 +0000 @@ -1,7 +1,7 @@ use strict; use warnings; package Ouch; -$Ouch::VERSION = '0.0500'; +$Ouch::VERSION = '0.0501'; use Carp qw(longmess shortmess); use parent 'Exporter'; use overload bool => sub {1}, q{""} => 'scalar', fallback => 1; @@ -166,7 +166,7 @@ =head1 VERSION -version 0.0500 +version 0.0501 =head1 SYNOPSIS diff -Nru libouch-perl-0.0500/LICENSE libouch-perl-0.0501/LICENSE --- libouch-perl-0.0500/LICENSE 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/LICENSE 2019-01-29 22:33:28.000000000 +0000 @@ -22,7 +22,7 @@ Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Suite 500, Boston, MA 02110-1335 USA + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff -Nru libouch-perl-0.0500/Makefile.PL libouch-perl-0.0501/Makefile.PL --- libouch-perl-0.0500/Makefile.PL 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/Makefile.PL 2019-01-29 22:33:28.000000000 +0000 @@ -1,4 +1,4 @@ -# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.044. +# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012. use strict; use warnings; @@ -22,7 +22,7 @@ "overload" => 0, "parent" => 0 }, - "VERSION" => "0.0500", + "VERSION" => "0.0501", "test" => { "TESTS" => "t/*.t" } diff -Nru libouch-perl-0.0500/MANIFEST libouch-perl-0.0501/MANIFEST --- libouch-perl-0.0500/MANIFEST 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/MANIFEST 2019-01-29 22:33:28.000000000 +0000 @@ -1,7 +1,8 @@ -# This file was automatically generated by Dist::Zilla::Plugin::Manifest v5.044. +# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.012. Changes LICENSE MANIFEST +META.json META.yml Makefile.PL README diff -Nru libouch-perl-0.0500/META.json libouch-perl-0.0501/META.json --- libouch-perl-0.0500/META.json 1970-01-01 00:00:00.000000000 +0000 +++ libouch-perl-0.0501/META.json 2019-01-29 22:33:28.000000000 +0000 @@ -0,0 +1,54 @@ +{ + "abstract" : "Exceptions that don't hurt.", + "author" : [ + "JT Smith " + ], + "dynamic_config" : 0, + "generated_by" : "Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : 2 + }, + "name" : "Ouch", + "prereqs" : { + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "develop" : { + "requires" : { + "Pod::Coverage::TrustPod" : "0", + "Test::Pod" : "1.41", + "Test::Pod::Coverage" : "1.08" + } + }, + "runtime" : { + "requires" : { + "Carp" : "0", + "Test::More" : "0", + "Test::Trap" : "0", + "overload" : "0", + "parent" : "0" + } + } + }, + "release_status" : "stable", + "resources" : { + "bugtracker" : { + "web" : "http://github.com/rizen/Ouch/issues" + }, + "repository" : { + "type" : "git", + "url" : "git://github.com/rizen/Ouch.git", + "web" : "http://github.com/rizen/Ouch" + } + }, + "version" : "0.0501", + "x_generated_by_perl" : "v5.26.2", + "x_serialization_backend" : "Cpanel::JSON::XS version 4.02" +} + diff -Nru libouch-perl-0.0500/META.yml libouch-perl-0.0501/META.yml --- libouch-perl-0.0500/META.yml 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/META.yml 2019-01-29 22:33:28.000000000 +0000 @@ -6,7 +6,7 @@ configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 -generated_by: 'Dist::Zilla version 5.044, CPAN::Meta::Converter version 2.142690' +generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -21,4 +21,6 @@ resources: bugtracker: http://github.com/rizen/Ouch/issues repository: git://github.com/rizen/Ouch.git -version: '0.0500' +version: '0.0501' +x_generated_by_perl: v5.26.2 +x_serialization_backend: 'YAML::Tiny version 1.73' diff -Nru libouch-perl-0.0500/README libouch-perl-0.0501/README --- libouch-perl-0.0500/README 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/README 2019-01-29 22:33:28.000000000 +0000 @@ -1,7 +1,5 @@ - - This archive contains the distribution Ouch, -version 0.0500: +version 0.0501: Exceptions that don't hurt. @@ -11,5 +9,4 @@ the same terms as the Perl 5 programming language system itself. -This README file was generated by Dist::Zilla::Plugin::Readme v5.044. - +This README file was generated by Dist::Zilla::Plugin::Readme v6.012. diff -Nru libouch-perl-0.0500/t/author-pod-coverage.t libouch-perl-0.0501/t/author-pod-coverage.t --- libouch-perl-0.0500/t/author-pod-coverage.t 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/t/author-pod-coverage.t 2019-01-29 22:33:28.000000000 +0000 @@ -2,8 +2,8 @@ BEGIN { unless ($ENV{AUTHOR_TESTING}) { - require Test::More; - Test::More::plan(skip_all => 'these tests are for testing by the author'); + print qq{1..0 # SKIP these tests are for testing by the author\n}; + exit } } diff -Nru libouch-perl-0.0500/t/author-pod-syntax.t libouch-perl-0.0501/t/author-pod-syntax.t --- libouch-perl-0.0500/t/author-pod-syntax.t 2017-06-21 20:49:38.000000000 +0000 +++ libouch-perl-0.0501/t/author-pod-syntax.t 2019-01-29 22:33:28.000000000 +0000 @@ -2,8 +2,8 @@ BEGIN { unless ($ENV{AUTHOR_TESTING}) { - require Test::More; - Test::More::plan(skip_all => 'these tests are for testing by the author'); + print qq{1..0 # SKIP these tests are for testing by the author\n}; + exit } }