2011-08-22 15:02:18 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-Number-Format
|
|
|
|
#
|
2023-06-01 15:22:54 +00:00
|
|
|
# Copyright (c) 2023 SUSE LLC
|
2013-01-15 19:12:34 +00:00
|
|
|
#
|
2011-08-22 15:02:18 +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.
|
|
|
|
|
2023-06-01 15:22:54 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2013-01-15 19:12:34 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2023-06-01 15:22:54 +00:00
|
|
|
%define cpan_name Number-Format
|
2011-08-22 15:02:18 +00:00
|
|
|
Name: perl-Number-Format
|
2023-06-01 15:22:54 +00:00
|
|
|
Version: 1.76
|
2013-01-15 19:12:34 +00:00
|
|
|
Release: 0
|
2023-06-01 15:22:54 +00:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
2011-08-22 15:02:18 +00:00
|
|
|
Summary: Perl extension for formatting numbers
|
2023-06-01 15:22:54 +00:00
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
2015-06-29 04:57:05 +00:00
|
|
|
Source1: cpanspec.yml
|
2013-04-22 09:17:21 +00:00
|
|
|
BuildArch: noarch
|
2013-01-15 19:12:34 +00:00
|
|
|
BuildRequires: perl
|
2010-12-03 14:45:10 +00:00
|
|
|
BuildRequires: perl-macros
|
2011-08-22 15:02:18 +00:00
|
|
|
%{perl_requires}
|
2008-12-30 10:37:26 +00:00
|
|
|
|
|
|
|
%description
|
2011-08-22 15:02:18 +00:00
|
|
|
These functions provide an easy means of formatting numbers in a manner
|
|
|
|
suitable for displaying to the user.
|
|
|
|
|
|
|
|
There are two ways to use this package. One is to declare an object of type
|
|
|
|
Number::Format, which you can think of as a formatting engine. The various
|
2013-04-22 09:17:21 +00:00
|
|
|
functions defined here are provided as object methods. The constructor
|
2015-06-29 04:57:05 +00:00
|
|
|
'new()' can be used to set the parameters of the formatting engine. Valid
|
|
|
|
parameters are:
|
|
|
|
|
|
|
|
THOUSANDS_SEP - character inserted between groups of 3 digits
|
|
|
|
DECIMAL_POINT - character separating integer and fractional parts
|
|
|
|
MON_THOUSANDS_SEP - like THOUSANDS_SEP, but used for format_price
|
|
|
|
MON_DECIMAL_POINT - like DECIMAL_POINT, but used for format_price
|
|
|
|
INT_CURR_SYMBOL - character(s) denoting currency (see format_price())
|
|
|
|
DECIMAL_DIGITS - number of digits to the right of dec point (def 2)
|
|
|
|
DECIMAL_FILL - boolean; whether to add zeroes to fill out decimal
|
|
|
|
NEG_FORMAT - format to display negative numbers (def ``-x'')
|
|
|
|
KILO_SUFFIX - suffix to add when format_bytes formats kilobytes (trad)
|
|
|
|
MEGA_SUFFIX - " " " " " " megabytes (trad)
|
|
|
|
GIGA_SUFFIX - " " " " " " gigabytes (trad)
|
|
|
|
KIBI_SUFFIX - suffix to add when format_bytes formats kibibytes (iec)
|
|
|
|
MEBI_SUFFIX - " " " " " " mebibytes (iec)
|
|
|
|
GIBI_SUFFIX - " " " " " " gibibytes (iec)
|
|
|
|
|
2008-12-30 10:37:26 +00:00
|
|
|
%prep
|
2023-06-01 15:22:54 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{version}
|
2008-12-30 10:37:26 +00:00
|
|
|
|
|
|
|
%build
|
2023-06-01 15:22:54 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%make_build
|
2008-12-30 10:37:26 +00:00
|
|
|
|
|
|
|
%check
|
2023-06-01 15:22:54 +00:00
|
|
|
make test
|
2008-12-30 10:37:26 +00:00
|
|
|
|
|
|
|
%install
|
2011-08-22 15:02:18 +00:00
|
|
|
%perl_make_install
|
2008-12-30 10:37:26 +00:00
|
|
|
%perl_process_packlist
|
2011-08-22 15:02:18 +00:00
|
|
|
%perl_gen_filelist
|
2008-12-30 10:37:26 +00:00
|
|
|
|
2011-08-22 15:02:18 +00:00
|
|
|
%files -f %{name}.files
|
2013-04-22 09:17:21 +00:00
|
|
|
%doc CHANGES README TODO
|
2008-12-30 10:37:26 +00:00
|
|
|
|
2011-08-22 15:02:18 +00:00
|
|
|
%changelog
|