2010-05-11 23:38:32 +00:00
|
|
|
# norootforbuild
|
|
|
|
|
|
|
|
Name: perl-Data-Dump-Streamer
|
2010-06-12 23:29:26 +00:00
|
|
|
Version: 2.18
|
2010-05-11 23:38:32 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: Accurately serializes a Data Structure as Perl Code
|
|
|
|
Source: http://www.cpan.org/modules/by-module/Data/JJORE/Data-Dump-Streamer-%{version}.tar.gz
|
|
|
|
URL: http://search.cpan.org/dist/Data-Dump-Streamer/
|
|
|
|
Group: Development/Libraries/Perl
|
|
|
|
License: Perl License
|
|
|
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
|
|
|
Requires: perl
|
2010-06-12 23:29:26 +00:00
|
|
|
Requires: perl-B-Utils
|
2010-05-11 23:38:32 +00:00
|
|
|
BuildRequires: make perl
|
2010-06-12 23:29:26 +00:00
|
|
|
BuildRequires: perl-B-Utils
|
2010-05-11 23:38:32 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Given a list of scalars or reference variables, writes out their contents in
|
|
|
|
perl syntax. The references can also be objects. The contents of each variable
|
|
|
|
is output using the least number of Perl statements as convenient, usually only
|
|
|
|
one. Self-referential structures, closures, and objects are output correctly.
|
|
|
|
|
|
|
|
The return value can be evaled to get back an identical copy of the original
|
|
|
|
reference structure. In some cases this may require the use of utility subs
|
|
|
|
that Data::Dump::Streamer will optionally export.
|
|
|
|
|
|
|
|
This module is very similar in concept to the core module Data::Dumper, with
|
|
|
|
the major differences being that this module is designed to output to a stream
|
|
|
|
instead of constructing its output in memory (trading speed for memory), and
|
|
|
|
that the traversal over the data structure is effectively breadth first versus
|
|
|
|
the depth first traversal done by the others.
|
|
|
|
|
|
|
|
In fact the data structure is scanned twice, first in breadth first mode to
|
|
|
|
perform structural analysis, and then in depth first mode to actually produce
|
|
|
|
the output, but obeying the depth relationships of the first pass.
|
|
|
|
|
2010-06-12 23:29:26 +00:00
|
|
|
%debug_package
|
2010-05-11 23:38:32 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n "Data-Dump-Streamer-%{version}"
|
2010-06-12 23:29:26 +00:00
|
|
|
%__chmod 0644 Changes README
|
2010-05-11 23:38:32 +00:00
|
|
|
|
|
|
|
%build
|
2010-06-12 23:29:26 +00:00
|
|
|
%__perl ./Build.PL
|
|
|
|
./Build
|
2010-05-11 23:38:32 +00:00
|
|
|
|
|
|
|
%install
|
2010-06-12 23:29:26 +00:00
|
|
|
./Build pure_install --destdir "%{buildroot}" --installdirs vendor
|
|
|
|
|
|
|
|
find "%{buildroot}%{perl_vendorarch}/" -type f -name '*.pm' -exec %__chmod 0644 {} \;
|
|
|
|
|
|
|
|
%check
|
|
|
|
./Build test
|
2010-05-11 23:38:32 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
%__rm -rf "%{buildroot}"
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc Changes README
|
|
|
|
%dir %{perl_vendorarch}/Data
|
|
|
|
%dir %{perl_vendorarch}/Data/Dump
|
|
|
|
%{perl_vendorarch}/Data/Dump/Streamer
|
|
|
|
%{perl_vendorarch}/Data/Dump/Streamer.pm
|
|
|
|
%dir %{perl_vendorarch}/auto/Data
|
|
|
|
%dir %{perl_vendorarch}/auto/Data/Dump
|
|
|
|
%{perl_vendorarch}/auto/Data/Dump/Streamer
|
|
|
|
%doc %{perl_man3dir}/Data::Dump::Streamer.%{perl_man3ext}%{ext_man}
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
# vim: set sw=3 ts=3 noet:
|
|
|
|
# Local Variables:
|
|
|
|
# mode: rpm-spec
|
|
|
|
# tab-width: 3
|
|
|
|
# End:
|