perl-Pod-Spell-vl.spec 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. Name: perl-Pod-Spell
  2. Version: 1.20
  3. Release: 1%{?_dist_release}
  4. Summary: A formatter for spellchecking Pod
  5. Group: Development/Libraries
  6. License: GPL+ or Artistic
  7. URL: http://search.cpan.org/dist/Pod-Spell/
  8. Source0: http://www.cpan.org/authors/id/S/SB/SBURKE/Pod-Spell-%{version}.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}--root
  10. BuildArch: noarch
  11. BuildRequires: perl(ExtUtils::MakeMaker)
  12. BuildRequires: perl(Class::Tiny)
  13. BuildRequires: perl(File::ShareDir)
  14. BuildRequires: perl(File::ShareDir::Install)
  15. BuildRequires: perl(Lingua::EN::Inflect)
  16. BuildRequires: perl(Path::Tiny)
  17. BuildRequires: perl(Pod::Escapes)
  18. BuildRequires: perl(Test::Deep)
  19. Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  20. Vendor: Project Vine
  21. Distribution: Vine Linux
  22. Packager: shaolin
  23. %description
  24. Pod::Spell is a Pod formatter whose output is good for spellchecking.
  25. Pod::Spell rather like Pod::Text, except that it doesn't put much
  26. effort into actual formatting, and it suppresses things that look like
  27. Perl symbols or Perl jargon (so that your spellchecking program won't
  28. complain about mystery words like "$thing" or "Foo::Bar" or "hashref").
  29. %prep
  30. %setup -q -n Pod-Spell-%{version}
  31. %build
  32. %{__perl} Makefile.PL INSTALLDIRS=vendor
  33. make %{?_smp_mflags}
  34. %install
  35. rm -rf $RPM_BUILD_ROOT
  36. make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
  37. find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
  38. find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
  39. chmod -R u+w $RPM_BUILD_ROOT/*
  40. %check
  41. make test
  42. %clean
  43. rm -rf $RPM_BUILD_ROOT
  44. %files
  45. %defattr(-,root,root,-)
  46. %doc ChangeLog README
  47. %{_bindir}/podspell
  48. %{perl_vendorlib}/Pod/
  49. %{perl_vendorlib}/auto/share/dist/Pod-Spell/wordlist
  50. %{_mandir}/man1/*
  51. %{_mandir}/man3/*.3pm*
  52. %changelog
  53. * Sun May 19 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.20-1
  54. - new upstream release.
  55. - rebuilt with perl-5.26.
  56. * Wed Nov 19 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.01-3
  57. - rebuilt with perl 5.16.3
  58. * Thu Mar 01 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.01-2
  59. - rebuild
  60. * Fri Feb 24 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.01-1
  61. - initial build for Vine Linux
  62. * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.01-12
  63. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  64. * Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.01-11
  65. - Perl mass rebuild
  66. * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.01-10
  67. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  68. * Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.01-9
  69. - 661697 rebuild for fixing problems with vendorach/lib
  70. * Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.01-8
  71. - Mass rebuild with perl-5.12.0
  72. * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.01-7
  73. - rebuild against perl 5.10.1
  74. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.01-6
  75. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  76. * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.01-5
  77. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  78. * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.01-4
  79. - Rebuild for perl 5.10 (again)
  80. * Sun Jan 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.01-3
  81. - rebuild for new perl
  82. * Tue Oct 16 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.01-2.1
  83. - correct license tag
  84. - add BR: perl(ExtUtils::MakeMaker)
  85. * Mon Dec 18 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.01-2
  86. - find: fixed arguments order.
  87. * Sun Dec 17 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.01-1
  88. - First build.