forked from pool/perl-Data-Dump-Streamer
86 lines
3.1 KiB
RPMSpec
86 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package perl-Data-Dump-Streamer
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define cpan_name Data-Dump-Streamer
|
|
Name: perl-Data-Dump-Streamer
|
|
Version: 2.420.0
|
|
Release: 0
|
|
# 2.42 -> normalize -> 2.420.0
|
|
%define cpan_version 2.42
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Accurately serialize a data structure as Perl code
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/Y/YV/YVES/%{cpan_name}-%{cpan_version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
Source100: README.md
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(B::Utils)
|
|
BuildRequires: perl(ExtUtils::CBuilder)
|
|
BuildRequires: perl(ExtUtils::Depends)
|
|
BuildRequires: perl(Module::Build)
|
|
Requires: perl(B::Utils)
|
|
Provides: perl(Data::Dump::Streamer) = %{version}
|
|
Provides: perl(Data::Dump::Streamer::Deparser) = %{version}
|
|
%undefine __perllib_provides
|
|
Recommends: perl(Algorithm::Diff)
|
|
Recommends: perl(Compress::Zlib)
|
|
Recommends: perl(Cpanel::JSON::XS)
|
|
Recommends: perl(PadWalker) >= 0.990
|
|
%{perl_requires}
|
|
|
|
%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.
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
|
|
|
%build
|
|
perl Build.PL --installdirs=vendor optimize="%{optflags}"
|
|
./Build build --flags=%{?_smp_mflags}
|
|
|
|
%check
|
|
./Build test
|
|
|
|
%install
|
|
./Build install --destdir=%{buildroot} --create_packlist=0
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%doc Changes README.md
|
|
|
|
%changelog
|