debian/0000755000000000000000000000000012217554411007170 5ustar debian/watch0000644000000000000000000000016012217554411010216 0ustar version=3 https://metacpan.org/release/App-Cache/ .*/App-Cache-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/changelog0000644000000000000000000000436712217554411011054 0ustar libapp-cache-perl (0.37-2) unstable; urgency=low * d/copyright: changed to Copyright Format 1.0 * d/control: - bumped standards/compat version - Added Homepage field * changed from Cpan to MetaCpan URLs * d/rules changed to dh -- Jonas Genannt Sun, 22 Sep 2013 13:32:56 +0200 libapp-cache-perl (0.37-1) unstable; urgency=low * new upstream version (Closes: #581696) * added libtest-pod-perl as build depends * added ${misc:Depends} to package depends * changed to source format 3.0 * bumped dpkg compat version * bumped standards version - dh_clean -k to dh_prep * moved patch from #465642 into single file * modified patch #465642 for new upstream version * debian/rules: added build-arch build-indep -- Jonas Genannt Fri, 17 Jun 2011 10:08:38 +0200 libapp-cache-perl (0.35-1.1) unstable; urgency=low * Non-maintainer upload. * Change $HOME to a writable location during build as tests need it. Fixes FTBFS in buildd setup (Closes: #579294). -- Salvatore Bonaccorso Thu, 07 Apr 2011 07:41:56 +0200 libapp-cache-perl (0.35-1) unstable; urgency=low * New Upstream Release * new standards version -- Jonas Genannt Wed, 24 Sept 2008 19:32:23 +0200 libapp-cache-perl (0.33-1.1) unstable; urgency=low * Non Maintainer Upload * Disable the $cache->url tests as there's no guarantee of network; these should probably eventually be replaced by tests using a server on some high port (closes: #465642) -- Don Armstrong Sat, 08 Mar 2008 03:33:44 -0800 libapp-cache-perl (0.33-1) unstable; urgency=low * New Upstream Release * new standards version * bumped to new debhelper version 6 -- Jonas Genannt Tue, 5 Feb 2008 22:03:34 +0200 libapp-cache-perl (0.31-2) unstable; urgency=low * removed make test from buildprocess (Closes: #359879) (It will connect to google for one test and require netbase) -- Jonas Genannt Wed, 29 Mar 2006 17:23:58 +0000 libapp-cache-perl (0.31-1) unstable; urgency=low * Initial Release. (Closes: #348122) -- Jonas Genannt Wed, 1 Feb 2006 01:32:36 +0100 debian/rules0000755000000000000000000000030412217554411010245 0ustar #!/usr/bin/make -f BUILDHOME = $(CURDIR)/debian/build %: dh $@ override_dh_auto_test: mkdir -p $(BUILDHOME) HOME=$(BUILDHOME) $(MAKE) test override_dh_clean: rm -rf $(BUILDHOME) dh_clean debian/compat0000644000000000000000000000000212217554411010366 0ustar 9 debian/copyright0000644000000000000000000000202512217554411011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Contact: Leon Brocard Source: https://metacpan.org/release/App-Cache/ Upstream-Name: App-Cache Files: * Copyright: 2005-2007 Leon Brocard License: Artistic or GPL-1 Files: debian/* Copyright: 2006-2013 Jonas Genannt License: 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/source/0000755000000000000000000000000012217554411010470 5ustar debian/source/format0000644000000000000000000000001412217554411011676 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012217554411010617 5ustar debian/patches/series0000644000000000000000000000003312217554411012030 0ustar disable_network_test.patch debian/patches/disable_network_test.patch0000644000000000000000000000132512217554411016054 0ustar Autor: Don Armstrong Description: disable network test (Closes: #465642) diff --git a/t/simple.t b/t/simple.t index 39f15c6..eae3c89 100644 --- a/t/simple.t +++ b/t/simple.t @@ -1,7 +1,7 @@ #!perl use strict; use lib qw(lib t/lib); -use Test::More tests => 48; +use Test::More tests => 45; use File::Spec::Functions qw(rel2abs); use_ok('App::Cache'); use_ok('App::Cache::Test'); @@ -12,7 +12,8 @@ $cache->file; $cache->dir; $cache->scratch; $cache->url( 'file:/' . rel2abs( $INC{'App/Cache/Test.pm'} ) ); -$cache->url('http://www.astray.com/'); +# We can't run this test because there's no guarantee of network. +#$cache->url('http://www.astray.com/'); $cache->disabled; $cache->cleanup; debian/control0000644000000000000000000000217012217554411010573 0ustar Source: libapp-cache-perl Section: perl Priority: optional Build-Depends: debhelper (>= 9.20120312) Build-Depends-Indep: libclass-accessor-chained-perl, libfile-find-rule-perl, libfile-homedir-perl, libmodule-build-perl, libpath-class-perl, libtest-pod-coverage-perl, libtest-pod-perl, libwww-perl, perl Maintainer: Jonas Genannt Standards-Version: 3.9.4 Homepage: https://metacpan.org/release/App-Cache/ Package: libapp-cache-perl Architecture: all Depends: libclass-accessor-chained-perl, libfile-find-rule-perl, libfile-homedir-perl, libpath-class-perl, libwww-perl, ${misc:Depends}, ${perl:Depends} Description: Easy application-level caching library for perl The App::Cache module lets an application cache data locally. There are a few times an application would need to cache data: when it is retrieving information from the network or when it has to complete a large calculation.