Update to 3.7.0b4

This commit is contained in:
Miro Hrončok 2018-05-10 14:47:13 +02:00
commit 0c391afb69
5 changed files with 47 additions and 84 deletions

View file

@ -13,12 +13,12 @@ URL: https://www.python.org/
# Third beta
%global prerel b3
%global prerel b4
# WARNING When rebasing to a new Python version,
# remember to update the python3-docs package as well
Version: %{pybasever}.0
Release: 0.16.%{?prerel}%{?dist}
Release: 0.17.%{?prerel}%{?dist}
License: Python
@ -350,11 +350,12 @@ Patch274: 00274-fix-arch-names.patch
# and: https://src.fedoraproject.org/rpms/redhat-rpm-config/c/078af19
Patch291: 00291-setup-Link-ctypes-against-dl-explicitly.patch
# 00302 #
# Fix multiprocessing regression on newer glibcs
# See: https://bugzilla.redhat.com/show_bug.cgi?id=1569933
# and: https://bugs.python.org/issue33329
Patch302: 00302-fix-multiprocessing-regression-on-newer-glibcs.patch
# 00304 #
# Pass os.environ to new process created at test_posix::test_specify_environment
# Otherwise important variables such as LD_LIBRARY_PATH are not set and the
# child process might not work at all
# Proposed upstream: https://bugs.python.org/issue33455
Patch304: 00304-test-posix-pass-environ.patch
# (New patches go here ^^^)
#
@ -668,7 +669,7 @@ sed -r -i s/'_PIP_VERSION = "[0-9.]+"'/'_PIP_VERSION = "%{pip_version}"'/ Lib/en
%patch251 -p1
%patch274 -p1
%patch291 -p1
%patch302 -p1
%patch304 -p1
# Remove files that should be generated by the build
@ -1564,6 +1565,9 @@ CheckPython optimized
# ======================================================
%changelog
* Thu May 10 2018 Miro Hrončok <mhroncok@redhat.com> - 3.7.0-0.17.b4
- Update to 3.7.0b4
* Mon Apr 23 2018 Miro Hrončok <mhroncok@redhat.com> - 3.7.0-0.16.b3
- Fix multiprocessing regression on newer glibcs
- Enable test_multiprocessing_fork(server) and _spawn again