123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- Name: perl-Devel-Leak
- Version: 0.03
- Release: 3%{?_dist_release}
- Summary: Utility for looking for perl objects that are not reclaimed
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Devel-Leak/
- Source0: http://www.cpan.org/authors/id/N/NI/NI-S/Devel-Leak-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
- BuildRequires: libxcrypt-devel
- BuildRequires: perl(ExtUtils::MakeMaker)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: shaolin
- %description
- This module provides a basic way to discover if a piece of perl code
- is allocating perl data and not releasing them again.
- %prep
- %setup -q -n Devel-Leak-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
- make %{?_smp_mflags}
- %install
- rm -rf ${RPM_BUILD_ROOT}
- make pure_install PERL_INSTALL_ROOT=${RPM_BUILD_ROOT}
- find ${RPM_BUILD_ROOT} -type f -name .packlist -exec rm -f {} \;
- find ${RPM_BUILD_ROOT} -type f -name '*.bs' -size 0 -exec rm -f {} \;
- find ${RPM_BUILD_ROOT} -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} ${RPM_BUILD_ROOT}/*
- %check
- make test
- %clean
- rm -rf ${RPM_BUILD_ROOT}
- %files
- %defattr(-,root,root,-)
- %doc README
- %{perl_vendorarch}/auto/*
- %{perl_vendorarch}/Devel*
- %{_mandir}/man3/*
- %changelog
- * Fri May 17 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.03-3
- - rebuilt with perl-5.26.
- - added BR:libxcrypt-devel.
- * Mon Jun 30 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.03-2
- - rebuilt with perl-5.16.3.
- * Thu Feb 23 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.03-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.03-16
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.03-15
- - Perl mass rebuild
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.03-14
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.03-13
- - 661697 rebuild for fixing problems with vendorach/lib
- * Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.03-12
- - Mass rebuild with perl-5.12.0
- * Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.03-11
- - Mass rebuild with perl-5.12.0
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.03-10
- - rebuild against perl 5.10.1
- * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.03-9
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.03-8
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Mon Mar 3 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.03-7
- - rebuild for new perl (again)
- * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.03-6
- - Autorebuild for GCC 4.3
- * Fri Feb 8 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.03-5
- - rebuild for new perl
- * Tue Jan 15 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.03-4
- - fix license
- * Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 0.03-3
- - BR ExtUtils::MakeMaker instead of perl-devel.
- * Fri Mar 09 2007 Steven Pritchard <steve@kspei.com> 0.03-2
- - BR perl-devel.
- * Thu Feb 01 2007 Steven Pritchard <steve@kspei.com> 0.03-1
- - Specfile autogenerated by cpanspec 1.69.1.
- - Fix License and description.
|