Initial import (#1252529)

epel9
Petr Šabata 10 years ago
parent 17e02ea5fe
commit d9c43cdef2

1
.gitignore vendored

@ -0,0 +1 @@
/Test-MemoryGrowth-0.02.tar.gz

@ -0,0 +1,58 @@
Name: perl-Test-MemoryGrowth
Version: 0.02
Release: 1%{?dist}
Summary: Assert that code does not cause growth in memory usage
License: GPL+ or Artistic
URL: http://search.cpan.org/dist/Test-MemoryGrowth/
Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/Test-MemoryGrowth-%{version}.tar.gz
BuildArch: noarch
# Build
BuildRequires: perl
BuildRequires: perl(Module::Build)
BuildRequires: perl(strict)
BuildRequires: perl(warnings)
# Runtime
BuildRequires: perl(base)
BuildRequires: perl(constant)
# Devel::MAT::Dumper is optional
# XXX: BuildRequires: perl(Devel::MAT::Dumper)
BuildRequires: perl(Test::Builder::Module)
# Tests only
BuildRequires: perl(Test::Builder::Tester)
BuildRequires: perl(Test::More)
Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
%description
This module provides a function to check that a given block of code does
not result in the process consuming extra memory once it has finished.
Despite the name of this module it does not, in the strictest sense of the
word, test for a memory leak: that term is specifically applied to cases
where memory has been allocated but all record of it has been lost, so it
cannot possibly be reclaimed. While the method employed by this module can
detect such bugs, it can also detect cases where memory is still referenced
and reachable, but the usage has grown more than would be expected or
necessary.
%prep
%setup -q -n Test-MemoryGrowth-%{version}
%build
perl Build.PL installdirs=vendor
./Build
%install
./Build install destdir=%{buildroot} create_packlist=0
%{_fixperms} %{buildroot}/*
%check
./Build test
%files
%license LICENSE
%doc Changes README
%{perl_vendorlib}/*
%{_mandir}/man3/*
%changelog
* Tue Aug 11 2015 Petr Šabata <contyk@redhat.com> 0.02-1
- Initial packaging

@ -0,0 +1 @@
2aee28d018508f9d22df5027568e2c98 Test-MemoryGrowth-0.02.tar.gz
Loading…
Cancel
Save