--- libtest-memory-cycle-perl-1.04.orig/debian/control +++ libtest-memory-cycle-perl-1.04/debian/control @@ -0,0 +1,29 @@ +Source: libtest-memory-cycle-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0-12), libpadwalker-perl, + libdevel-cycle-perl (>= 1.07), + libtest-pod-perl, libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Ryan Niebur +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Test-Memory-Cycle/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-memory-cycle-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-memory-cycle-perl/ + +Package: libtest-memory-cycle-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libpadwalker-perl, + libdevel-cycle-perl (>= 1.07) +Description: Perl module that verifies code hasn't left circular references + Test::Memory::Cycle checks for memory leaks and circular memory + references. It's a thin Test::More-compatible wrapper around Lincoln + Stein's Devel::Cycle module. + . + Perl's garbage collection has one big problem: Circular references + can't get cleaned up. A circular reference can be as simple as two + reference that refer to each other. Test::Memory::Cycle is built on + top of Devel::Cycle to give you an easy way to check for these + circular references. You can also use memory_cycle_exists() to make + sure that you have a cycle where you expect to have one. --- libtest-memory-cycle-perl-1.04.orig/debian/copyright +++ libtest-memory-cycle-perl-1.04/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Andy Lester, +Upstream-Source: http://search.cpan.org/dist/Test-Memory-Cycle/ +Upstream-Name: Test-Memory-Cycle + +Files: * +Copyright: 2006, Andy Lester +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Ryan Niebur +License: Artistic | 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 GNU/Linux 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 GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libtest-memory-cycle-perl-1.04.orig/debian/watch +++ libtest-memory-cycle-perl-1.04/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Test-Memory-Cycle/ .*/Test-Memory-Cycle-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-memory-cycle-perl-1.04.orig/debian/compat +++ libtest-memory-cycle-perl-1.04/debian/compat @@ -0,0 +1 @@ +7 --- libtest-memory-cycle-perl-1.04.orig/debian/changelog +++ libtest-memory-cycle-perl-1.04/debian/changelog @@ -0,0 +1,5 @@ +libtest-memory-cycle-perl (1.04-1) unstable; urgency=low + + * Initial Release. (Closes: #368006) + + -- Ryan Niebur Tue, 10 Feb 2009 20:57:32 -0800 --- libtest-memory-cycle-perl-1.04.orig/debian/rules +++ libtest-memory-cycle-perl-1.04/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build