# 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-Slurp Version: 0.051005 Release: 28.%{__distinit}%{__distvers} Summary: Implementation of the Perl 6 'slurp' built-in License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl6-Slurp Source0: https://cpan.metacpan.org/modules/by-module/Perl6/Perl6-Slurp-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(Carp) BuildRequires: perl(Scalar::Util) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(base) BuildRequires: perl(File::Temp) BuildRequires: perl(IO::File) BuildRequires: perl(Test::More) BuildRequires: perl(utf8) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description slurp takes: a filename, a filehandle, a typeglob reference, an IO::File object, or a scalar reference, converts it to an input stream (using open() if necessary), and reads in the entire stream. If slurp fails to set up or read the stream, it throws an exception. %prep %setup -qn Perl6-Slurp-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete %{_fixperms} -c %{buildroot} %check make test %files %doc Changes demo/ README %{perl_vendorlib}/Perl6/ %{_mandir}/man3/Perl6::Slurp.3* %changelog * Thu May 11 2023 Paul Howarth - 0.051005-28 - Use SPDX-format license tag - Use author-independent source URL * Tue Apr 17 2018 Paul Howarth - 0.051005-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.051005-8 - Classify buildreqs by usage - Simplify find command using -delete - Drop %%defattr, redundant since rpm 4.4 * Sat Feb 22 2014 Paul Howarth - 0.051005-1 - Update to 0.051005 - Removed illegal assignments to $/ under 5.20+ * Wed Jan 22 2014 Paul Howarth - 0.051004-1 - Update to 0.051004 - De-documented spurious dependency on Perl6::Export - De-typo-ficated source - Made file-based tests independent, so they can run in parallel * Fri Sep 6 2013 Paul Howarth - 0.051003-5 - Import from Fedora * Sun Aug 04 2013 Fedora Release Engineering - 0.051003-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Wed Jul 17 2013 Petr Pisar - 0.051003-3 - Perl 5.18 rebuild * Wed Jul 03 2013 Christopher Meng - 0.051003-2 - Fix some issues * Tue Mar 05 2013 Christopher Meng - 0.051003-1 - Initial package