forked from pool/python-future
* Backport fix for bpo-38804 (c91d70b) * Fix bug in fix_print.py fixer (dffc579) * Fix bug in fix_raise.py fixer (3401099) * Fix newint bool in py3 (fe645ba) * Fix bug in super() with metaclasses (6e27aac) * docs: fix simple typo, reqest -> request (974eb1f) * Correct eq (c780bf5) * Pass if lint fails (2abe00d) * fix order (f96a219) * Add flake8 to image (046ff18) * Make lint.sh executable (58cc984) * Add docker push to optimize CI (01e8440) * Build System (42b3025) * Add docs build status badge to README.md (3f40bd7) * Use same docs requirements in tox (18ecc5a) * Add docs/requirements.txt (5f9893f) * Add PY37_PLUS, PY38_PLUS, and PY39_PLUS (bee0247) * fix 2.6 test, better comment (ddedcb9) * fix 2.6 test (3f1ff7e) * remove nan test (4dbded1) * include list test values (e3f1a12) * fix other python2 test issues (c051026) * fix missing subTest (f006cad) * import from old imp library on older python versions (fc84fa8) * replace fstrings with format for python 3.4,3.5 (4a687ea) * minor style/spelling fixes (8302d8c) * improve cmp function, add unittest (0d95a40) * Pin typing==3.7.4.1 for Python 3.3 compatiblity (1a48f1b) * Fix various py26 unit test failures (9ca5a14) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-future?expand=0&rev=35
95 lines
3.1 KiB
RPMSpec
95 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package python-future
|
|
#
|
|
# Copyright (c) 2023 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/
|
|
#
|
|
|
|
|
|
Name: python-future
|
|
Version: 0.18.3
|
|
Release: 0
|
|
Summary: Single-source support for Python 3 and 2
|
|
# See https://github.com/PythonCharmers/python-future/issues/242 for PSF licensing
|
|
License: MIT AND Python-2.0
|
|
URL: https://python-future.org
|
|
Source0: https://files.pythonhosted.org/packages/source/f/future/future-%{version}.tar.gz
|
|
Source100: python-future-rpmlintrc
|
|
# PATCH-FIX-UPSTREAM python38-pow.patch gh#PythonCharmers/python-future#474 mcepl@suse.com
|
|
Patch0: python38-pow.patch
|
|
# UPSTREAM ISSUE gh#PythonCharmers/python-future#508
|
|
Patch1: future-correct-mimetype.patch
|
|
# PATCH-FIX-UPSTREAM python39-build.patch gh#PythonCharmers/python-future#578 mcepl@suse.com
|
|
# Overcome incompatibilites with python 3.9
|
|
Patch2: python39-build.patch
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
%if 0%{suse_version} >= 1550
|
|
BuildRequires: %{python_module dbm}
|
|
%else
|
|
BuildRequires: python3-dbm
|
|
%endif
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Future is a compatibility layer between Python 2 and Python 3.
|
|
It allows you to use a single Python 3.x-compatible codebase to
|
|
support both Python 2 and Python 3.
|
|
|
|
%prep
|
|
%setup -q -n future-%{version}
|
|
%autopatch -p1
|
|
sed -i -e '/^#!\//, 1d' src/future/backports/test/pystone.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
|
|
%python_clone -a %{buildroot}%{_bindir}/futurize
|
|
%python_clone -a %{buildroot}%{_bindir}/pasteurize
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%post
|
|
%{python_install_alternative futurize pasteurize}
|
|
|
|
%postun
|
|
%python_uninstall_alternative futurize
|
|
|
|
%check
|
|
# test_moves_urllib_request_http or test_urllib_request_http require internet
|
|
# test_geturl or test_main fail only on Leap 42.3 and SLE 12 SP4
|
|
%{python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python -m pytest \
|
|
-k 'not (test_moves_urllib_request_http or test_urllib_request_http or test_geturl or test_main)'
|
|
}
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE.txt
|
|
%python_alternative %{_bindir}/futurize
|
|
%python_alternative %{_bindir}/pasteurize
|
|
%{python_sitelib}/future-%{version}*-info
|
|
%{python_sitelib}/future
|
|
%{python_sitelib}/libfuturize
|
|
%{python_sitelib}/libpasteurize
|
|
%{python_sitelib}/past
|
|
|
|
%changelog
|