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

Revision 8709, 3.0 KB checked in by tomop, 10 years ago (diff)

updated perl modules.

Line 
1Summary:        I/O on in-core objects like strings and arrays with Perl
2Name:           perl-IO-stringy
3Version:        2.110
4Release:        3%{_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
12#BuildRequires:  perl(Carp)
13#BuildRequires:  perl(Exporter)
14#BuildRequires:  perl(ExtUtils::MakeMaker)
15#BuildRequires:  perl(FileHandle)
16#BuildRequires:  perl(IO::File)
17#BuildRequires:  perl(IO::Handle)
18#BuildRequires:  perl(IO::Scalar)
19#BuildRequires:  perl(IO::ScalarArray)
20#BuildRequires:  perl(IO::WrapTie)
21#BuildRequires:  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* Tue Jul 1 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.110-3
78- rebuilt with perl-5.16.3.
79
80* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.110-2
81- rebuilt with perl-5.12.3
82- spec revamp
83
84* Thu May  1 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.110-1
85- built with perl-5.10.0.
86
87* Sat Feb 17 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.110-0vl2
88- changed Group to Development/Libraries
89
90* Sun Sep 11 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.110-0vl1
91- updated to 2.110
92- build with perl-5.8.6
93
94* Wed Apr 30 2003 IWAI Masaharu <iwai@alib.jp> 2.108-0vl2
95- build with perl-5.8.0
96
97* Sat Nov  2 2002 IWAI Masaharu <iwai@alib.jp> 2.108-0vl1
98- first build for Vine Linux
99
Note: See TracBrowser for help on using the repository browser.