# 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-Test-Spelling Version: 0.25 Release: 13.%{__distinit}%{__distvers} Summary: Check for spelling errors in POD files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Spelling Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-Spelling-%{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: hunspell BuildRequires: perl(Carp) BuildRequires: perl(Exporter) >= 5.57 BuildRequires: perl(File::Spec) BuildRequires: perl(IPC::Run3) >= 0.044 BuildRequires: perl(Pod::Spell) >= 1.01 BuildRequires: perl(strict) BuildRequires: perl(Symbol) BuildRequires: perl(Test::Builder) BuildRequires: perl(Text::Wrap) BuildRequires: perl(warnings) # Test Suite %if 0%{?fedora} > 23 || 0%{?rhel} > 7 BuildRequires: glibc-langpack-en %endif BuildRequires: hunspell-en BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(Test::Tester) BuildRequires: perl(utf8) # Optional Tests BuildRequires: perl(CPAN::Meta) >= 2.120900 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: hunspell Requires: perl(Carp) %description "Test::Spelling" lets you check the spelling of a POD file, and report its results in standard "Test::Simple" fashion. This module requires the hunspell program. %prep %setup -q -n Test-Spelling-%{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 LANG=en_US make test %files %license LICENSE %doc Changes README %{perl_vendorlib}/Test/ %{_mandir}/man3/Test::Spelling.3* %changelog * Fri May 26 2023 Paul Howarth - 0.25-13 - Use SPDX-format license tag - Use %%license unconditionally * Wed May 29 2019 Paul Howarth - 0.25-1 - Update to 0.25 - Re-worded the documentation - Ordered documented functions in alphabetical order - Fixed up the synopsis - Put function usage examples directly below the function name; this makes it easier to get clickable links for functions in metacpan - Documented get_pod_parser - Moved hunspell up to the preferred checker * Tue May 28 2019 Paul Howarth - 0.24-1 - Update to 0.24 - Fix up the prereqs somewhat - Revert the unicode support added in the last release as it caused some test breakage * Wed May 22 2019 Paul Howarth - 0.23-1 - Update to 0.23 - Fixed some documentation errors - Added unicode support (GH#10) - Bump Perl prereq to 5.8 now that we support unicode - Don't inherit from Exporter (GH#9) - Bump Exporter prereq to 5.57 * Thu Apr 25 2019 Paul Howarth - 0.22-1 - Update to 0.22 - No . in @INC should no longer be an issue (CPAN RT#120425) - Removed the POD spelling test from /t as it's now in /xt - Forego usage of inc::Module::Install for EU::MM - List out all prereqs individually; provide cpanfile - Use dzil to build the dist - Convert the README to markdown - Add a LICENSE file - Clean up the Changes log * Sun Mar 10 2019 Paul Howarth - 0.20-13 - Switch upstream from search.cpan.org to metacpan.org - Work around mock locale issues by adding buildreq glibc-langpack-en * Thu Apr 5 2018 Paul Howarth - 0.20-10 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Thu May 18 2017 Paul Howarth - 0.20-7 - Fix FTBFS when '.' is not in @INC (CPAN RT#120425) - 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.88 - Drop workarounds for old versions of hunspell - Spell checker is always hunspell now * Thu Oct 6 2016 Paul Howarth - 0.20-5 - Fix FTBFS when perl is not in the minimal buildroot - BR: perl-generators where available - Simplify find command using -delete * Tue Oct 7 2014 Paul Howarth - 0.20-1 - Update to 0.20 - Add a sorted list of your most commonly misspelled words to the end of all_pod_files_spelling_ok to aid stopword list creation and bulk correction - Classify buildreqs by usage - Update hunspell preference patch * Mon Sep 15 2014 Paul Howarth - 0.19-5 - Drop %%defattr, redundant since rpm 4.4 * Fri Jul 19 2013 Paul Howarth - 0.19-2 - Perl 5.18 rebuild * Sun May 5 2013 Paul Howarth - 0.19-1 - Update to 0.19: - For more consistent results, avoid using the user's local aspell dictionary (CPAN RT#84869) - Update hunspell preference patch * Fri Apr 26 2013 Paul Howarth - 0.18-1 - Update to 0.18: - Work around Pod::Spell limitations - Improve case handling - Improve test failure reporting - Include more useful info in Test-Spelling's own test suite * Mon Jan 28 2013 Paul Howarth - 0.17-1 - Update to 0.17: - Use IPC::Run3 instead of IPC::Open3 - Run test suite with LANG=en_US to ensure correct dictionaries are used - Update patches as needed * Fri Dec 21 2012 Paul Howarth - 0.16-1 - Update to 0.16: - Allow use of a custom POD parser rather than Pod::Spell using set_pod_parser - Drop support for perl < 5.8.3 - Re-diff patches as necessary * Sat Jun 23 2012 Paul Howarth - 0.15-3 - BR: perl(base), perl(Cwd), perl(Exporter), perl(ExtUtils::MakeMaker), perl(File::Spec) and perl(Test::Builder) - 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 - Never need aspell-en-gb * Tue Aug 23 2011 Paul Howarth - 0.15-1 - Update to 0.15: - Begin adding actual tests (hilariously, adding the suggested t/pod-spell.t to this dist to test itself found a typo: "stopwards") - BR: perl(Test::Tester) and a suitable English dictionary - Add patch to support building with perl < 5.8.3 - Add patch to support building with Test::More < 0.88 - Add patch for extra stopwords on old distributions * Mon Aug 8 2011 Paul Howarth - 0.14-3 - Add hack for hunspell < 1.2.8, which doesn't treat the "C" locale as "en_US" by default * Sat Jul 2 2011 Paul Howarth - 0.14-2 - Rebuild for perl 5.14.1 in Rawhide - Fix dist tag for CentOS 6 and Scientific Linux * Fri May 27 2011 Paul Howarth - 0.14-1 - Update to 0.14: - Fix an error when using add_stopwords("constant","strings") (CPAN RT#68471) * Wed Apr 27 2011 Paul Howarth - 0.13-1 - Update to 0.13: - Make alternatives checking more robust by reading the spellchecker's STDERR * Tue Apr 26 2011 Paul Howarth - 0.12-1 - Update to 0.12: - Best Practical has taken over maintainership of this module - Try various spellcheck programs instead of hardcoding the ancient `spell` (CPAN RT#56483) - Remove temporary files more aggressively (CPAN RT#41586) - Fixed by not creating them at all - instead we now use IPC::Open3 - Remove suggestion to use broken `aspell -l` (CPAN RT#28967) - Add set_pod_file_filter for skipping translations, etc. (CPAN RT#63755) - Skip tests in all_pod_files_spelling_ok if there is no working spellchecker - Provide a has_working_spellchecker so you can skip your own tests if there's no working spellchecker - Switch to Module::Install - Rewrite and modernize a lot of the documentation - Decruftify code, such as by using Exporter and lexical filehandles - Support .plx files - This release by SARTAK -> update source URL - Rewrite hunspell patch to just favour hunspell over aspell - Drop File::Temp requirement, so we can run on RHL-9/RHEL-3 now - Nobody else likes macros for commands * Thu Jun 24 2010 Paul Howarth - 0.11-9 - Rebuild for perl 5.12.1 in Rawhide * Mon May 17 2010 Paul Howarth - 0.11-8 - Fix dist tag for RHEL-6 Beta * Fri Jan 29 2010 Paul Howarth - 0.11-7 - Patch to use hunspell rather than aspell with perl 5.10 onwards (F-9 onwards - #508643) - Use %%{_fixperms} macro instead of our own %%{__chmod} incantation * Thu Nov 26 2009 Paul Howarth - 0.11-6 - Import from Fedora - Buildreq File::Temp >= 0.14, needed for OO interface used in this module * Sun Jul 26 2009 Fedora Release Engineering - 0.11-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Feb 26 2009 Fedora Release Engineering - 0.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Feb 27 2008 Tom "spot" Callaway - 0.11-3 - Rebuild for perl 5.10 (again) * Sun Jan 13 2008 Tom "spot" Callaway - 0.11-2 - Rebuild for new perl * Tue Dec 19 2006 Jose Pedro Oliveira - 0.11-1 - First build