178 lines
6.1 KiB
RPMSpec
178 lines
6.1 KiB
RPMSpec
%global srcname gmpy2
|
|
%global prerelease b1
|
|
|
|
Name: python-%{srcname}
|
|
Version: 2.1.0
|
|
Release: 0.10%{?prerelease:.%{prerelease}}%{?dist}
|
|
Summary: Python interface to GMP, MPFR, and MPC
|
|
|
|
License: LGPLv3+
|
|
URL: https://pypi.python.org/pypi/gmpy2
|
|
Source0: https://github.com/aleaxit/gmpy/archive/%{srcname}-%{version}%{?prerelease}.tar.gz
|
|
# Fix qdiv: https://github.com/aleaxit/gmpy/issues/242
|
|
Patch0: %{name}-qdiv.patch
|
|
# Eliminate copies; see
|
|
# https://github.com/aleaxit/gmpy/commit/17f9d1585d93eaa68ae5438e6de42e694870e862
|
|
Patch1: %{name}-no-copy.patch
|
|
# Fix running tests on 32-bit systems; see
|
|
# https://github.com/aleaxit/gmpy/issues/244
|
|
Patch2: %{name}-test.patch
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: gmp-devel
|
|
BuildRequires: libmpc-devel
|
|
BuildRequires: mpfr-devel
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3dist(cython)
|
|
BuildRequires: python3dist(setuptools)
|
|
BuildRequires: python3dist(sphinx)
|
|
|
|
%global common_desc \
|
|
This package contains a C-coded Python extension module that supports \
|
|
multiple-precision arithmetic. It is the successor to the original \
|
|
gmpy module. The gmpy module only supported the GMP multiple-precision \
|
|
library. Gmpy2 adds support for the MPFR (correctly rounded real \
|
|
floating-point arithmetic) and MPC (correctly rounded complex \
|
|
floating-point arithmetic) libraries. It also updates the API and \
|
|
naming conventions to be more consistent and support the additional \
|
|
functionality.
|
|
|
|
%description
|
|
%{common_desc}
|
|
|
|
%package -n python3-%{srcname}
|
|
Summary: Python 3 interface to GMP, MPFR, and MPC
|
|
|
|
Provides: bundled(jquery)
|
|
%{?python_provide:%python_provide python3-%{srcname}}
|
|
|
|
# This can be removed when F29 reaches EOL
|
|
Obsoletes: python2-%{srcname} < 2.1.0-0.6.a4
|
|
Provides: python2-%{srcname} = %{version}-%{release}
|
|
|
|
%description -n python3-%{srcname}
|
|
%{common_desc}
|
|
|
|
%prep
|
|
%autosetup -p0 -n gmpy-%{srcname}-%{version}%{?prerelease}
|
|
|
|
# Fix file encodings. First the easy one.
|
|
iconv -f ISO8859-1 -t UTF-8 src/gmpy2.c > src/gmpy2.c.utf8
|
|
touch -r src/gmpy2.c src/gmpy2.c.utf8
|
|
mv -f src/gmpy2.c.utf8 src/gmpy2.c
|
|
|
|
# Now the hard one. What weird encoding is this, anyway?
|
|
sed -i.orig 's/i\xad/\xc3\xad/' src/mpz_pylong.c
|
|
touch -r src/mpz_pylong.c.orig src/mpz_pylong.c
|
|
rm src/mpz_pylong.c.orig
|
|
|
|
# Update the sphinx theme name
|
|
sed -i "s/'default'/'classic'/" docs/conf.py
|
|
|
|
%build
|
|
%py3_build
|
|
make -C docs html
|
|
|
|
%install
|
|
%py3_install
|
|
|
|
%check
|
|
PYTHONPATH=%{buildroot}%{python3_sitearch} %{__python3} test/runtests.py
|
|
|
|
%files -n python3-%{srcname}
|
|
%license COPYING COPYING.LESSER
|
|
%doc docs/_build/html/*
|
|
%{python3_sitearch}/%{srcname}*
|
|
|
|
%changelog
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.1.0-0.10.b1
|
|
- Rebuilt for Python 3.8
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-0.9.b1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
* Thu Jun 27 2019 Jerry James <loganjerry@gmail.com> - 2.1.0-0.8.b1
|
|
- Add -qdiv, -no-copy, and -test patches to fix the build
|
|
|
|
* Wed May 22 2019 Jerry James <loganjerry@gmail.com> - 2.1.0-0.8.b1
|
|
- Update to beta 1
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-0.7.a4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
* Thu Nov 15 2018 Jerry James <loganjerry@gmail.com> - 2.1.0-0.6.a4
|
|
- Update to alpha 4
|
|
- Drop python2 subpackage (bz 1647371)
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-0.5.a2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
* Tue Jun 26 2018 Jerry James <loganjerry@gmail.com> - 2.1.0-0.4.a2
|
|
- Take 2 on the -addzero patch
|
|
|
|
* Tue Jun 26 2018 Jerry James <loganjerry@gmail.com> - 2.1.0-0.3.a2
|
|
- Add -addzero patch to fix bogus results in sympy
|
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.1.0-0.2.a2
|
|
- Rebuilt for Python 3.7
|
|
|
|
* Sat Jun 2 2018 Jerry James <loganjerry@gmail.com> - 2.1.0-0.1.a2
|
|
- Update to alpha version for sagemath 8.2
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-7
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-6
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2.0.8-3
|
|
- Rebuild for Python 3.6
|
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.8-2
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
* Tue Jun 28 2016 Jerry James <loganjerry@gmail.com> - 2.0.8-1
|
|
- New upstream release
|
|
- Drop upstreamed -decref patch
|
|
|
|
* Fri Mar 25 2016 Jerry James <loganjerry@gmail.com> - 2.0.7-4
|
|
- Add -decref patch
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.7-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Mon Feb 1 2016 Jerry James <loganjerry@gmail.com> - 2.0.7-2
|
|
- Comply with latest python packaging guidelines
|
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.7-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
* Sat Aug 22 2015 Jerry James <loganjerry@gmail.com> - 2.0.7-1
|
|
- New upstream release
|
|
|
|
* Mon Jul 6 2015 Jerry James <loganjerry@gmail.com> - 2.0.6-1
|
|
- New upstream release
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.5-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Mon Jan 19 2015 Jerry James <loganjerry@gmail.com> - 2.0.5-1
|
|
- New upstream release
|
|
- Drop patch for 32-bit systems, fixed upstream
|
|
|
|
* Mon Oct 13 2014 Jerry James <loganjerry@gmail.com> - 2.0.4-1
|
|
- New upstream release
|
|
|
|
* Fri Sep 12 2014 Jerry James <loganjerry@gmail.com> - 2.0.3-2
|
|
- BR python2-devel instead of python-devel
|
|
- Provide bundled(jquery)
|
|
|
|
* Fri Sep 5 2014 Jerry James <loganjerry@gmail.com> - 2.0.3-1
|
|
- Initial RPM
|