debian/0000755000000000000000000000000011563243043007167 5ustar debian/control0000644000000000000000000000201111563215154010566 0ustar Source: libmemoize-memcached-perl Section: perl Priority: optional Build-Depends: debhelper (>= 7) Build-Depends-Indep: perl, libcache-memcached-perl, libtest-pod-perl Maintainer: Debian Perl Group Uploaders: Robin Sheat , Nicholas Bamber Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Memoize-Memcached/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmemoize-memcached-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmemoize-memcached-perl/ Package: libmemoize-memcached-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libcache-memcached-perl Description: implementation of Memoize using memcached for storage Memoize::Memcached is a Perl module that implements an interface similar to the Memoize module available in Perl core. It is designed to store results using one or more memcached servers. . For the theory of Memoization, please see the Memoize module documentation. debian/copyright0000644000000000000000000000214511563215154011126 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Maintainer: David Trischuk Source: http://search.cpan.org/dist/Memoize-Memcached/ Name: Memoize-Memcached Files: * Copyright: 2008-2009, David Trischuk License: Artistic or GPL-1+ Files: debian/* Copyright: 2010, Lars Wirzenius 2011, Nicholas Bamber License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/watch0000644000000000000000000000017711357371460010233 0ustar version=3 http://search.cpan.org/dist/Memoize-Memcached/ .*/Memoize-Memcached-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/patches/0000755000000000000000000000000011563243043010616 5ustar debian/patches/universal.patch0000644000000000000000000000202611563215154013651 0ustar Author: Nicholas Bamber Subject: UNIVERSAL::import deprecated in perl 5.12 Last-Update: 2011-05-13 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=614868 Bug: http://rt.cpan.org/Ticket/Display.html?id=68170 --- a/lib/Memoize/Memcached.pm +++ b/lib/Memoize/Memcached.pm @@ -3,7 +3,6 @@ use strict; use warnings; -use UNIVERSAL qw( isa ); use Carp qw( carp croak ); use Memoize qw( unmemoize ); use Cache::Memcached; @@ -49,7 +48,7 @@ my $memcached_args = delete $args{memcached} || {}; croak "Invalid memcached argument (expected a hash)" - unless isa($memcached_args, 'HASH'); + unless ref $memcached_args eq 'HASH'; _memcached_setup( %{$memcached_args}, @@ -138,7 +137,7 @@ next unless $arg eq 'memcached'; (undef, my $memcached_config) = splice @_, $idx, 2; croak "Invalid memcached config (expected a hash ref)" - unless isa($memcached_config, 'HASH'); + unless ref $memcached_config eq 'HASH'; %memcached_config = %{$memcached_config}; } debian/patches/series0000644000000000000000000000002011563215154012025 0ustar universal.patch debian/compat0000644000000000000000000000000211357371460010373 0ustar 7 debian/changelog0000644000000000000000000000114411563215154011043 0ustar libmemoize-memcached-perl (0.03-2) unstable; urgency=low [ Jonathan Yu ] * Rewrite control description [ Robin Sheat ] * Change of Uploader at request of Lars [ Nicholas Bamber ] * Added myself to Uploaders * Raised standards version to 3.9.2 * Refreshed copyright * Added patch to address UNIVERSAL::import deprecation (Closes: #614868) -- Nicholas Bamber Fri, 13 May 2011 09:58:50 +0100 libmemoize-memcached-perl (0.03-1) unstable; urgency=low * Initial Release. (Closes: #576761) -- Lars Wirzenius Tue, 13 Apr 2010 10:47:17 +1200 debian/source/0000755000000000000000000000000011563243043010467 5ustar debian/source/format0000644000000000000000000000001411357371460011703 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000003611357371460010254 0ustar #!/usr/bin/make -f %: dh $@