perl-Test-LeakTrace/perl-Test-LeakTrace.spec

60 lines
1.4 KiB
RPMSpec

#
# spec file for package perl-Test-LeakTrace
#
# norootforbuild
Name: perl-Test-LeakTrace
%define real_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
Summary: Traces memory leaks
Url: http://search.cpan.org/perldoc?Test::LeakTrace
Group: Development/Libraries/Perl
License: Artistic License
Version: 0.10
Release: 1
Vendor: openSUSE-Education
Source: %{real_name}-%{version}.tar.bz2
BuildRequires: perl-macros
Requires: perl = %{perl_version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Test::LeakTrace provides several functions that trace memory leaks. This module
scans arenas, the memory allocation system, so it can detect any leaked SVs in
given blocks.
Leaked SVs are SVs which are not released after the end of the scope they have
been created. These SVs include global variables and internal caches. For
example, if you call a method in a tracing block, perl might prepare a cache
for the method. Thus, to trace true leaks, no_leaks_ok() and leaks_cmp_ok()
executes a block more than once.e
Author:
-------
Goro Fuji(gfx) <gfuji(at)cpan.org>.
%prep
%setup -q -n %{real_name}-%{version}
%build
perl Makefile.PL
make %{?jobs:-j%jobs}
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%clean
rm -rf %{buildroot}
%files -f %{name}.files
%defattr(0644, root, root, 0755)
%doc Changes README MANIFEST
%changelog