diff --git a/README.md b/README.md index 83208c5..8cec03c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ # perl-Test-Memory-Cycle +Perl's garbage collection has one big problem: Circular references +can't get cleaned up. A circular reference can be as simple as two +objects 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. + diff --git a/perl-Test-Memory-Cycle.spec b/perl-Test-Memory-Cycle.spec new file mode 100644 index 0000000..69db63f --- /dev/null +++ b/perl-Test-Memory-Cycle.spec @@ -0,0 +1,60 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Test-Memory-Cycle +Version: 1.04 +Release: 1mamba +Summary: Test::Memory::Cycle - Check for memory leaks and circular memory references +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: gil +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/Test-Memory-Cycle-%{version}.tar.gz +License: GPL, Artistic +BuildRequires: perl(CGI) +BuildRequires: perl(Devel::Cycle) +BuildRequires: perl(PadWalker) +BuildRequires: perl(Test::Builder::Tester) +BuildRequires: perl(Test::Simple) +BuildRequires: perl(Test::Pod) +BuildRequires: perl(Test::Pod::Coverage) +BuildRequires: perl-devel +Requires: perl >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Perl's garbage collection has one big problem: Circular references +can't get cleaned up. A circular reference can be as simple as two +objects 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. + +%prep +%setup -q -n Test-Memory-Cycle-%{version} + + +%build +perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor +%make +%make test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall_perl + +find %{buildroot} -type f -name .packlist -exec rm -f {} ';' +find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' +chmod -R u+w %{buildroot}/* + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{perl_vendorlib}/Test/ +%{_mandir}/man3/*.3pm.gz +%doc Changes README + +%changelog +* Fri Feb 18 2011 gil 1.04-1mamba +- package created by autospec