From affdd768028fdc4090c464ccefa361c24c9ae550 Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Nov 15 2012 16:10:38 +0000 Subject: import perl-IO-stringy-2.110-21.el7.src.rpm --- diff --git a/.perl-IO-stringy.metadata b/.perl-IO-stringy.metadata new file mode 100644 index 0000000..136b04f --- /dev/null +++ b/.perl-IO-stringy.metadata @@ -0,0 +1 @@ +3ef94404e51e3a6276ddddcce9ba7bbdd6b76a1f SOURCES/IO-stringy-2.110.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/perl-IO-stringy.spec b/SPECS/perl-IO-stringy.spec new file mode 100644 index 0000000..74e1fcd --- /dev/null +++ b/SPECS/perl-IO-stringy.spec @@ -0,0 +1,157 @@ +Summary: I/O on in-core objects like strings and arrays for Perl +Name: perl-IO-stringy +Version: 2.110 +Release: 21%{?dist} +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/IO-stringy/ +Source0: http://search.cpan.org/CPAN/authors/id/D/DS/DSKOLL/IO-stringy-%{version}.tar.gz +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) +BuildRequires: perl(Carp) +BuildRequires: perl(Exporter) +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(FileHandle) +BuildRequires: perl(IO::File) +BuildRequires: perl(IO::Handle) +BuildRequires: perl(lib) +BuildRequires: perl(Symbol) +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) + +%description +This toolkit primarily provides modules for performing both traditional +and object-oriented I/O) on things *other* than normal filehandles; in +particular, IO::Scalar, IO::ScalarArray, and IO::Lines. + +In the more-traditional IO::Handle front, we have IO::AtomicFile, which +may be used to painlessly create files that are updated atomically. + +And in the "this-may-prove-useful" corner, we have IO::Wrap, whose +exported wraphandle() function will clothe anything that's not a blessed +object in an IO::Handle-like wrapper... so you can just use OO syntax +and stop worrying about whether your function's caller handed you a +string, a globref, or a FileHandle. + +%prep +%setup -q -n IO-stringy-%{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 {} ';' +%{_fixperms} %{buildroot} + +%check +make test + +%clean +rm -rf %{buildroot} + +%files +%doc README COPYING examples +%{perl_vendorlib}/IO/ +%{_mandir}/man3/IO::AtomicFile.3pm* +%{_mandir}/man3/IO::InnerFile.3pm* +%{_mandir}/man3/IO::Lines.3pm* +%{_mandir}/man3/IO::Scalar.3pm* +%{_mandir}/man3/IO::ScalarArray.3pm* +%{_mandir}/man3/IO::Stringy.3pm* +%{_mandir}/man3/IO::Wrap.3pm* +%{_mandir}/man3/IO::WrapTie.3pm* + +%changelog +* Thu Nov 15 2012 Petr Šabata - 2.110-21 +- BuildRequire perl(lib) + +* Fri Jul 20 2012 Fedora Release Engineering - 2.110-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jun 11 2012 Petr Pisar - 2.110-19 +- Perl 5.16 rebuild + +* Fri Apr 6 2012 Paul Howarth 2.110-18 +- don't build-require modules that this package provides (problem stupidly + introduced in previous release) +- don't need to remove empty directories from buildroot +- drop %%defattr, redundant since rpm 4.4 + +* Thu Jan 12 2012 Paul Howarth 2.110-17 +- spec clean-up: + - nobody else likes macros for commands + - use DESTDIR rather than PERL_INSTALL_ROOT + - add buildreqs for core perl modules, which may be dual-lived + +* Fri Jun 17 2011 Marcela Mašláňová 2.110-16 +- perl mass rebuild + +* Tue Feb 8 2011 Fedora Release Engineering 2.110-15 +- rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Dec 20 2010 Marcela Maslanova 2.110-14 +- rebuild to fix problems with vendorarch/lib (#661697) + +* Sun May 2 2010 Marcela Maslanova 2.110-13 +- mass rebuild with perl-5.12.0 + +* Fri Jan 15 2010 Paul Howarth 2.110-12 +- spec cleanups (see also merge review #552564) + +* Sun Dec 20 2009 Robert Scheck 2.110-11 +- rebuilt against perl 5.10.1 + +* Sat Jul 25 2009 Fedora Release Engineering 2.110-10 +- rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Feb 26 2009 Fedora Release Engineering 2.110-9 +- rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 27 2008 Tom "spot" Callaway 2.110-8 +- rebuild for perl 5.10 (again) + +* Tue Jan 15 2008 Tom "spot" Callaway 2.110-7 +- rebuild for new perl + +* Mon Aug 13 2007 Paul Howarth 2.110-6 +- clarify license as GPL v1 or later, or Artistic (same as perl) + +* Wed Apr 18 2007 Paul Howarth 2.110-5 +- buildrequire perl(ExtUtils::MakeMaker) + +* Sun Sep 17 2006 Paul Howarth 2.110-4 +- add dist tag +- fix argument order in find command with -depth + +* Tue Aug 29 2006 Paul Howarth 2.110-3 +- use search.cpan.org download URL +- use full paths for all commands used in build +- assume rpm knows about %%check and %%{perl_vendorlib} +- cosmetic spec file changes + +* Fri Apr 7 2005 Michael Schwendt +- rebuilt + +* Tue Feb 15 2005 Ville Skyttä 2.110-1 +- 2.110 +- some specfile cleanups, bringing it closer to spectemplate-perl.spec + +* Wed Dec 31 2003 Ville Skyttä 2.109-0.fdr.1 +- update to 2.109 + +* Thu Oct 2 2003 Michael Schwendt 2.108-0.fdr.4 +- package is now using vendor directories + +* Sat Aug 16 2003 Dams 2.108-0.fdr.3 +- package is now noarch +- rm-ing perllocal.pod instead of excluding it + +* Fri Jul 11 2003 Dams 2.108-0.fdr.2 +- changed Group tag value +- "make test" in build section +- added missing directory + +* Sun Jun 15 2003 Dams 2.108-0.fdr.1 +- initial build