diff -Nru libsafe-isa-perl-1.000002/Changes libsafe-isa-perl-1.000004/Changes --- libsafe-isa-perl-1.000002/Changes 2012-07-19 19:00:20.000000000 +0000 +++ libsafe-isa-perl-1.000004/Changes 2013-09-19 04:30:46.000000000 +0000 @@ -1,9 +1,17 @@ -1.000002 - 2012-07-19 +Revision history for Safe-Isa + +1.000004 2013-09-18 + - fixed slightly mangled metadata from last release + +1.000003 2013-03-25 + - fix NAME in Makefile.PL (RT#84212) + +1.000002 2012-07-19 - Document why we don't try and handle class namesZ - Missed another stupid doc typo (thanks MJD) -1.000001 - 2012-07-18 +1.000001 2012-07-18 - Fix stupid doc typo (thanks miyagawa) -1.000000 - 2012-07-18 +1.000000 2012-07-18 - Initial release diff -Nru libsafe-isa-perl-1.000002/META.json libsafe-isa-perl-1.000004/META.json --- libsafe-isa-perl-1.000002/META.json 2012-07-19 19:00:45.000000000 +0000 +++ libsafe-isa-perl-1.000004/META.json 2013-09-19 04:31:50.000000000 +0000 @@ -3,8 +3,8 @@ "author" : [ "mst - Matt S. Trout (cpan:MSTROUT) " ], - "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.120921", + "dynamic_config" : 0, + "generated_by" : "ExtUtils::MakeMaker version 6.76, CPAN::Meta::Converter version 2.132510", "license" : [ "perl_5" ], @@ -25,15 +25,24 @@ "ExtUtils::MakeMaker" : "0" } }, - "configure" : { + "runtime" : { "requires" : { - "ExtUtils::MakeMaker" : "0" + "Exporter" : "5.57", + "Scalar::Util" : "0" } - }, - "runtime" : { - "requires" : {} } }, "release_status" : "stable", - "version" : "1.000002" + "resources" : { + "bugtracker" : { + "mailto" : "bug-Safe-Isa@rt.cpan.org", + "web" : "https://rt.cpan.org/Public/Dist/Display.html?Name=Safe-Isa" + }, + "repository" : { + "type" : "git", + "url" : "git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git", + "web" : "http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git" + } + }, + "version" : "1.000004" } diff -Nru libsafe-isa-perl-1.000002/META.yml libsafe-isa-perl-1.000004/META.yml --- libsafe-isa-perl-1.000002/META.yml 2012-07-19 19:00:45.000000000 +0000 +++ libsafe-isa-perl-1.000004/META.yml 2013-09-19 04:31:50.000000000 +0000 @@ -4,10 +4,8 @@ - 'mst - Matt S. Trout (cpan:MSTROUT) ' build_requires: ExtUtils::MakeMaker: 0 -configure_requires: - ExtUtils::MakeMaker: 0 -dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.120921' +dynamic_config: 0 +generated_by: 'ExtUtils::MakeMaker version 6.76, CPAN::Meta::Converter version 2.132510' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -17,5 +15,10 @@ directory: - t - inc -requires: {} -version: 1.000002 +requires: + Exporter: 5.57 + Scalar::Util: 0 +resources: + bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Safe-Isa + repository: git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git +version: 1.000004 diff -Nru libsafe-isa-perl-1.000002/Makefile.PL libsafe-isa-perl-1.000004/Makefile.PL --- libsafe-isa-perl-1.000002/Makefile.PL 2012-07-18 14:59:28.000000000 +0000 +++ libsafe-isa-perl-1.000004/Makefile.PL 2013-09-19 04:30:41.000000000 +0000 @@ -5,6 +5,31 @@ (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( - NAME => 'Safe-Isa', + NAME => 'Safe::Isa', VERSION_FROM => 'lib/Safe/Isa.pm', + + PREREQ_PM => { + 'Exporter' => '5.57', + 'Scalar::Util' => 0, + }, + + -f 'META.yml' ? () : ( + META_MERGE => { + 'meta-spec' => { version => 2 }, + dynamic_config => 0, + + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:Safe-Isa.git + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git', + type => 'git', + }, + bugtracker => { + mailto => 'bug-Safe-Isa@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Safe-Isa', + }, + }, + }, + ), ); diff -Nru libsafe-isa-perl-1.000002/README libsafe-isa-perl-1.000004/README --- libsafe-isa-perl-1.000002/README 2012-07-19 19:00:46.000000000 +0000 +++ libsafe-isa-perl-1.000004/README 2013-09-19 04:31:51.000000000 +0000 @@ -82,7 +82,7 @@ Note that we don't handle trying class names, because many things are valid class names that you might not want to treat as one (like say "Matt") - the "is_module_name" function from Module::Runtime is a good - way to check for somthing you might be able to call methods on if you + way to check for something you might be able to call methods on if you want to do that. EXPORTS diff -Nru libsafe-isa-perl-1.000002/debian/changelog libsafe-isa-perl-1.000004/debian/changelog --- libsafe-isa-perl-1.000002/debian/changelog 2012-08-01 18:07:26.000000000 +0000 +++ libsafe-isa-perl-1.000004/debian/changelog 2013-10-11 21:19:55.000000000 +0000 @@ -1,3 +1,17 @@ +libsafe-isa-perl (1.000004-1) unstable; urgency=low + + * Team upload. + + [ Salvatore Bonaccorso ] + * Change Vcs-Git to canonical URI (git://anonscm.debian.org) + * Change search.cpan.org based URIs to metacpan.org based URIs + + [ gregor herrmann ] + * New upstream release. + * Declare compliance with Debian Policy 3.9.4. + + -- gregor herrmann Fri, 11 Oct 2013 23:19:47 +0200 + libsafe-isa-perl (1.000002-1) unstable; urgency=low * Initial Release. (Closes: #683434) diff -Nru libsafe-isa-perl-1.000002/debian/control libsafe-isa-perl-1.000004/debian/control --- libsafe-isa-perl-1.000002/debian/control 2012-08-01 18:07:26.000000000 +0000 +++ libsafe-isa-perl-1.000004/debian/control 2013-10-11 21:19:55.000000000 +0000 @@ -5,10 +5,10 @@ Uploaders: Nuno Carvalho Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl -Standards-Version: 3.9.3 +Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libsafe-isa-perl.git -Vcs-Git: git://git.debian.org/pkg-perl/packages/libsafe-isa-perl.git -Homepage: http://search.cpan.org/dist/Safe-Isa/ +Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libsafe-isa-perl.git +Homepage: https://metacpan.org/release/Safe-Isa/ Package: libsafe-isa-perl Architecture: all diff -Nru libsafe-isa-perl-1.000002/debian/copyright libsafe-isa-perl-1.000004/debian/copyright --- libsafe-isa-perl-1.000002/debian/copyright 2012-08-01 18:07:26.000000000 +0000 +++ libsafe-isa-perl-1.000004/debian/copyright 2013-10-11 21:19:55.000000000 +0000 @@ -1,7 +1,7 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Safe-Isa Upstream-Contact: Matt S. Trout -Source: http://search.cpan.org/dist/Safe-Isa/ +Source: https://metacpan.org/release/Safe-Isa/ Files: * diff -Nru libsafe-isa-perl-1.000002/debian/watch libsafe-isa-perl-1.000004/debian/watch --- libsafe-isa-perl-1.000002/debian/watch 2012-08-01 18:07:26.000000000 +0000 +++ libsafe-isa-perl-1.000004/debian/watch 2013-10-11 21:19:55.000000000 +0000 @@ -1,2 +1,2 @@ version=3 -http://search.cpan.org/dist/Safe-Isa/ .*/Safe-Isa-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ +https://metacpan.org/release/Safe-Isa/ .*/Safe-Isa-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ diff -Nru libsafe-isa-perl-1.000002/lib/Safe/Isa.pm libsafe-isa-perl-1.000004/lib/Safe/Isa.pm --- libsafe-isa-perl-1.000002/lib/Safe/Isa.pm 2012-07-19 19:00:02.000000000 +0000 +++ libsafe-isa-perl-1.000004/lib/Safe/Isa.pm 2013-09-19 04:30:41.000000000 +0000 @@ -3,9 +3,9 @@ use strict; use warnings FATAL => 'all'; use Scalar::Util qw(blessed); -use base qw(Exporter); +use Exporter 5.57 qw(import); -our $VERSION = '1.000002'; +our $VERSION = '1.000004'; our @EXPORT = qw($_call_if_object $_isa $_can $_does $_DOES); @@ -106,7 +106,7 @@ Note that we don't handle trying class names, because many things are valid class names that you might not want to treat as one (like say "Matt") - the C function from L is a good way to check for -somthing you might be able to call methods on if you want to do that. +something you might be able to call methods on if you want to do that. =head1 EXPORTS diff -Nru libsafe-isa-perl-1.000002/maint/Makefile.PL.include libsafe-isa-perl-1.000004/maint/Makefile.PL.include --- libsafe-isa-perl-1.000002/maint/Makefile.PL.include 2012-07-18 14:59:41.000000000 +0000 +++ libsafe-isa-perl-1.000004/maint/Makefile.PL.include 2013-09-19 04:30:41.000000000 +0000 @@ -2,6 +2,7 @@ use lib 'Distar/lib'; use Distar; +use ExtUtils::MakeMaker 6.68; # ensure meta-spec v2 compatibility author 'mst - Matt S. Trout (cpan:MSTROUT) '; 1; diff -Nru libsafe-isa-perl-1.000002/t/safe_isa.t libsafe-isa-perl-1.000004/t/safe_isa.t --- libsafe-isa-perl-1.000002/t/safe_isa.t 2012-07-18 15:42:27.000000000 +0000 +++ libsafe-isa-perl-1.000004/t/safe_isa.t 2013-09-18 16:29:45.000000000 +0000 @@ -1,6 +1,6 @@ use strict; use warnings FATAL => 'all'; -use Test::More qw(no_plan); +use Test::More tests => 15; { package Foo; sub new { bless({}, $_[0]) } } { package Bar; our @ISA = qw(Foo); sub bar { 1 } }