2024-08-03 18:51:37 +00:00
committed by Git OBS Bridge
parent 4836249fad
commit 5e6e3783ae

View File

@@ -1,8 +1,7 @@
# #
# spec file for package perl-Text-WordDiff # spec file for package perl-Text-WordDiff
# #
# Copyright (c) 2021 SUSE LLC # Copyright (c) 2024 SUSE LLC
# Copyright (c) 2021 SUSE Software Solutions Germany GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -17,52 +16,53 @@
# #
%define cpan_name Text-WordDiff
Name: perl-Text-WordDiff Name: perl-Text-WordDiff
Version: 0.09 Version: 0.90.0
Release: 0 Release: 0
%define cpan_name Text-WordDiff # 0.09 -> normalize -> 0.90.0
Summary: Track changes between documents %define cpan_version 0.09
License: Artistic-1.0 OR GPL-1.0-or-later License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl Summary: Track changes between documents
URL: https://metacpan.org/release/%{cpan_name} URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/T/TI/TIMK/%{cpan_name}-%{version}.tar.gz Source0: https://cpan.metacpan.org/authors/id/T/TI/TIMK/%{cpan_name}-%{cpan_version}.tar.gz
BuildArch: noarch BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl BuildRequires: perl
BuildRequires: perl-macros BuildRequires: perl-macros
BuildRequires: perl(Algorithm::Diff) >= 1.19 BuildRequires: perl(Algorithm::Diff) >= 1.19
BuildRequires: perl(HTML::Entities) BuildRequires: perl(HTML::Entities)
BuildRequires: perl(Module::Build) >= 0.270100 BuildRequires: perl(Module::Build) >= 0.2701
Requires: perl(Algorithm::Diff) >= 1.19 Requires: perl(Algorithm::Diff) >= 1.19
Requires: perl(HTML::Entities) Requires: perl(HTML::Entities)
Provides: perl(Text::WordDiff) = %{version}
Provides: perl(Text::WordDiff::ANSIColor) = %{version}
Provides: perl(Text::WordDiff::Base)
Provides: perl(Text::WordDiff::HTML) = %{version}
Provides: perl(Text::WordDiff::HTMLTwoLines) = %{version}
%undefine __perllib_provides
Recommends: perl(Test::Pod) >= 1.41 Recommends: perl(Test::Pod) >= 1.41
%{perl_requires} %{perl_requires}
%description %description
This module is a variation on the lovely Text::Diff module. Rather than Track changes between documents
generating traditional line-oriented diffs, however, it generates word-oriented
diffs. This can be useful for tracking changes in narrative documents or
documents with very long lines. To diff source code, one is still best off
using Text::Diff. But if you want to see how a short story changed from one
version to the next, this module will do the job very nicely.
%prep %prep
%setup -q -n %{cpan_name}-%{version} %autosetup -n %{cpan_name}-%{cpan_version}
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build %build
perl Build.PL installdirs=vendor perl Build.PL --installdirs=vendor
./Build build flags=%{?_smp_mflags} ./Build build --flags=%{?_smp_mflags}
%check %check
./Build test ./Build test
%install %install
./Build install destdir=%{buildroot} create_packlist=0 ./Build install --destdir=%{buildroot} --create_packlist=0
%perl_gen_filelist %perl_gen_filelist
%files -f %{name}.files %files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README.md %doc Changes README.md
%license LICENSE %license LICENSE