8
0
Files
perl-Data-Dump-Streamer/perl-Data-Dump-Streamer.spec

77 lines
2.4 KiB
RPMSpec
Raw Normal View History

# norootforbuild
Name: perl-Data-Dump-Streamer
Version: 2.22
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 = %{perl_version}
Requires: perl-B-Utils
BuildRequires: make perl
BuildRequires: perl-B-Utils
%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.
%debug_package
%prep
%setup -q -n "Data-Dump-Streamer-%{version}"
%__chmod 0644 Changes README
%build
%__perl ./Build.PL
./Build
%install
./Build pure_install --destdir "%{buildroot}" --installdirs vendor
find "%{buildroot}%{perl_vendorarch}/" -type f -name '*.pm' -exec %__chmod 0644 {} \;
%perl_process_packlist
%check
./Build test
%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: