perl-IO-stringy-vl.spec 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. Summary: I/O on in-core objects like strings and arrays with Perl
  2. Name: perl-IO-stringy
  3. Version: 2.111
  4. Release: 1%{_dist_release}
  5. License: GPL+ or Artistic
  6. Group: Development/Libraries
  7. Source0: http://search.cpan.org/CPAN/authors/id/E/ER/ERYQ/IO-stringy-%{version}.tar.gz
  8. URL: http://search.cpan.org/author/ERYQ/IO-stringy/
  9. BuildArch: noarch
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. #BuildRequires: perl(Carp)
  12. #BuildRequires: perl(Exporter)
  13. #BuildRequires: perl(ExtUtils::MakeMaker)
  14. #BuildRequires: perl(FileHandle)
  15. #BuildRequires: perl(IO::File)
  16. #BuildRequires: perl(IO::Handle)
  17. #BuildRequires: perl(IO::Scalar)
  18. #BuildRequires: perl(IO::ScalarArray)
  19. #BuildRequires: perl(IO::WrapTie)
  20. #BuildRequires: perl(Symbol)
  21. Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
  22. Vendor: Project Vine
  23. Distribution: Vine Linux
  24. %description
  25. his toolkit primarily provides modules for performing both traditional
  26. and object-oriented I/O) on things *other* than normal filehandles; in
  27. particular, IO::Scalar, IO::ScalarArray, and IO::Lines.
  28. In the more-traditional IO::Handle front, we have IO::AtomicFile, which
  29. may be used to painlessly create files that are updated atomically.
  30. And in the "this-may-prove-useful" corner, we have IO::Wrap, whose
  31. exported wraphandle() function will clothe anything that's not a blessed
  32. object in an IO::Handle-like wrapper... so you can just use OO syntax
  33. and stop worrying about whether your function's caller handed you a
  34. string, a globref, or a FileHandle.
  35. %prep
  36. %setup -q -n IO-stringy-%{version}
  37. %build
  38. CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL INSTALLDIRS=vendor
  39. make %{?_smp_mflags}
  40. %install
  41. rm -rf %{buildroot}
  42. make pure_install DESTDIR=%{buildroot}
  43. find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
  44. find %{buildroot} -depth -type d -exec rmdir {} ';' 2>/dev/null
  45. %{_fixperms} %{buildroot}
  46. %clean
  47. rm -rf %{buildroot}
  48. %check
  49. make test
  50. %files
  51. %defattr(-,root,root,-)
  52. %license COPYING
  53. %doc README examples contrib
  54. %{perl_vendorlib}/IO/
  55. %{_mandir}/man3/IO::AtomicFile.3pm*
  56. %{_mandir}/man3/IO::InnerFile.3pm*
  57. %{_mandir}/man3/IO::Lines.3pm*
  58. %{_mandir}/man3/IO::Scalar.3pm*
  59. %{_mandir}/man3/IO::ScalarArray.3pm*
  60. %{_mandir}/man3/IO::Stringy.3pm*
  61. %{_mandir}/man3/IO::Wrap.3pm*
  62. %{_mandir}/man3/IO::WrapTie.3pm*
  63. %changelog
  64. * Sun May 19 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.111-1
  65. - new upstream release.
  66. - rebuilt with perl-5.26.
  67. * Tue Jul 1 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.110-3
  68. - rebuilt with perl-5.16.3.
  69. * Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.110-2
  70. - rebuilt with perl-5.12.3
  71. - spec revamp
  72. * Thu May 1 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.110-1
  73. - built with perl-5.10.0.
  74. * Sat Feb 17 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.110-0vl2
  75. - changed Group to Development/Libraries
  76. * Sun Sep 11 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.110-0vl1
  77. - updated to 2.110
  78. - build with perl-5.8.6
  79. * Wed Apr 30 2003 IWAI Masaharu <iwai@alib.jp> 2.108-0vl2
  80. - build with perl-5.8.0
  81. * Sat Nov 2 2002 IWAI Masaharu <iwai@alib.jp> 2.108-0vl1
  82. - first build for Vine Linux