Files
perl-Math-BigInt-FastCalc/perl-Math-BigInt-FastCalc.spec
2025-08-12 18:15:18 +02:00

92 lines
3.0 KiB
RPMSpec

#
# spec file for package perl-Math-BigInt-FastCalc
#
# Copyright (c) 2025 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 Math-BigInt-FastCalc
Name: perl-Math-BigInt-FastCalc
Version: 0.5020
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Math::BigInt::Calc with some XS for more speed
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/P/PJ/PJACKLAM/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Carp) >= 1.22
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.58
BuildRequires: perl(Math::BigInt) >= 2.005001
BuildRequires: perl(Test::More) >= 0.82
Requires: perl(Carp) >= 1.22
Requires: perl(Math::BigInt) >= 2.005001
%{perl_requires}
# MANUAL BEGIN
%if 0%{?suse_version} <= 1320
BuildRequires: perl-Math-BigInt >= 1.999713
Requires: perl-Math-BigInt >= 1.999713
%endif
BuildRequires: perl(parent)
# MANUAL END
%description
Math::BigInt::FastCalc inherits from Math::BigInt::Calc.
Provides support for big integer calculations. Not intended to be used by
other modules. Other modules which sport the same functions can also be
used to support Math::BigInt, like Math::BigInt::GMP or Math::BigInt::Pari.
In order to allow for multiple big integer libraries, Math::BigInt was
rewritten to use library modules for core math routines. Any module which
follows the same API as this can be used instead by using the following:
use Math::BigInt lib => 'libname';
'libname' is either the long name ('Math::BigInt::Pari'), or only the short
version like 'Pari'. To use this library:
use Math::BigInt lib => 'FastCalc';
The default behaviour is to chose the best internal representation of big
integers, but the base length used in the internal representation can be
specified explicitly. Note that this must be done before Math::BigInt is
loaded. For example,
use Math::BigInt::FastCalc base_len => 3;
use Math::BigInt lib => 'FastCalc';
%prep
%autosetup -n %{cpan_name}-%{version} -p1
%build
PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc CHANGES CREDITS README README.md TODO
%license LICENSE
%changelog