123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- Name: perl-Text-Autoformat
- Version: 1.669006
- Release: 1%{?_dist_release}
- Summary: Automatic text wrapping and reformatting
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Text-Autoformat/
- Source0: http://www.cpan.org/authors/id/D/DC/DCONWAY/Text-Autoformat-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: perl(Module::Build)
- BuildRequires: perl(Test::More)
- BuildRequires: perl(Text::Reform) >= 1.11
- BuildRequires: perl(version)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- %if "%{_dist_release}" > "vl6"
- %global __provides_exclude ^perl\\((Hang|NullHang)\\)$
- %else
- %global provfilt /bin/sh -c "%{__perl_provides} | grep -Ev '^perl[(](Hang|NullHang)[)]$'"
- %define __perl_provides %{provfilt}
- %endif
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- Text::Autoformat provides intelligent formatting of plaintext without the
- need for any kind of embedded mark-up. The module recognizes Internet
- quoting conventions, a wide range of bulleting and number schemes, centered
- text, and block quotations, and reformats each appropriately. Other options
- allow the user to adjust inter-word and inter-paragraph spacing, justify
- text, and impose various capitalization schemes.
- The module also supplies a re-entrant, highly configurable replacement for
- the built-in Perl format() mechanism.
- %prep
- %setup -q -n Text-Autoformat-%{version}
- chmod a-x lib/Text/Autoformat.pm Changes README
- %build
- %{__perl} Build.PL installdirs=vendor
- ./Build
- %install
- rm -rf %{buildroot}
- ./Build install destdir=%{buildroot} create_packlist=0
- find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} %{buildroot}/*
- %check
- ./Build test
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc Changes README config.emacs config.vim
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Wed Nov 19 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.669006-1
- - updated to 1.669006
- - built with perl 5.16.3
- * Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.669002-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.669002-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.669002-3
- - Perl mass rebuild
- * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.669002-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Wed Dec 08 2010 Steven Pritchard <steve@kspei.com> 1.669002-1
- - Update to 1.669002.
- - BR version and Module::Build (and build with that).
- - Include config.emacs and config.vim in docs.
- * Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.14.0-7
- - Mass rebuild with perl-5.12.0
- * Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 1.14.0-6
- - rebuild against perl 5.10.1
- * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.0-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.0-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.14.0-3
- - Rebuild for perl 5.10 (again)
- * Wed Jan 23 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.14.0-2
- - add BR: Test::More
- * Sun Jan 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.14.0-1
- - rebuild for new perl
- - upstream changed license to GPL+ or Artistic
- * Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 1.13-5
- - Use fixperms macro instead of our own chmod incantation.
- - BR ExtUtils::MakeMaker.
- * Fri Sep 01 2006 Steven Pritchard <steve@kspei.com> 1.13-4
- - Rework spec to look more like current cpanspec output.
- * Mon Sep 05 2005 Steven Pritchard <steve@kspei.com> 1.13-3
- - Minor spec cleanup.
- - Add Artistic.
- * Sat Aug 20 2005 Steven Pritchard <steve@kspei.com> 1.13-2
- - Fix permissions (#166406).
- * Tue May 24 2005 Steven Pritchard <steve@kspei.com> 1.13-1
- - Update to 1.13 final.
- - Filter bogus perl(Hang) and perl(NullHang) auto-provides.
- * Tue May 10 2005 Steven Pritchard <steve@kspei.com> 1.13-0.3.beta
- - Drop Epoch and change Release for Fedora Extras.
- * Wed Feb 09 2005 Steven Pritchard <steve@kspei.com> 0:1.13-0.fdr.0.2.beta
- - Minor update to 0.13beta source, from
- http://rt.cpan.org/NoAuth/Bug.html?id=8018 (pointed out by jpo@di.uminho.pt)
- * Wed Jun 09 2004 Steven Pritchard <steve@kspei.com> 0:1.13-0.fdr.0.1.beta
- - Specfile regenerated.
- - Update to 0.13beta, which includes the upstream fix for a bug reported to
- the author.
|