Files
perl-Text-Quoted/perl-Text-Quoted.spec
2025-08-12 18:18:06 +02:00

95 lines
2.7 KiB
RPMSpec

#
# spec file for package perl-Text-Quoted
#
# Copyright (c) 2024 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 Text-Quoted
Name: perl-Text-Quoted
Version: 2.100.0
Release: 0
# 2.10 -> normalize -> 2.100.0
%define cpan_version 2.10
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Extract the structure of a quoted mail message
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/B/BP/BPS/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.59
BuildRequires: perl(Text::Autoformat)
Requires: perl(Text::Autoformat)
Provides: perl(Text::Quoted) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
'Text::Quoted' examines the structure of some text which may contain
multiple different levels of quoting, and turns the text into a nested data
structure.
The structure is an array reference containing hash references for each
paragraph belonging to the same author. Each level of quoting recursively
adds another list reference. So for instance, this:
> foo
> # Bar
> baz
quux
turns into:
[
[
{ text => 'foo', quoter => '>', raw => '> foo' },
[
{ text => 'Bar', quoter => '> #', raw => '> # Bar' }
],
{ text => 'baz', quoter => '>', raw => '> baz' }
],
{ empty => 1 },
{ text => 'quux', quoter => '', raw => 'quux' }
];
This also tells you about what's in the hash references: 'raw' is the
paragraph of text as it appeared in the original input; 'text' is what it
looked like when we stripped off the quotation characters, and 'quoter' is
the quotation string.
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%build
PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes README
%changelog