# 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-Mixin-Linewise Version: 0.111 Release: 2.%{__distinit}%{__distvers} Summary: Write your linewise code for handles; this does the rest License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Mixin-Linewise Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Mixin-Linewise-%{version}.tar.gz Patch0: Mixin-Linewise-0.111-old-EU::MM.patch BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(:VERSION) >= 5.12 BuildRequires: perl(ExtUtils::MakeMaker) >= 6.31 # Module BuildRequires: perl(Carp) BuildRequires: perl(IO::File) BuildRequires: perl(PerlIO::utf8_strict) BuildRequires: perl(strict) BuildRequires: perl(Sub::Exporter) >= 0.9 BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(Encode) BuildRequires: perl(File::Spec) BuildRequires: perl(lib) BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(utf8) # Optional Tests BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(CPAN::Meta::Prereqs) # Extra Tests BuildRequires: perl(Encode) BuildRequires: perl(Test::Pod) >= 1.41 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif # Old provides generator does not support the syntax used in this module %if 0%{?fedora} < 21 && 0%{?rhel} < 8 Provides: perl(Mixin::Linewise) = %{version} Provides: perl(Mixin::Linewise::Readers) = %{version} Provides: perl(Mixin::Linewise::Writers) = %{version} %endif %description It's boring to deal with opening files for IO, converting strings to handle-like objects, and all that. With Mixin::Linewise::Readers and Mixin::Linewise::Writers, you can just write a method to handle handles, and methods for handling strings and file names are added for you. %prep %setup -q -n Mixin-Linewise-%{version} # Support building with ExtUtils::MakeMaker < 6.78 %patch -P 0 %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 make test TEST_FILES="$(echo $(find xt/ -name '*.t'))" %files %license LICENSE %doc Changes README %{perl_vendorlib}/Mixin/ %{_mandir}/man3/Mixin::Linewise.3* %{_mandir}/man3/Mixin::Linewise::Readers.3* %{_mandir}/man3/Mixin::Linewise::Writers.3* %changelog * Thu Jul 13 2023 Paul Howarth - 0.111-2 - Avoid use of deprecated patch syntax * Sun Jan 1 2023 Paul Howarth - 0.111-1 - Update to 0.111 - Update author information - Use SPDX-format license tag * Wed Jun 23 2021 Paul Howarth - 0.110-1 - Update to 0.110 - Tweak the file test again to exclude directories * Mon Jun 21 2021 Paul Howarth - 0.109-1 - Update to 0.109 - Use "-r" test instead of "-f" test, to allow use on (say) named pipes - Update author information - Add perl support section to docs - Use %%license unconditionally - Add patch to support building with ExtUtils::MakeMaker < 6.78 - Add manual provides for Fedora < 21 * Mon Jun 3 2019 Paul Howarth - 0.108-13 - Perl 5.30 rebuild * Fri Apr 27 2018 Paul Howarth - 0.108-9 - 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 - Drop workarounds for building with Test::More < 0.88 * Mon Sep 5 2016 Paul Howarth - 0.108-5 - BR: perl-generators where available - Simplify find command using -delete * Tue Jun 23 2015 Paul Howarth - 0.108-3 - Perl 5.22 rebuild * Thu Apr 9 2015 Paul Howarth - 0.108-1 - Update to 0.108 - First argument can be options only if there are two arguments - Update patches as needed * Wed Apr 8 2015 Paul Howarth - 0.107-1 - Update to 0.107 - Add leading hashref arg for passing binmode to read_string, write_string - Do not modify references of args passed to read_file, write_file - Update patches as needed * Wed Sep 10 2014 Paul Howarth - 0.106-3 - Drop %%defattr, redundant since rpm 4.4 - Drop support for building with ExtUtils::MakeMaker < 6.30 - Use %%license where possible * Mon Mar 10 2014 Paul Howarth - 0.106-1 - Update to 0.106 - Avoid dumb v-string warning in dumb perl versions - Update patches as needed * Fri Feb 21 2014 Paul Howarth - 0.105-1 - Update to 0.105 - Update Readers to, by default, use PerlIO::utf8_strict to avoid problems with CRLF layer on Win32 - Update patches as needed * Sun Dec 22 2013 Paul Howarth - 0.104-1 - Update to 0.104 - Clean up the docs for changes made in 0.103 - Update patches as needed * Sat Dec 21 2013 Paul Howarth - 0.103-1 - Update to 0.103 - The string methods once again open references to scalars, rather than using IO::Scalar - Update patches as needed * Tue Nov 5 2013 Paul Howarth - 0.102-1 - Update to 0.102 [THIS MIGHT BREAK YOUR CODE] - Add binmode option to set binmode on opened filehandles; this defaults to encoding(UTF-8) - Typo fix by the inimitable David Steinbrunner - Update patches as needed * Fri Jul 19 2013 Paul Howarth - 0.004-2 - Perl 5.18 rebuild * Wed Jun 19 2013 Paul Howarth - 0.004-1 - Update to 0.004 - Repackaged using Dist::Zilla - Drop BR: perl(Cwd), perl(File::Path) and perl(File::Spec) as we no longer use Module::Install - Drop BR: perl(Test::Pod::Coverage) as there's no longer a coverage test - BR: perl(File::Find) and perl(File::Temp) for the test suite - Add patch to support building with ExtUtils::MakeMaker < 6.30 - Update patch for building with Test::More < 0.88 * Fri Jul 6 2012 Paul Howarth - 0.003-7 - BR: perl(Carp), perl(Cwd), perl(File::Path), perl(File::Spec), perl(IO::File) and perl(lib) - Don't need to remove empty directories from the buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Use DESTDIR rather than PERL_INSTALL_ROOT * Fri Jul 1 2011 Paul Howarth - 0.003-5 - 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.003-3 - Rebuild for perl 5.12.1 in Rawhide * Tue May 11 2010 Paul Howarth - 0.003-2 - Fix dist tag for RHEL-6 Beta * Mon Feb 15 2010 Paul Howarth - 0.003-1 - Update to 0.003 (add Test::More prereq) - Run release tests too - BR: perl(Test::Pod) and perl(Test::Pod::Coverage) - Patch test suite if we have Test::More < 0.88 * Wed Feb 3 2010 Paul Howarth - 0.002-4 - Import from Fedora * Mon Dec 7 2009 Stepan Kasal - 0.002-3 - Rebuild against perl 5.10.1 * Sun Jul 26 2009 Fedora Release Engineering - 0.002-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sun Apr 19 2009 Iain Arnell - 0.002-1 - Specfile autogenerated by cpanspec 1.77