# 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-Taint-Util Version: 0.08 Release: 37.%{__distinit}%{__distvers} Summary: Test for and flip the taint flag without regex matches or eval License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Taint-Util Source0: https://cpan.metacpan.org/modules/by-module/Taint/Taint-Util-%{version}.tar.gz Patch0: Taint-Util-0.08-utf8.patch # ============= Module Build ==================== BuildRequires: coreutils BuildRequires: findutils BuildRequires: gcc BuildRequires: make BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Pod::Man) >= 2.26 BuildRequires: perl(warnings) # ============= Module Runtime ================== BuildRequires: perl(strict) BuildRequires: perl(XSLoader) # ============= Test Suite ====================== BuildRequires: perl(Test::More) # ============= Dependencies ==================== %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif # Don't "provide" private Perl libs %{?perl_default_filter} %description Wraps perl's internal routines for checking and setting the taint flag and thus does not rely on regular expressions for untainting or odd tricks involving eval and kill for checking whether data is tainted; instead, it checks and flips a flag on the scalar in-place. %prep %setup -q -n Taint-Util-%{version} # Re-code README as UTF-8 %patch -P 0 %build perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete find %{buildroot} -type f -name '*.bs' -empty -delete %{_fixperms} -c %{buildroot} %check make test %files %license LICENSE %doc ChangeLog README %{perl_vendorarch}/auto/Taint/ %{perl_vendorarch}/Taint/ %{_mandir}/man3/Taint::Util.3* %changelog * Wed Jun 12 2024 Paul Howarth - 0.08-37 - Perl 5.40 rebuild * Tue Jul 11 2023 Paul Howarth - 0.08-33 - Perl 5.38 rebuild * Mon May 22 2023 Paul Howarth - 0.08-32 - Use SPDX-format license tag - Avoid use of deprecated patch syntax - BR: Pod::Man ≥ 2.26 to avoid man page issue (#998447) * Tue May 31 2022 Paul Howarth - 0.08-30 - Perl 5.36 rebuild * Fri May 21 2021 Paul Howarth - 0.08-27 - Perl 5.34 rebuild * Wed Jun 24 2020 Paul Howarth - 0.08-24 - Perl 5.32 rebuild * Thu May 30 2019 Paul Howarth - 0.08-20 - Perl 5.30 rebuild * Wed Jun 27 2018 Paul Howarth - 0.08-17 - Perl 5.28 rebuild * Sun Aug 6 2017 Paul Howarth - 0.08-15 - 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 * Wed May 18 2016 Paul Howarth - 0.08-11 - BR: perl-devel and perl-generators where available - Simplify find commands using -empty and -delete - Drop %%defattr, redundant since rpm 4.4 * Fri Aug 16 2013 Paul Howarth - 0.08-1 - Initial RPM version