2009-12-26 18:19:04 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-Locale-Maketext-Fuzzy
|
|
|
|
#
|
2024-07-24 19:32:14 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2011-11-18 08:33:55 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2024-07-24 19:32:14 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-11-18 08:33:55 +00:00
|
|
|
#
|
2009-12-26 18:19:04 +00:00
|
|
|
|
2011-11-18 08:33:55 +00:00
|
|
|
|
2024-07-24 19:32:14 +00:00
|
|
|
%define cpan_name Locale-Maketext-Fuzzy
|
2011-11-18 08:33:55 +00:00
|
|
|
Name: perl-Locale-Maketext-Fuzzy
|
2024-07-24 19:32:14 +00:00
|
|
|
Version: 0.110.0
|
2013-09-26 19:34:29 +00:00
|
|
|
Release: 0
|
2024-07-24 19:32:14 +00:00
|
|
|
# 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
|
2024-07-24 19:32:14 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: perl
|
2011-11-18 08:33:55 +00:00
|
|
|
BuildRequires: perl-macros
|
2024-07-24 19:32:14 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
|
|
|
|
Provides: perl(Locale::Maketext::Fuzzy) = %{version}
|
|
|
|
%undefine __perllib_provides
|
2010-12-03 14:40:50 +00:00
|
|
|
%{perl_requires}
|
2009-12-26 18:19:04 +00:00
|
|
|
|
|
|
|
%description
|
2024-07-24 19:32:14 +00:00
|
|
|
This module is a subclass of 'Locale::Maketext', with additional support
|
|
|
|
for localizing messages that already contains interpolated variables.
|
2009-12-26 18:19:04 +00:00
|
|
|
|
2024-07-24 19:32:14 +00:00
|
|
|
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.
|
2009-12-26 18:19:04 +00:00
|
|
|
|
|
|
|
%prep
|
2024-07-24 19:32:14 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
2009-12-26 18:19:04 +00:00
|
|
|
|
|
|
|
%build
|
2024-07-24 19:32:14 +00:00
|
|
|
PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%make_build
|
2009-12-26 18:19:04 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
2024-07-24 19:32:14 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%doc Changes README README.mkdn
|
2009-12-26 18:19:04 +00:00
|
|
|
|
2011-11-18 08:33:55 +00:00
|
|
|
%changelog
|