Files
perl-Locale-Maketext-Fuzzy/perl-Locale-Maketext-Fuzzy.spec

79 lines
2.4 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package perl-Locale-Maketext-Fuzzy
#
# 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 Locale-Maketext-Fuzzy
Name: perl-Locale-Maketext-Fuzzy
Version: 0.110.0
Release: 0
# 0.11 -> normalize -> 0.110.0
%define cpan_version 0.11
License: SUSE-Public-Domain
Summary: Maketext from already interpolated strings
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/A/AU/AUDREYT/%{cpan_name}-%{cpan_version}.tar.gz
2025-08-12 18:15:05 +02:00
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
Provides: perl(Locale::Maketext::Fuzzy) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
This module is a subclass of 'Locale::Maketext', with additional support
for localizing messages that already contains interpolated variables.
This is most useful when the messages are returned by external sources --
for example, to match 'dir: command not found' against '[_1]: command not
found'.
Of course, this module is also useful if you're simply too lazy to use the
$lh->maketext("[quant,_1,file,files] deleted.", $count);
syntax, but wish to write
$lh->maketext_fuzzy("$count files deleted");
instead, and have the correct plural form figured out automatically.
If 'maketext_fuzzy' seems too long to type for you, this module also
provides a 'override_maketext' method to turn _all_ 'maketext' calls into
'maketext_fuzzy' calls.
%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 README.mkdn
%changelog