# 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-Type-Tie Version: 0.015 Release: 1.%{__distinit}%{__distvers} Summary: Tie a variable to a type constraint License: GPL+ or Artistic URL: https://metacpan.org/release/Type-Tie Source0: https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/Type-Tie-%{version}.tar.gz BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17 BuildRequires: sed # Module BuildRequires: perl(B) BuildRequires: perl(Carp) BuildRequires: perl(Data::Dumper) BuildRequires: perl(Exporter::Tiny) >= 0.026 BuildRequires: perl(Hash::FieldHash) BuildRequires: perl(overload) BuildRequires: perl(Scalar::Util) BuildRequires: perl(strict) BuildRequires: perl(Tie::Array) BuildRequires: perl(Tie::Hash) BuildRequires: perl(Tie::Scalar) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(constant) BuildRequires: perl(Test::Fatal) BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(Test::Requires) # Optional Tests BuildRequires: perl(Moo) BuildRequires: perl(Moose::Util::TypeConstraints) BuildRequires: perl(MooseX::Types::Moose) BuildRequires: perl(Storable) %if !%{defined perl_bootstrap} # Build-cycle: perl-Type-Tiny → perl-Type-Tie BuildRequires: perl(Types::Standard) %endif # Dependencies Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) Requires: perl(B) Requires: perl(Data::Dumper) Requires: perl(Hash::FieldHash) Requires: perl(overload) %description This module exports a single function: ttie, which ties a variable to a type constraint, ensuring that whatever values stored in the variable will conform to the type constraint. If the type constraint has coercions, these will be used if necessary to ensure values assigned to the variable conform. %prep %setup -q -n Type-Tie-%{version} # Remove bundled modules Test::Fatal, Test::Requires and Try::Tiny rm -r inc/ sed -i -e '/^inc\/.*$/d' MANIFEST %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 %if 0%{?_licensedir:1} %license COPYRIGHT LICENSE %else %doc COPYRIGHT LICENSE %endif %doc Changes README %{perl_vendorlib}/Type/ %{_mandir}/man3/Type::Nano.3* %{_mandir}/man3/Type::Tie.3* %changelog * Wed Nov 18 2020 Paul Howarth - 0.015-1 - Update to 0.015 - Document that Clone::clone will not work (CPAN RT#127576) - Set up Storable hooks to play nice with Storable::dclone - Support Hash::Util::FieldHash::Compat as an alternative to Hash::FieldHash because it seems to pass its tests better on Perl 5.8 * Fri Oct 25 2019 Paul Howarth - 0.014-6 - Import from Fedora * Thu Oct 24 2019 Paul Howarth - 0.014-5 - Tweak for EPEL-8 build - Specify all dependencies - Avoid need to bootstrap with Types::Standard on EPEL - Use %%{make_build} and %%{make_install} - Fix permissions verbosely - Make %%files list more explicit * Fri Jul 26 2019 Fedora Release Engineering - 0.014-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Sun Jun 02 2019 Jitka Plesnikova - 0.014-3 - Perl 5.30 re-rebuild of bootstrapped packages * Fri May 31 2019 Jitka Plesnikova - 0.014-2 - Perl 5.30 rebuild * Tue Mar 05 2019 Ralf Corsépius - 0.014-1 - Upstream update. * Sat Feb 02 2019 Fedora Release Engineering - 0.013-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Thu Jan 10 2019 Ralf Corsépius - 0.013-1 - Upstream update. - Add BR: perl(Moo). * Fri Jul 13 2018 Fedora Release Engineering - 0.011-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Thu Jul 12 2018 Ralf Corsépius - 0.011-1 - Upstream update. * Sat Jun 30 2018 Jitka Plesnikova - 0.009-8 - Perl 5.28 re-rebuild of bootstrapped packages * Fri Jun 29 2018 Jitka Plesnikova - 0.009-7 - Perl 5.28 rebuild * Fri Feb 09 2018 Fedora Release Engineering - 0.009-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Thu Jul 27 2017 Fedora Release Engineering - 0.009-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Wed Jun 07 2017 Jitka Plesnikova - 0.009-4 - Perl 5.26 re-rebuild of bootstrapped packages * Tue Jun 06 2017 Jitka Plesnikova - 0.009-3 - Perl 5.26 rebuild * Fri Feb 03 2017 Ralf Corsépius - 0.009-2 - Reflect feedback from package review. * Fri Feb 03 2017 Ralf Corsépius - 0.009-1 - Initial Fedora package.