Blame SPECS/perl-Test-Spelling.spec

553896
Name:           perl-Test-Spelling
553896
Version:        0.19
e1f675
Release:        2%{?dist}
553896
Summary:        Check for spelling errors in POD files
553896
Group:          Development/Libraries
553896
License:        GPL+ or Artistic
553896
URL:            http://search.cpan.org/dist/Test-Spelling/
553896
Source0:        http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Test-Spelling-%{version}.tar.gz
553896
Patch0:         Test-Spelling-0.19-hunspell.patch
553896
BuildArch:      noarch
553896
BuildRequires:  hunspell-en
553896
BuildRequires:  perl(base)
553896
BuildRequires:  perl(Carp)
553896
BuildRequires:  perl(Cwd)
553896
BuildRequires:  perl(Exporter)
553896
BuildRequires:  perl(ExtUtils::MakeMaker)
553896
BuildRequires:  perl(File::Path)
553896
BuildRequires:  perl(File::Spec)
553896
BuildRequires:  perl(IPC::Run3) >= 0.044
553896
BuildRequires:  perl(Pod::Spell) >= 1.01
553896
BuildRequires:  perl(Test::Builder)
553896
BuildRequires:  perl(Test::More)
553896
BuildRequires:  perl(Test::Pod) >= 1.00
553896
BuildRequires:  perl(Test::Tester)
553896
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
553896
Requires:       hunspell
553896
Requires:       perl(Carp)
553896
553896
%description
553896
"Test::Spelling" lets you check the spelling of a POD file, and report
553896
its results in standard "Test::Simple" fashion. This module requires the
553896
hunspell program.
553896
553896
%prep
553896
%setup -q -n Test-Spelling-%{version}
553896
553896
# Promote hunspell over spell/aspell to avoid surprises if aspell is installed
553896
%patch0
553896
553896
# Force the author test to run too
553896
mkdir inc/.author
553896
553896
%build
553896
perl Makefile.PL INSTALLDIRS=vendor
553896
make %{?_smp_mflags}
553896
553896
%install
553896
make pure_install DESTDIR=%{buildroot}
553896
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
553896
%{_fixperms} %{buildroot}
553896
553896
%check
553896
make test
553896
553896
%files
553896
%doc Changes README
553896
%{perl_vendorlib}/Test/
553896
%{_mandir}/man3/Test::Spelling.3pm*
553896
553896
%changelog
e1f675
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.19-2
e1f675
- Mass rebuild 2013-12-27
e1f675
553896
* Sun May  5 2013 Paul Howarth <paul@city-fan.org> - 0.19-1
553896
- Update to 0.19:
553896
  - For more consistent results, avoid using the user's local aspell dictionary
553896
    (CPAN RT#56483)
553896
- Update hunspell preference patch
553896
553896
* Fri Apr 26 2013 Paul Howarth <paul@city-fan.org> - 0.18-1
553896
- Update to 0.18:
553896
  - Work around Pod::Spell limitations
553896
  - Improve case handling
553896
  - Improve test failure reporting
553896
  - Include more useful info in Test-Spelling's own test suite
553896
553896
* Mon Jan 28 2013 Paul Howarth <paul@city-fan.org> - 0.17-1
553896
- Update to 0.17:
553896
  - Use IPC::Run3 instead of IPC::Open3
553896
553896
* Fri Dec 21 2012 Paul Howarth <paul@city-fan.org> - 0.16-1
553896
- Update to 0.16:
553896
  - Allow use of a custom POD parser rather than Pod::Spell using
553896
    set_pod_parser
553896
- Re-diff patch to avoid shipping .orig file
553896
553896
* Wed Nov 21 2012 Jitka Plesnikova <jplesnik@redhat.com> - 0.15-5
553896
- Update dependencies
553896
- Don't need to remove empty directories from the buildroot
553896
- Drop %%defattr, redundant since rpm 4.4
553896
553896
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15-4
553896
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
553896
553896
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 0.15-3
553896
- Perl 5.16 rebuild
553896
553896
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15-2
553896
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
553896
553896
* Tue Aug 23 2011 Paul Howarth <paul@city-fan.org> - 0.15-1
553896
- Update to 0.15:
553896
  - Begin adding actual tests (hilariously, adding the suggested t/pod-spell.t
553896
    to this dist to test itself found a typo: "stopwards")
553896
- BR: perl(Test::Tester) and hunspell-en
553896
553896
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.14-2
553896
- Perl mass rebuild
553896
553896
* Fri May 27 2011 Paul Howarth <paul@city-fan.org> - 0.14-1
553896
- Update to 0.14:
553896
  - Fix an error when using add_stopwords("constant","strings") (CPAN RT#68471)
553896
553896
* Wed Apr 27 2011 Paul Howarth <paul@city-fan.org> - 0.13-1
553896
- Update to 0.13:
553896
  - Make alternatives checking more robust by reading the spellchecker's STDERR
553896
553896
* Tue Apr 26 2011 Paul Howarth <paul@city-fan.org> - 0.12-1
553896
- Update to 0.12:
553896
  - Best Practical has taken over maintainership of this module
553896
  - Try various spellcheck programs instead of hardcoding the ancient `spell`
553896
    (CPAN RT#56483)
553896
  - Remove temporary files more aggressively (CPAN RT#41586)
553896
  - Fixed by not creating them at all - instead we now use IPC::Open3
553896
  - Remove suggestion to use broken `aspell -l` (CPAN RT#28967)
553896
  - Add set_pod_file_filter for skipping translations, etc. (CPAN RT#63755)
553896
  - Skip tests in all_pod_files_spelling_ok if there is no working spellchecker
553896
  - Provide a has_working_spellchecker so you can skip your own tests if
553896
    there's no working spellchecker
553896
  - Switch to Module::Install
553896
  - Rewrite and modernize a lot of the documentation
553896
  - Decruftify code, such as by using Exporter and lexical filehandles
553896
  - Support .plx files
553896
- This release by SARTAK -> update source URL
553896
- Rewrite hunspell patch to just favour hunspell over aspell
553896
- BR: perl(IPC::Open3)
553896
553896
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11-11
553896
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
553896
553896
* Wed Dec 22 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.11-10
553896
- Rebuild to fix problems with vendorarch/lib (#661697)
553896
553896
* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.11-9
553896
- Mass rebuild with perl-5.12.0
553896
553896
* Fri Jan 29 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 0.11-8
553896
- actually apply patch. :P
553896
553896
* Wed Jan 20 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 0.11-7
553896
- use hunspell instead of aspell (bz 508643)
553896
553896
* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 0.11-6
553896
- rebuild against perl 5.10.1
553896
553896
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11-5
553896
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
553896
553896
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11-4
553896
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
553896
553896
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.11-3
553896
- Rebuild for perl 5.10 (again)
553896
553896
* Sun Jan 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.11-2
553896
- rebuild for new perl
553896
553896
* Tue Dec 19 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.11-1
553896
- First build.