1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- Name: perl-Mixin-Linewise
- Version: 0.106
- Release: 1%{?_dist_release}
- Summary: Write your linewise code for handles; this does the rest
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Mixin-Linewise/
- Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Mixin-Linewise-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildArch: noarch
- BuildRequires: perl >= 1:5.6.0
- BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30
- BuildRequires: perl(IO::File)
- BuildRequires: perl(PerlIO::utf8_strict)
- BuildRequires: perl(Sub::Exporter) >= 0.9
- BuildRequires: perl(Test::More) >= 0.96
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- %{?perl_default_filter}
- %description
- It's boring to deal with opening files for IO, converting strings to handle-
- like objects, and all that. With Mixin::Linewise::Readers and
- Mixin::Linewise::Writers, you can just write a method to handle handles,
- and methods for handling strings and filenames are added for you.
- %prep
- %setup -q -n Mixin-Linewise-%{version}
- %build
- %{__perl} Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make pure_install DESTDIR=%{buildroot}
- find %{buildroot} -type f -name .packlist -exec rm -f {} \;
- find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} %{buildroot}/*
- %check
- make test
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc Changes LICENSE README
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Sun Dec 7 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.106-1
- - updated to 0.106
- - added BR: perl(PerlIO::utf8_strict)
- - built with perl 5.16.3
- * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.003-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.003-6
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Wed Jun 29 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.003-5
- - Perl mass rebuild
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.003-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Mon Dec 20 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.003-3
- - 661697 rebuild for fixing problems with vendorach/lib
- * Mon May 03 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.003-2
- - Mass rebuild with perl-5.12.0
- * Sat Mar 13 2010 Iain Arnell <iarnell@gmail.com> 0.003-1
- - update to latest upstream version
- - use perl_default_filter and DESTDIR
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.002-3
- - rebuild against perl 5.10.1
- * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.002-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Sun Apr 19 2009 Iain Arnell 0.002-1
- - Specfile autogenerated by cpanspec 1.77.
|