# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif Name: perl-Devel-Leak Version: 0.03 Release: 56.%{__distinit}%{__distvers} Summary: Utility for looking for perl objects that are not reclaimed License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-Leak Source0: https://cpan.metacpan.org/modules/by-module/Devel/Devel-Leak-%{version}.tar.gz # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: gcc BuildRequires: make BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Config) BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(base) BuildRequires: perl(DynaLoader) BuildRequires: perl(vars) # Test Suite BuildRequires: perl(Test) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %{?perl_default_filter} %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="%{optflags}" make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete find %{buildroot} -type f -name '*.bs' -empty -delete %{_fixperms} -c %{buildroot} %check make test %files %doc README %{perl_vendorarch}/auto/Devel/ %{perl_vendorarch}/Devel/ %{_mandir}/man3/Devel::Leak.3* %changelog * Wed Jun 12 2024 Paul Howarth - 0.03-56 - Perl 5.40 rebuild * Tue Jul 11 2023 Paul Howarth - 0.03-52 - Perl 5.38 rebuild * Tue Apr 4 2023 Paul Howarth - 0.03-51 - Use SPDX-format license tag * Tue May 31 2022 Paul Howarth - 0.03-49 - Perl 5.36 rebuild * Fri May 21 2021 Paul Howarth - 0.03-46 - Perl 5.34 rebuild * Wed Jun 24 2020 Paul Howarth - 0.03-43 - Perl 5.32 rebuild * Thu May 30 2019 Paul Howarth - 0.03-40 - Perl 5.30 rebuild * Wed Jun 27 2018 Paul Howarth - 0.03-37 - Perl 5.28 rebuild * Mon Aug 7 2017 Paul Howarth - 0.03-35 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Sun Jun 11 2017 Paul Howarth - 0.03-33 - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section - BR: perl-devel unconditionally * Thu Aug 18 2016 Paul Howarth - 0.03-31 - Classify buildreqs by usage - Simplify find commands using -empty and -delete * Thu Aug 28 2014 Paul Howarth - 0.03-26 - Drop %%defattr, redundant since rpm 4.4 * Tue Jul 16 2013 Paul Howarth - 0.03-22 - Rebuild for perl 5.18.0 in Rawhide * Fri Jun 8 2012 Paul Howarth - 0.03-18 - BR: perl(base) - Don't need to remove empty directories from buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorarch} - Use DESTDIR rather than PERL_INSTALL_ROOT - Use %%{_fixperms} macro rather than our own chmod incantation * Fri Jun 24 2011 Paul Howarth - 0.03-14 - Rebuild for perl 5.14.1 in Rawhide - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Wed Jun 23 2010 Paul Howarth - 0.03-13 - Rebuild for perl 5.12.1 in Rawhide * Wed May 12 2010 Paul Howarth - 0.03-12 - Fix dist tag for RHEL-6 Beta * Tue Dec 22 2009 Paul Howarth - 0.03-11 - Import from Fedora * Mon Dec 7 2009 Stepan Kasal - 0.03-10 - Rebuild against perl 5.10.1 * Sat Jul 25 2009 Fedora Release Engineering - 0.03-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Feb 26 2009 Fedora Release Engineering - 0.03-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Mon Mar 3 2008 Tom "spot" Callaway - 0.03-7 - Rebuild for new perl (again) * Tue Feb 19 2008 Fedora Release Engineering - 0.03-6 - Autorebuild for GCC 4.3 * Fri Feb 8 2008 Tom "spot" Callaway - 0.03-5 - Rebuild for new perl * Tue Jan 15 2008 Tom "spot" Callaway - 0.03-4 - Fix license * Wed Apr 18 2007 Steven Pritchard - 0.03-3 - BR ExtUtils::MakeMaker instead of perl-devel * Fri Mar 09 2007 Steven Pritchard - 0.03-2 - BR perl-devel * Thu Feb 01 2007 Steven Pritchard - 0.03-1 - Specfile autogenerated by cpanspec 1.69.1 - Fix License and description