0.2615 bump
This commit is contained in:
parent
5253dc5979
commit
9adae5fd1e
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@
|
|||||||
/Math-BigRat-0.2612.tar.gz
|
/Math-BigRat-0.2612.tar.gz
|
||||||
/Math-BigRat-0.2613.tar.gz
|
/Math-BigRat-0.2613.tar.gz
|
||||||
/Math-BigRat-0.2614.tar.gz
|
/Math-BigRat-0.2614.tar.gz
|
||||||
|
/Math-BigRat-0.2615.tar.gz
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
Name: perl-Math-BigRat
|
Name: perl-Math-BigRat
|
||||||
# Keep 4-digit version to compete with perl.spec
|
# Keep 4-digit version to compete with perl.spec
|
||||||
Version: 0.2614
|
Version: 0.2615
|
||||||
Release: 477%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Arbitrary big rational numbers
|
Summary: Arbitrary big rational numbers
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/Math-BigRat
|
URL: https://metacpan.org/release/Math-BigRat
|
||||||
Source0: https://cpan.metacpan.org/authors/id/P/PJ/PJACKLAM/Math-BigRat-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/P/PJ/PJACKLAM/Math-BigRat-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: findutils
|
BuildRequires: coreutils
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl-interpreter
|
BuildRequires: perl-interpreter
|
||||||
@ -17,26 +17,26 @@ BuildRequires: perl(warnings)
|
|||||||
# Run-time:
|
# Run-time:
|
||||||
BuildRequires: perl(:VERSION) >= 5.6.0
|
BuildRequires: perl(:VERSION) >= 5.6.0
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(Math::BigFloat)
|
BuildRequires: perl(Math::BigFloat) >= 1.999718
|
||||||
BuildRequires: perl(Math::BigInt) >= 1.999718
|
BuildRequires: perl(Math::BigInt) >= 1.999816
|
||||||
BuildRequires: perl(overload)
|
BuildRequires: perl(overload)
|
||||||
# Tests:
|
# Tests:
|
||||||
BuildRequires: perl(Exporter)
|
BuildRequires: perl(Exporter)
|
||||||
BuildRequires: perl(lib)
|
BuildRequires: perl(lib)
|
||||||
# Math::Complex not used
|
|
||||||
# Scalar::Util not used
|
|
||||||
# Test::CPAN::Changes not used
|
|
||||||
BuildRequires: perl(Test::More) >= 0.88
|
BuildRequires: perl(Test::More) >= 0.88
|
||||||
# Test::Version not used
|
# Optional author/release tests:
|
||||||
# Optional tests:
|
# Math::Complex not used
|
||||||
# Module::Signature not used and not helpful
|
# Module::Signature not used and not helpful
|
||||||
# Pod::Coverage 0.18 not used
|
# Pod::Coverage 0.18 not used
|
||||||
|
# Scalar::Util not used
|
||||||
# Socket not used
|
# Socket not used
|
||||||
|
# Test::CPAN::Changes not used
|
||||||
# Test::Pod 1.22 not used
|
# Test::Pod 1.22 not used
|
||||||
# Test::Pod::Coverage 1.08 not used
|
# Test::Pod::Coverage 1.08 not used
|
||||||
# Test::Portability::Files not used
|
# Test::Portability::Files not used
|
||||||
|
# Test::Version not used
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
Requires: perl(Math::BigInt) >= 1.999718
|
Requires: perl(Math::BigInt) >= 1.999816
|
||||||
Conflicts: perl < 4:5.22.0-348
|
Conflicts: perl < 4:5.22.0-348
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -47,15 +47,15 @@ support for arbitrary big rational numbers.
|
|||||||
%setup -q -n Math-BigRat-%{version}
|
%setup -q -n Math-BigRat-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||||
make %{?_smp_mflags}
|
%{make_build}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
%{make_install}
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
%{_fixperms} %{buildroot}/*
|
||||||
|
|
||||||
%check
|
%check
|
||||||
unset RELEASE_TESTING
|
unset AUTHOR_TESTING RELEASE_TESTING TEST_SIGNATURE
|
||||||
make test
|
make test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -65,6 +65,9 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jul 12 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.2615-1
|
||||||
|
- 0.2615 bump
|
||||||
|
|
||||||
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.2614-477
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 0.2614-477
|
||||||
- Increase release to favour standalone package
|
- Increase release to favour standalone package
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (Math-BigRat-0.2614.tar.gz) = f9bad3be3cea31fb795d156a16cd55b3a828215f5538b0f9918b2f9540de01d98c9831614687310da646d015b68e2eb144a5279f990cfc5982f3f1ff11758a2f
|
SHA512 (Math-BigRat-0.2615.tar.gz) = da87a2f80410db450f8512153fda42a05b47eda66deaa66d8f7a76e8828eee2a12fc516f19e845b82884befa2bf72c1f3c03fe017e071a1fb4978661142c5d4c
|
||||||
|
Loading…
Reference in New Issue
Block a user