# 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 # noarch, but to avoid debug* files interfering with manifest test: %global debug_package %{nil} # Similarly, for package note feature %undefine _package_note_file Name: perl-Test-Mojibake Version: 1.3 Release: 32.%{__distinit}%{__distvers} Summary: Check your source for encoding misbehavior License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Mojibake Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-Mojibake-%{version}.tar.gz BuildArch: noarch # =================================================================== # Module build requirements # =================================================================== BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # =================================================================== # Module requirements # =================================================================== BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(Pod::Usage) BuildRequires: perl(strict) BuildRequires: perl(Test::Builder) BuildRequires: perl(warnings) # =================================================================== # Optional module requirements # =================================================================== BuildRequires: perl(Unicode::CheckUTF8) # =================================================================== # Regular test suite requirements # =================================================================== BuildRequires: perl(blib) BuildRequires: perl(Test::Builder::Tester) BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(Test::Script) # =================================================================== # Author/Release test requirements # # Don't run these tests or include their requirements if we're # bootstrapping, as many of these modules require each other for # their author/release tests. # =================================================================== %if 0%{!?perl_bootstrap:1} BuildRequires: grep BuildRequires: perl(Perl::Critic) >= 1.094 BuildRequires: perl(Perl::Critic::Policy::Modules::ProhibitModuleShebang) BuildRequires: perl(Pod::Coverage::TrustPod) BuildRequires: perl(Test::CPAN::Changes) BuildRequires: perl(Test::CPAN::Meta) BuildRequires: perl(Test::CPAN::Meta::JSON) BuildRequires: perl(Test::DistManifest) BuildRequires: perl(Test::EOL) BuildRequires: perl(Test::HasVersion) BuildRequires: perl(Test::Kwalitee) >= 1.21 BuildRequires: perl(Test::MinimumVersion) BuildRequires: perl(Test::NoTabs) BuildRequires: perl(Test::Perl::Critic) BuildRequires: perl(Test::Pod) >= 1.41 BuildRequires: perl(Test::Pod::Coverage) >= 1.08 %if 0%{?fedora} > 17 || 0%{?rhel} > 7 BuildRequires: perl(Test::Pod::LinkCheck) %endif BuildRequires: perl(Test::Portability::Files) BuildRequires: perl(Test::Synopsis) BuildRequires: perl(Test::Vars) BuildRequires: perl(Test::Version) %endif # =================================================================== # Dependencies # =================================================================== %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif # Unicode::CheckUTF8 is an optional requirement that significantly speeds up # this module Requires: perl(Unicode::CheckUTF8) %description Many modern text editors automatically save files using UTF-8 codification. However, the perl interpreter does not expect it by default. Whilst this does not represent a big deal on (most) backend-oriented programs, Web framework (Catalyst, Mojolicious) based applications will suffer so-called Mojibake (literally: "unintelligible sequence of characters"). Even worse: if an editor saves BOM (Byte Order Mark, U+FEFF character in Unicode) at the start of a script with the executable bit set (on Unix systems), it won't execute at all, due to shebang corruption. Avoiding codification problems is quite simple: * Always use utf8/use common::sense when saving source as UTF-8 * Always specify =encoding utf8 when saving POD as UTF-8 * Do neither of above when saving as ISO-8859-1 * Never save BOM (not that it's wrong; just avoid it as you'll barely notice its presence when in trouble) However, if you find yourself upgrading old code to use UTF-8 or trying to standardize a big project with many developers, each one using a different platform/editor, reviewing all files manually can be quite painful, especially in cases where some files have multiple encodings (note: it all started when I realized that gedit and derivatives are unable to open files with character conversion tables). Enter the Test::Mojibake ;) %prep %setup -q -n Test-Mojibake-%{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 %{!?perl_bootstrap:AUTHOR_TESTING=1 RELEASE_TESTING=1} %files %license LICENSE %doc Changes README %{_bindir}/scan_mojibake %{perl_vendorlib}/Test/ %{_mandir}/man1/scan_mojibake.1* %{_mandir}/man3/Test::Mojibake.3* %changelog * Tue Sep 17 2024 Paul Howarth - 1.3-32 - Test::Vars is fixed * Fri Jan 26 2024 Paul Howarth - 1.3-31 - Drop BR: perl(Test::Vars) from Fedora 39 onwards as Test::Vars is FTBFS with Perl 5.38 * Fri May 26 2023 Paul Howarth - 1.3-27 - Use SPDX-format license tag * Fri Mar 11 2022 Paul Howarth - 1.3-23 - Fix FTBFS triggered by package note feature - Use %%license unconditionally * Tue Oct 29 2019 Paul Howarth - 1.3-13 - Use Test::Pod::LinkCheck from Fedora/EPEL - Perl::Critic ≥ 1.094 needed for the 'equivalent_modules' parameter in TestingAndDebugging::RequireUseStrict * Sun Jun 9 2019 Paul Howarth - 1.3-11 - Perl 5.30 rebuild * Fri Apr 6 2018 Paul Howarth - 1.3-5 - 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 workaround for building with Test::More < 0.96 - Drop release version conditionals for author/release testing * Mon Feb 6 2017 Paul Howarth - 1.3-1 - Update to 1.3 - Minor fixes to pass the release tests - Add MetaJSON plugin (GH#12) - Add new optional dependency on Unicode::CheckUTF8::PP, a Pure Perl implementation of Unicode::CheckUTF8 - Fixed off-by-one (GH#10) - Fixed SYNOPSIS - Work around bug in GNU tar 1.15.1 that breaks extracting tarballs made with unknown extended attributes on old distributions - Update patches as needed * Tue Jan 10 2017 Paul Howarth - 1.1-6 - Test::Kwalitee ≥ 1.21 now available back to Fedora 9 * Tue Oct 4 2016 Paul Howarth - 1.1-5 - Fix FTBFS when perl is not in the minimal buildroot - BR: perl-generators where available - Simplify find command using -delete * Fri Feb 19 2016 Paul Howarth - 1.1-3 - Make SYNOPSIS compilable perl (#1309966) * Thu Sep 3 2015 Paul Howarth - 1.1-1 - Update to 1.1 - Distribution maintenance - Handle the case where all_files_encoding_ok has no files to test by skipping all tests - Re-enable use of Test::Vars with Perl 5.22 - Enable Kwalitee test if a recent enough Test::Kwalitee is available - Update patch for building with old Test::More versions * Tue Jun 23 2015 Paul Howarth - 1.0-7 - Disable use of Test::Vars with Perl 5.22 (https://github.com/gfx/p5-Test-Vars/issues/11) * Tue Sep 2 2014 Paul Howarth - 1.0-3 - Use %%license where possible * Wed May 21 2014 Paul Howarth - 1.0-1 - Update to 1.0 - Use proper source for ASCII-only characters - Dist::Zilla-related updates - Fixing the "comment in regexp" other way around - Fix regex to properly ignore comments - Update patch for building with old Test::More versions - Drop support for old distributions prior to FC-5 - Drop %%defattr, redundant since rpm 4.4 - Drop patch for building with ExtUtils::MakeMaker < 6.30 * Mon Jan 20 2014 Paul Howarth - 0.9-1 - Update to 0.9 - More consistent UTF-8 naming in docs - Dist::Zilla maintenance - Fixed shebang in scan_mojibake (https://github.com/creaktive/Test-Mojibake/issues/7) - Update patches for building with old ExtUtils::MakeMaker and Test::More versions - Don't run the kwalitee test, which breaks in proper_libs on old versions * Sat Jan 26 2013 Paul Howarth - 0.8-1 - Update to 0.8 - Fixed cyclic t/ deps - Added the standalone scan_mojibake utility - Listed Unicode::CheckUTF8 as a recommended prerequisite - Recognize utf8::all - Passes perlcritic harsh - Drop BR: perl(File::Spec) - BR: perl(File::Spec::Functions), perl(Pod::Usage) and perl(Test::Script) - Update patches for building with old ExtUtils::MakeMaker and Test::More versions * Mon Oct 1 2012 Paul Howarth - 0.7-1 - Update to 0.7 - Fixed multiple =encoding behaviour - More deterministic t/01-bad-check.t * Sat Sep 29 2012 Paul Howarth - 0.6-1 - Update to 0.6 - Fixed incorrect test examples - Reinstate BR: perl(Test::Kwalitee) now that kwalitee test is back - Update patch for building with old ExtUtils::MakeMaker versions * Thu Sep 27 2012 Paul Howarth - 0.5-1 - Update to 0.5 - Attempt to fix https://github.com/creaktive/Test-Mojibake/issues/2 (don't fail when no lib directory exists) - Kwalitee won't complain any more - Kwalitee test dropped upstream, so no longer need BR: perl(Test::Kwalitee) * Mon Jul 16 2012 Paul Howarth - 0.4-2 - Perl 5.16 post-bootstrap rebuild * Tue Jun 26 2012 Paul Howarth - 0.4-1 - Update to 0.4 - _detect_utf8: PP version now handles overlong UTF-8 sequences - Tests update (96% coverage) - Dist::Zilla update - BR: perl(Perl::Critic::Policy::Modules::ProhibitModuleShebang), perl(Test::EOL) and perl(Test::Version) - Drop upstreamed patch for kwalitee test - Update patches for building with old ExtUtils::MakeMaker and Test::More versions * Sat Jun 23 2012 Paul Howarth - 0.3-5 - Don't check the POD in the kwalitee test - 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 - Drop patch avoiding warnings with Perl < 5.8.5 - BR:/R: perl(Unicode::CheckUTF8) unconditionally - BR: perl(Test::Perl::Critic) unconditionally * Thu Aug 11 2011 Paul Howarth - 0.3-1 - Initial RPM version