Files
perl-Math-BigInt-FastCalc/perl-Math-BigInt-FastCalc.spec
Stephan Kulow cc0c20f177 2016-04-25 v1.42 pjacklam
* Sync test files with Math-BigInt-1.999719.
  
  2016-04-22 v1.41 pjacklam
    * Sync test files with Math-BigInt-1.999718.
  
  2016-01-03 v0.40 pjacklam
    * Sync test files with Math-BigInt-1.999714.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Math-BigInt-FastCalc?expand=0&rev=24
2016-06-02 04:50:26 +00:00

80 lines
2.5 KiB
RPMSpec

#
# spec file for package perl-Math-BigInt-FastCalc
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
Name: perl-Math-BigInt-FastCalc
Version: 0.42
Release: 0
%define cpan_name Math-BigInt-FastCalc
Summary: Math::BigInt::Calc with some XS for more speed
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Math-BigInt-FastCalc/
Source0: http://www.cpan.org/authors/id/P/PJ/PJACKLAM/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Math::BigInt) >= 1.999713
BuildRequires: perl(Math::BigInt::Calc) >= 1.999713
Requires: perl(Math::BigInt) >= 1.999713
Requires: perl(Math::BigInt::Calc) >= 1.999713
%{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
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';
Note that from Math::BigInt v1.76 onwards, FastCalc will be loaded
automatically, if possible.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc CHANGES CREDITS README TODO
%changelog