source: projects/specs/trunk/p/perl-IO-stringy/perl-IO-stringy-vl.spec @ 5861

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