diff options
Diffstat (limited to 'python-gmpy.spec')
| -rw-r--r-- | python-gmpy.spec | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/python-gmpy.spec b/python-gmpy.spec new file mode 100644 index 0000000..c90cec8 --- /dev/null +++ b/python-gmpy.spec @@ -0,0 +1,108 @@ +%global _empty_manifest_terminate_build 0 +Name: python-gmpy +Version: 1.17 +Release: 1 +Summary: GMP or MPIR interface to Python 2.4+ and 3.x +License: UNKNOWN +URL: http://code.google.com/p/gmpy/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/26/37/2184c13cee81e1dbeaebbb13570195247e73ab2138a3db0c9d2c5347e372/gmpy-1.17.zip +BuildArch: noarch + + +%description +General MultiPrecision arithmetic for Python
+
+gmpy is a C-coded Python extension module that provides access to the GMP (or MPIR) multiple-precision arithmetic library.
+
+gmpy 1.17 is the final release of the 1.x series. No further updates are planned. All further development is occurring in the 2.x series, also known as gmpy2. Please see https://pypi.python.org/pypi/gmpy2/ for the latest 2.x releases.
+
+GMPY allows creation of multiprecision integer (mpz), float (mpf),and rational (mpq) numbers, conversion between them and to/from Python numbers/strings, arithmetic, bitwise, and some other higher-level mathematical operations.
+
+Version 1.17 only fixes compatibility with Python 3.x and other C extensions that use gmpy.
+
+Version 1.16 fixes a minor issue with the new Decimal type in Python 3.3.
+
+Version 1.15 was the last significant release. + +%package -n python3-gmpy +Summary: GMP or MPIR interface to Python 2.4+ and 3.x +Provides: python-gmpy +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-gmpy +General MultiPrecision arithmetic for Python
+
+gmpy is a C-coded Python extension module that provides access to the GMP (or MPIR) multiple-precision arithmetic library.
+
+gmpy 1.17 is the final release of the 1.x series. No further updates are planned. All further development is occurring in the 2.x series, also known as gmpy2. Please see https://pypi.python.org/pypi/gmpy2/ for the latest 2.x releases.
+
+GMPY allows creation of multiprecision integer (mpz), float (mpf),and rational (mpq) numbers, conversion between them and to/from Python numbers/strings, arithmetic, bitwise, and some other higher-level mathematical operations.
+
+Version 1.17 only fixes compatibility with Python 3.x and other C extensions that use gmpy.
+
+Version 1.16 fixes a minor issue with the new Decimal type in Python 3.3.
+
+Version 1.15 was the last significant release. + +%package help +Summary: Development documents and examples for gmpy +Provides: python3-gmpy-doc +%description help +General MultiPrecision arithmetic for Python
+
+gmpy is a C-coded Python extension module that provides access to the GMP (or MPIR) multiple-precision arithmetic library.
+
+gmpy 1.17 is the final release of the 1.x series. No further updates are planned. All further development is occurring in the 2.x series, also known as gmpy2. Please see https://pypi.python.org/pypi/gmpy2/ for the latest 2.x releases.
+
+GMPY allows creation of multiprecision integer (mpz), float (mpf),and rational (mpq) numbers, conversion between them and to/from Python numbers/strings, arithmetic, bitwise, and some other higher-level mathematical operations.
+
+Version 1.17 only fixes compatibility with Python 3.x and other C extensions that use gmpy.
+
+Version 1.16 fixes a minor issue with the new Decimal type in Python 3.3.
+
+Version 1.15 was the last significant release. + +%prep +%autosetup -n gmpy-1.17 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-gmpy -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.17-1 +- Package Spec generated |
