# 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 # TODO: BR: perl(File::Spec::Link) when available Name: perl-Cwd-Guard Version: 0.05 Release: 21.%{__distinit}%{__distvers} Summary: Temporarily change the current directory License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Cwd-Guard Source0: https://cpan.metacpan.org/authors/id/K/KA/KAZEBURO/Cwd-Guard-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(File::Basename) BuildRequires: perl(File::Copy) BuildRequires: perl(File::Spec) BuildRequires: perl(Module::Build) BuildRequires: perl(utf8) # Module Runtime BuildRequires: perl(constant) BuildRequires: perl(Cwd) BuildRequires: perl(Exporter) BuildRequires: perl(if) BuildRequires: perl(parent) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(File::Temp) BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(Test::Requires) # Runtime %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description Cwd::Guard can change the current directory (chdir) using a limited scope. use Cwd::Guard qw/cwd_guard/; use Cwd; my $dir = getcwd; MYBLOCK: { my $guard = cwd_guard('/tmp/xxxxx') or die "failed chdir: $Cwd::Guard::Error"; ... # chdir to /tmp/xxxxx } ... # back to $dir %prep %setup -q -n Cwd-Guard-%{version} %build perl Build.PL --installdirs=vendor ./Build %install ./Build install --destdir=%{buildroot} --create_packlist=0 %{_fixperms} -c %{buildroot} %check ./Build test %files %license LICENSE %doc Changes README.md %{perl_vendorlib}/Cwd/ %{_mandir}/man3/Cwd::Guard.3* %changelog * Fri Jan 13 2023 Paul Howarth - 0.05-21 - Drop perl(:MODULE_COMPAT*) dependency from Fedora 38 onwards - Use SPDX-format license tag - Use %%license unconditionally - Fix permissions verbosely * Thu Jun 6 2019 Paul Howarth - 0.05-10 - Modernize spec - Switch upstream from search.cpan.org to metacpan.org - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Don't explicitly clean buildroot in %%install section - Drop explicit %%clean section - Drop support for building with Test::More < 0.88 - Drop legacy BuildRoot: and Group: tags * Fri Aug 12 2016 Paul Howarth - 0.05-2 - BR: perl-generators where available * Thu Apr 14 2016 Paul Howarth - 0.05-1 - Update to 0.05 - Add a new test - Update patch for building with old Test::More versions * Sat Oct 4 2014 Paul Howarth - 0.04-1 - Initial RPM version