diff -Nru libcache-perl-2.10/Changes libcache-perl-2.11/Changes --- libcache-perl-2.10/Changes 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/Changes 2015-02-24 13:03:40.000000000 +0000 @@ -1,3 +1,9 @@ +2015-02-24 + - Make sure t/file_lru.t skips all tests if Time::HiRes isn't installed. + - See https://rt.cpan.org/Ticket/Display.html?id=102316 + - Thanks to Otto J. Makela for the report. + - Bugfix/maintenance release (2.11) + 2014-05-13 - Fix a small grammar in the docs (double "as") reported by pink_mist. - Thanks, pink_mist! diff -Nru libcache-perl-2.10/debian/changelog libcache-perl-2.11/debian/changelog --- libcache-perl-2.10/debian/changelog 2014-10-04 18:07:06.000000000 +0000 +++ libcache-perl-2.11/debian/changelog 2015-07-25 17:12:11.000000000 +0000 @@ -1,3 +1,20 @@ +libcache-perl (2.11-1) unstable; urgency=low + + * Team upload. + + [ Dominic Hargreaves ] + * Point to the team git repository + + [ Lucas Kanashiro ] + * Add debian/upstream/metadata + * Import upstream version 2.11 + * Set debhelper >= 9 + * Switch libmodule-build-perl to build dep + * Add autopkgtest + * Fix dependencies version with cme + + -- Lucas Kanashiro Sat, 25 Jul 2015 11:24:52 -0300 + libcache-perl (2.10-1) unstable; urgency=medium * Move package to be maintained by the Debian Perl Group diff -Nru libcache-perl-2.10/debian/compat libcache-perl-2.11/debian/compat --- libcache-perl-2.10/debian/compat 2014-02-02 16:07:37.000000000 +0000 +++ libcache-perl-2.11/debian/compat 2015-07-25 17:12:11.000000000 +0000 @@ -1 +1 @@ -8 +9 diff -Nru libcache-perl-2.10/debian/control libcache-perl-2.11/debian/control --- libcache-perl-2.10/debian/control 2014-10-04 18:05:56.000000000 +0000 +++ libcache-perl-2.11/debian/control 2015-07-25 17:12:11.000000000 +0000 @@ -1,28 +1,29 @@ Source: libcache-perl -Section: perl -Priority: optional -Build-Depends: debhelper (>= 8) -Build-Depends-Indep: perl (>= 5.8.0-7), - libfile-nfslock-perl (>= 1.2), - libio-string-perl (>= 1.02), - libheap-perl (>= 0.01), - libtimedate-perl (>= 1.14), - libmodule-build-perl Maintainer: Debian Perl Group Uploaders: Dominic Hargreaves +Section: perl +Testsuite: autopkgtest-pkg-perl +Priority: optional +Build-Depends: debhelper (>= 9), + libmodule-build-perl +Build-Depends-Indep: perl, + libfile-nfslock-perl, + libio-string-perl, + libheap-perl, + libtimedate-perl Standards-Version: 3.9.6 -Homepage: http://search.cpan.org/dist/Cache/ -Vcs-Git: git://anonscm.debian.org/users/dom/libcache-perl.git -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=users/dom/libcache-perl.git +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libcache-perl.git +Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcache-perl.git +Homepage: https://metacpan.org/release/Cache Package: libcache-perl Architecture: all Depends: ${perl:Depends}, - ${misc:Depends}, - libfile-nfslock-perl (>= 1.2), - libio-string-perl (>= 1.02), - libheap-perl (>= 0.01), - libtimedate-perl (>= 1.14) + ${misc:Depends}, + libfile-nfslock-perl, + libio-string-perl, + libheap-perl, + libtimedate-perl Description: Cache interface Cache is designed to assist a developer in persisting data for a specified period of time. Often these modules are used in web applications to diff -Nru libcache-perl-2.10/debian/upstream/metadata libcache-perl-2.11/debian/upstream/metadata --- libcache-perl-2.10/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ libcache-perl-2.11/debian/upstream/metadata 2015-07-25 17:12:11.000000000 +0000 @@ -0,0 +1,5 @@ +--- +Archive: CPAN +Contact: Chris Leishman +Name: Cache +Repository: http://bitbucket.org/shlomif/web-cpan diff -Nru libcache-perl-2.10/debian/watch libcache-perl-2.11/debian/watch --- libcache-perl-2.10/debian/watch 2014-10-04 17:31:53.000000000 +0000 +++ libcache-perl-2.11/debian/watch 2015-07-25 17:12:11.000000000 +0000 @@ -1,3 +1,2 @@ version=3 -# URL to the package page followed by a regex to search https://metacpan.org/release/Cache/ .*/Cache-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ diff -Nru libcache-perl-2.10/lib/Cache/Entry.pm libcache-perl-2.11/lib/Cache/Entry.pm --- libcache-perl-2.10/lib/Cache/Entry.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/Entry.pm 2015-02-24 13:03:40.000000000 +0000 @@ -39,7 +39,7 @@ use fields qw(cache key); -our $VERSION = '2.10'; +our $VERSION = '2.11'; sub new { diff -Nru libcache-perl-2.10/lib/Cache/File/Entry.pm libcache-perl-2.11/lib/Cache/File/Entry.pm --- libcache-perl-2.10/lib/Cache/File/Entry.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/File/Entry.pm 2015-02-24 13:03:40.000000000 +0000 @@ -30,7 +30,7 @@ use base qw(Cache::Entry); use fields qw(dir path lockdetails); -our $VERSION = '2.10'; +our $VERSION = '2.11'; # hash of locks held my the process, keyed on path. This is useful for # catching potential deadlocks and warning the user, and for implementing diff -Nru libcache-perl-2.10/lib/Cache/File/Heap.pm libcache-perl-2.11/lib/Cache/File/Heap.pm --- libcache-perl-2.10/lib/Cache/File/Heap.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/File/Heap.pm 2015-02-24 13:03:40.000000000 +0000 @@ -31,7 +31,7 @@ use fields qw(db dbhash); -our $VERSION = '2.10'; +our $VERSION = '2.11'; # common info object my $BTREEINFO = new DB_File::BTREEINFO; diff -Nru libcache-perl-2.10/lib/Cache/File.pm libcache-perl-2.11/lib/Cache/File.pm --- libcache-perl-2.10/lib/Cache/File.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/File.pm 2015-02-24 13:03:40.000000000 +0000 @@ -41,7 +41,7 @@ expheap ageheap useheap index lockfile lock lockcount openexp openage openuse openidx); -our $VERSION = '2.10'; +our $VERSION = '2.11'; sub LOCK_NONE () { 0 } sub LOCK_LOCAL () { 1 } diff -Nru libcache-perl-2.10/lib/Cache/Memory/Entry.pm libcache-perl-2.11/lib/Cache/Memory/Entry.pm --- libcache-perl-2.10/lib/Cache/Memory/Entry.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/Memory/Entry.pm 2015-02-24 13:03:40.000000000 +0000 @@ -25,7 +25,7 @@ use base qw(Cache::Entry); use fields qw(store_entry); -our $VERSION = '2.10'; +our $VERSION = '2.11'; sub new { diff -Nru libcache-perl-2.10/lib/Cache/Memory.pm libcache-perl-2.11/lib/Cache/Memory.pm --- libcache-perl-2.10/lib/Cache/Memory.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/Memory.pm 2015-02-24 13:03:40.000000000 +0000 @@ -34,7 +34,7 @@ use base qw(Cache); use fields qw(namespace); -our $VERSION = '2.10'; +our $VERSION = '2.11'; # storage for all data diff -Nru libcache-perl-2.10/lib/Cache/Null/Entry.pm libcache-perl-2.11/lib/Cache/Null/Entry.pm --- libcache-perl-2.10/lib/Cache/Null/Entry.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/Null/Entry.pm 2015-02-24 13:03:40.000000000 +0000 @@ -23,7 +23,7 @@ use base qw(Cache::Entry); use fields qw(); -our $VERSION = '2.10'; +our $VERSION = '2.11'; sub new { diff -Nru libcache-perl-2.10/lib/Cache/Null.pm libcache-perl-2.11/lib/Cache/Null.pm --- libcache-perl-2.10/lib/Cache/Null.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/Null.pm 2015-02-24 13:03:40.000000000 +0000 @@ -28,7 +28,7 @@ use base qw(Cache); use fields qw(cache_root); -our $VERSION = '2.10'; +our $VERSION = '2.11'; =head1 CONSTRUCTOR diff -Nru libcache-perl-2.10/lib/Cache/RemovalStrategy.pm libcache-perl-2.11/lib/Cache/RemovalStrategy.pm --- libcache-perl-2.10/lib/Cache/RemovalStrategy.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/RemovalStrategy.pm 2015-02-24 13:03:40.000000000 +0000 @@ -16,7 +16,7 @@ use warnings; use Carp; -our $VERSION = '2.10'; +our $VERSION = '2.11'; sub new { diff -Nru libcache-perl-2.10/lib/Cache/Tester.pm libcache-perl-2.11/lib/Cache/Tester.pm --- libcache-perl-2.10/lib/Cache/Tester.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache/Tester.pm 2015-02-24 13:03:40.000000000 +0000 @@ -32,7 +32,7 @@ use Carp; @ISA = qw(Exporter Test::More); -$VERSION = '2.10'; +$VERSION = '2.11'; @EXPORT = (qw(run_cache_tests $CACHE_TESTS), @Test::More::EXPORT); $CACHE_TESTS = 79; diff -Nru libcache-perl-2.10/lib/Cache.pm libcache-perl-2.11/lib/Cache.pm --- libcache-perl-2.10/lib/Cache.pm 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/lib/Cache.pm 2015-02-24 13:03:40.000000000 +0000 @@ -58,7 +58,7 @@ default_expires removal_strategy size_limit load_callback validate_callback); -our $VERSION = '2.10'; +our $VERSION = '2.11'; our $EXPIRES_NOW = 'now'; our $EXPIRES_NEVER = 'never'; diff -Nru libcache-perl-2.10/META.json libcache-perl-2.11/META.json --- libcache-perl-2.10/META.json 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/META.json 2015-02-24 13:03:40.000000000 +0000 @@ -4,7 +4,7 @@ "Chris Leishman " ], "dynamic_config" : 1, - "generated_by" : "Module::Build version 0.4205", + "generated_by" : "Module::Build version 0.421", "keywords" : [ "cache", "caching", @@ -55,52 +55,52 @@ "provides" : { "Cache" : { "file" : "lib/Cache.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::Entry" : { "file" : "lib/Cache/Entry.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::File" : { "file" : "lib/Cache/File.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::File::Entry" : { "file" : "lib/Cache/File/Entry.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::File::Handle" : { "file" : "lib/Cache/File/Handle.pm" }, "Cache::File::Heap" : { "file" : "lib/Cache/File/Heap.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::IOString" : { "file" : "lib/Cache/IOString.pm" }, "Cache::Memory" : { "file" : "lib/Cache/Memory.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::Memory::Entry" : { "file" : "lib/Cache/Memory/Entry.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::Memory::HeapElem" : { "file" : "lib/Cache/Memory/HeapElem.pm" }, "Cache::Null" : { "file" : "lib/Cache/Null.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::Null::Entry" : { "file" : "lib/Cache/Null/Entry.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::RemovalStrategy" : { "file" : "lib/Cache/RemovalStrategy.pm", - "version" : "2.10" + "version" : "2.11" }, "Cache::RemovalStrategy::FIFO" : { "file" : "lib/Cache/RemovalStrategy/FIFO.pm" @@ -110,7 +110,7 @@ }, "Cache::Tester" : { "file" : "lib/Cache/Tester.pm", - "version" : "2.10" + "version" : "2.11" } }, "release_status" : "stable", @@ -122,5 +122,5 @@ "url" : "http://bitbucket.org/shlomif/web-cpan" } }, - "version" : "2.10" + "version" : "2.11" } diff -Nru libcache-perl-2.10/META.yml libcache-perl-2.11/META.yml --- libcache-perl-2.10/META.yml 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/META.yml 2015-02-24 13:03:40.000000000 +0000 @@ -6,7 +6,7 @@ configure_requires: Module::Build: '0' dynamic_config: 1 -generated_by: 'Module::Build version 0.4205, CPAN::Meta::Converter version 2.141170' +generated_by: 'Module::Build version 0.421, CPAN::Meta::Converter version 2.142060' keywords: - cache - caching @@ -26,47 +26,47 @@ provides: Cache: file: lib/Cache.pm - version: '2.10' + version: '2.11' Cache::Entry: file: lib/Cache/Entry.pm - version: '2.10' + version: '2.11' Cache::File: file: lib/Cache/File.pm - version: '2.10' + version: '2.11' Cache::File::Entry: file: lib/Cache/File/Entry.pm - version: '2.10' + version: '2.11' Cache::File::Handle: file: lib/Cache/File/Handle.pm Cache::File::Heap: file: lib/Cache/File/Heap.pm - version: '2.10' + version: '2.11' Cache::IOString: file: lib/Cache/IOString.pm Cache::Memory: file: lib/Cache/Memory.pm - version: '2.10' + version: '2.11' Cache::Memory::Entry: file: lib/Cache/Memory/Entry.pm - version: '2.10' + version: '2.11' Cache::Memory::HeapElem: file: lib/Cache/Memory/HeapElem.pm Cache::Null: file: lib/Cache/Null.pm - version: '2.10' + version: '2.11' Cache::Null::Entry: file: lib/Cache/Null/Entry.pm - version: '2.10' + version: '2.11' Cache::RemovalStrategy: file: lib/Cache/RemovalStrategy.pm - version: '2.10' + version: '2.11' Cache::RemovalStrategy::FIFO: file: lib/Cache/RemovalStrategy/FIFO.pm Cache::RemovalStrategy::LRU: file: lib/Cache/RemovalStrategy/LRU.pm Cache::Tester: file: lib/Cache/Tester.pm - version: '2.10' + version: '2.11' requires: DB_File: '1.72' Date::Parse: '2.24' @@ -87,4 +87,4 @@ resources: license: http://dev.perl.org/licenses/ repository: http://bitbucket.org/shlomif/web-cpan -version: '2.10' +version: '2.11' diff -Nru libcache-perl-2.10/t/file_lru.t libcache-perl-2.11/t/file_lru.t --- libcache-perl-2.10/t/file_lru.t 2014-05-13 11:25:30.000000000 +0000 +++ libcache-perl-2.11/t/file_lru.t 2015-02-24 13:03:40.000000000 +0000 @@ -2,7 +2,6 @@ use warnings; use Test::More; use File::Temp qw(tempdir); -use Time::HiRes; use Carp; $SIG{__DIE__} = sub { confess @_; };