# 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-Perl6-Caller Version: 0.100 Release: 28.%{__distinit}%{__distvers} Summary: OO caller() interface License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl6-Caller Source0: https://cpan.metacpan.org/modules/by-module/Perl6/Perl6-Caller-%{version}.tar.gz BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Module::Build) # Module BuildRequires: perl(overload) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(lib) BuildRequires: perl(Test::More) # Extra Tests BuildRequires: perl(Test::Pod) >= 1.14 BuildRequires: perl(Test::Pod::Coverage) >= 1.04 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description By default, this module exports the caller function. This automatically returns a new caller object. An optional argument specifies how many stack frames back to skip, just like the CORE::caller function. This lets you do things like this: print "In ", caller->subroutine, " called from ", caller->filename, " line ", caller->line; If you do not wish the caller function imported, specify an empty import list and instantiate a new Perl6::Caller object. use Perl6::Caller (); my $caller = Perl6::Caller->new; print $caller->line; Note: if the results from the module seem strange, please read perldoc -s caller carefully. It has stranger behavior than you might be aware. %prep %setup -q -n Perl6-Caller-%{version} %build perl Build.PL --installdirs=vendor ./Build %install ./Build install --destdir=%{buildroot} --create_packlist=0 %{_fixperms} -c %{buildroot} %check ./Build test ./Build test --test_files="xt/*.t" %files %doc Changes README %{perl_vendorlib}/Perl6/ %{_mandir}/man3/Perl6::Caller.3* %changelog * Thu May 11 2023 Paul Howarth - 0.100-28 - Use SPDX-format license tag * Thu Nov 7 2019 Paul Howarth - 0.100-18 - Use author-independent source URL * Tue Apr 17 2018 Paul Howarth - 0.100-12 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - 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 * Fri Sep 16 2016 Paul Howarth - 0.100-8 - Classify buildreqs by usage * Sun Aug 31 2014 Paul Howarth - 0.100-4 - Drop %%defattr, redundant since rpm 4.4 * Fri Aug 16 2013 Paul Howarth - 0.100-1 - Initial RPM version