You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4233 lines
147 KiB
4233 lines
147 KiB
|
|
# ====================================================== |
|
# Conditionals and other variables controlling the build |
|
# ====================================================== |
|
|
|
%{!?__python_ver:%global __python_ver EMPTY} |
|
#global __python_ver 27 |
|
%global unicode ucs4 |
|
|
|
%if "%{__python_ver}" != "EMPTY" |
|
%global main_python 0 |
|
%global python python%{__python_ver} |
|
%global tkinter tkinter%{__python_ver} |
|
%else |
|
%global main_python 1 |
|
%global python python |
|
%global tkinter tkinter |
|
%endif |
|
|
|
%global pybasever 2.7 |
|
%global pylibdir %{_libdir}/python%{pybasever} |
|
%global tools_dir %{pylibdir}/Tools |
|
%global demo_dir %{pylibdir}/Demo |
|
%global doc_tools_dir %{pylibdir}/Doc/tools |
|
%global dynload_dir %{pylibdir}/lib-dynload |
|
%global site_packages %{pylibdir}/site-packages |
|
|
|
# Python's configure script defines SOVERSION, and this is used in the Makefile |
|
# to determine INSTSONAME, the name of the libpython DSO: |
|
# LDLIBRARY='libpython$(VERSION).so' |
|
# INSTSONAME="$LDLIBRARY".$SOVERSION |
|
# We mirror this here in order to make it easier to add the -gdb.py hooks. |
|
# (if these get out of sync, the payload of the libs subpackage will fail |
|
# and halt the build) |
|
%global py_SOVERSION 1.0 |
|
%global py_INSTSONAME_optimized libpython%{pybasever}.so.%{py_SOVERSION} |
|
%global py_INSTSONAME_debug libpython%{pybasever}_d.so.%{py_SOVERSION} |
|
|
|
%global with_debug_build 1 |
|
|
|
# Disabled for now: |
|
%global with_huntrleaks 0 |
|
|
|
%global with_gdb_hooks 1 |
|
|
|
%global with_systemtap 1 |
|
|
|
# some arches don't have valgrind so we need to disable its support on them |
|
%ifarch %{ix86} x86_64 ppc %{power64} s390x aarch64 |
|
%global with_valgrind 1 |
|
%else |
|
%global with_valgrind 0 |
|
%endif |
|
|
|
# Having more than 28 cores on a PPC machine will lead to race conditions |
|
# during build so we have to set a limit. |
|
# See: https://bugzilla.redhat.com/show_bug.cgi?id=1568974 |
|
%ifarch ppc %{power64} && %_smp_ncpus_max > 28 |
|
%global _smp_ncpus_max 28 |
|
%endif |
|
|
|
%global with_gdbm 1 |
|
|
|
# Turn this to 0 to turn off the "check" phase: |
|
%global run_selftest_suite 1 |
|
|
|
# Some of the files below /usr/lib/pythonMAJOR.MINOR/test (e.g. bad_coding.py) |
|
# are deliberately invalid, leading to SyntaxError exceptions if they get |
|
# byte-compiled. |
|
# |
|
# These errors are ignored by the normal python build, and aren't normally a |
|
# problem in the buildroots since /usr/bin/python isn't present. |
|
# |
|
# However, for the case where we're rebuilding the python srpm on a machine |
|
# that does have python installed we need to set this to avoid |
|
# brp-python-bytecompile treating these as fatal errors: |
|
# |
|
%global _python_bytecompile_errors_terminate_build 0 |
|
|
|
# We need to get a newer configure generated out of configure.in for the following |
|
# patches: |
|
# patch 4 (CFLAGS) |
|
# patch 52 (valgrind) |
|
# patch 55 (systemtap) |
|
# patch 145 (linux2) |
|
# |
|
# For patch 55 (systemtap), we need to get a new header for configure to use |
|
# |
|
# configure.in requires autoconf-2.65, but the version in Fedora is currently |
|
# autoconf-2.66 |
|
# |
|
# For now, we'll generate a patch to the generated configure script and |
|
# pyconfig.h.in on a machine that has a local copy of autoconf 2.65 |
|
# |
|
# Instructions on obtaining such a copy can be seen at |
|
# http://bugs.python.org/issue7997 |
|
# |
|
# To make it easy to regenerate the patch, this specfile can be run in two |
|
# ways: |
|
# (i) regenerate_autotooling_patch 0 : the normal approach: prep the |
|
# source tree using a pre-generated patch to the "configure" script, and do a |
|
# full build |
|
# (ii) regenerate_autotooling_patch 1 : intended to be run on a developer's |
|
# workstation: prep the source tree without patching configure, then rerun a |
|
# local copy of autoconf-2.65, regenerate the patch, then exit, without doing |
|
# the rest of the build |
|
%global regenerate_autotooling_patch 0 |
|
|
|
|
|
# ================== |
|
# Top-level metadata |
|
# ================== |
|
Summary: An interpreted, interactive, object-oriented programming language |
|
Name: %{python} |
|
# Remember to also rebase python-docs when changing this: |
|
Version: 2.7.5 |
|
Release: 76%{?dist} |
|
License: Python |
|
Group: Development/Languages |
|
Requires: %{python}-libs%{?_isa} = %{version}-%{release} |
|
Provides: python-abi = %{pybasever} |
|
Provides: python(abi) = %{pybasever} |
|
|
|
|
|
# ======================= |
|
# Build-time requirements |
|
# ======================= |
|
|
|
# (keep this list alphabetized) |
|
|
|
BuildRequires: autoconf |
|
BuildRequires: bluez-libs-devel |
|
BuildRequires: bzip2 |
|
BuildRequires: bzip2-devel |
|
|
|
# expat 2.1.0 added the symbol XML_SetHashSalt without bumping SONAME. We use |
|
# it (in pyexpat) in order to enable the fix in Python-2.7.3 for CVE-2012-0876: |
|
BuildRequires: expat-devel >= 2.1.0 |
|
|
|
BuildRequires: findutils |
|
BuildRequires: gcc-c++ |
|
%if %{with_gdbm} |
|
BuildRequires: gdbm-devel |
|
%endif |
|
BuildRequires: glibc-devel |
|
BuildRequires: gmp-devel |
|
BuildRequires: libdb-devel |
|
BuildRequires: libffi-devel |
|
BuildRequires: libGL-devel |
|
BuildRequires: libX11-devel |
|
BuildRequires: ncurses-devel |
|
BuildRequires: openssl-devel |
|
BuildRequires: pkgconfig |
|
BuildRequires: readline-devel |
|
BuildRequires: sqlite-devel |
|
|
|
%if 0%{?with_systemtap} |
|
BuildRequires: systemtap-sdt-devel |
|
# (this introduces a circular dependency, in that systemtap-sdt-devel's |
|
# /usr/bin/dtrace is a python script) |
|
%global tapsetdir /usr/share/systemtap/tapset |
|
%endif # with_systemtap |
|
|
|
BuildRequires: tar |
|
BuildRequires: tcl-devel |
|
BuildRequires: tix-devel |
|
BuildRequires: tk-devel |
|
|
|
%if 0%{?with_valgrind} |
|
BuildRequires: valgrind-devel |
|
%endif |
|
|
|
BuildRequires: zlib-devel |
|
|
|
|
|
|
|
# ======================= |
|
# Source code and patches |
|
# ======================= |
|
|
|
Source: http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.xz |
|
|
|
# Work around bug 562906 until it's fixed in rpm-build by providing a fixed |
|
# version of pythondeps.sh: |
|
Source2: pythondeps.sh |
|
%global __python_requires %{SOURCE2} |
|
|
|
# Systemtap tapset to make it easier to use the systemtap static probes |
|
# (actually a template; LIBRARY_PATH will get fixed up during install) |
|
# Written by dmalcolm; not yet sent upstream |
|
Source3: libpython.stp |
|
|
|
|
|
# Example systemtap script using the tapset |
|
# Written by wcohen, mjw, dmalcolm; not yet sent upstream |
|
Source4: systemtap-example.stp |
|
|
|
# Another example systemtap script that uses the tapset |
|
# Written by dmalcolm; not yet sent upstream |
|
Source5: pyfuntop.stp |
|
|
|
# Supply various useful macros for building Python 2 components: |
|
Source6: macros.python2 |
|
|
|
Source7: pynche |
|
|
|
# Configuration file to change ssl verification settings globally |
|
# Downstream only see Patch224 |
|
Source8: cert-verification.cfg |
|
|
|
# configuration for systemd's tmpfiles |
|
Source9: python.conf |
|
|
|
# Supply various useful macros for building Python components: |
|
# NOTE: The %%python_provide macro is copied directly from Fedora/EPEL, but the |
|
# %%{python3_pkgversion} and %%{python3_other_pkgversion} macros used within it |
|
# are missing in RHEL. However, in their absence the lua code will run fine for |
|
# Python 2 packages and will print an error only if invoked for Python 3 |
|
# packages (unless the python-srpm-macros package from EPEL is installed). That |
|
# is a desirable behaviour as RHEL without EPEL does not support building |
|
# Python 3 packages. |
|
Source10: macros.python |
|
|
|
# Modules/Setup.dist is ultimately used by the "makesetup" script to construct |
|
# the Makefile and config.c |
|
# |
|
# Upstream leaves many things disabled by default, to try to make it easy as |
|
# possible to build the code on as many platforms as possible. |
|
# |
|
# TODO: many modules can also now be built by setup.py after the python binary |
|
# has been built; need to assess if we should instead build things there |
|
# |
|
# We patch it downstream as follows: |
|
# - various modules are built by default by upstream as static libraries; |
|
# we built them as shared libraries |
|
# - build the "readline" module (appears to also be handled by setup.py now) |
|
# - enable the build of the following modules: |
|
# - array arraymodule.c # array objects |
|
# - cmath cmathmodule.c # -lm # complex math library functions |
|
# - math mathmodule.c # -lm # math library functions, e.g. sin() |
|
# - _struct _struct.c # binary structure packing/unpacking |
|
# - time timemodule.c # -lm # time operations and variables |
|
# - operator operator.c # operator.add() and similar goodies |
|
# - _weakref _weakref.c # basic weak reference support |
|
# - _testcapi _testcapimodule.c # Python C API test module |
|
# - _random _randommodule.c # Random number generator |
|
# - _collections _collectionsmodule.c # Container types |
|
# - itertools itertoolsmodule.c |
|
# - strop stropmodule.c |
|
# - _functools _functoolsmodule.c |
|
# - _bisect _bisectmodule.c # Bisection algorithms |
|
# - unicodedata unicodedata.c # static Unicode character database |
|
# - _locale _localemodule.c |
|
# - fcntl fcntlmodule.c # fcntl(2) and ioctl(2) |
|
# - spwd spwdmodule.c # spwd(3) |
|
# - grp grpmodule.c # grp(3) |
|
# - select selectmodule.c # select(2); not on ancient System V |
|
# - mmap mmapmodule.c # Memory-mapped files |
|
# - _csv _csv.c # CSV file helper |
|
# - _socket socketmodule.c # Socket module helper for socket(2) |
|
# - _ssl _ssl.c |
|
# - crypt cryptmodule.c -lcrypt # crypt(3) |
|
# - nis nismodule.c -lnsl # Sun yellow pages -- not everywhere |
|
# - termios termios.c # Steen Lumholt's termios module |
|
# - resource resource.c # Jeremy Hylton's rlimit interface |
|
# - audioop audioop.c # Operations on audio samples |
|
# - imageop imageop.c # Operations on images |
|
# - _md5 md5module.c md5.c |
|
# - _sha shamodule.c |
|
# - _sha256 sha256module.c |
|
# - _sha512 sha512module.c |
|
# - linuxaudiodev linuxaudiodev.c |
|
# - timing timingmodule.c |
|
# - _tkinter _tkinter.c tkappinit.c |
|
# - dl dlmodule.c |
|
# - gdbm gdbmmodule.c |
|
# - _bsddb _bsddb.c |
|
# - binascii binascii.c |
|
# - parser parsermodule.c |
|
# - cStringIO cStringIO.c |
|
# - cPickle cPickle.c |
|
# - zlib zlibmodule.c |
|
# - _multibytecodec cjkcodecs/multibytecodec.c |
|
# - _codecs_cn cjkcodecs/_codecs_cn.c |
|
# - _codecs_hk cjkcodecs/_codecs_hk.c |
|
# - _codecs_iso2022 cjkcodecs/_codecs_iso2022.c |
|
# - _codecs_jp cjkcodecs/_codecs_jp.c |
|
# - _codecs_kr cjkcodecs/_codecs_kr.c |
|
# - _codecs_tw cjkcodecs/_codecs_tw.c |
|
Patch0: python-2.7.1-config.patch |
|
|
|
# Removes the "-g" option from "pydoc", for some reason; I believe |
|
# (dmalcolm 2010-01-29) that this was introduced in this change: |
|
# - fix pydoc (#68082) |
|
# in 2.2.1-12 as a response to the -g option needing TkInter installed |
|
# (Red Hat Linux 8) |
|
# Not upstream |
|
Patch1: 00001-pydocnogui.patch |
|
|
|
# Add $(CFLAGS) to the linker arguments when linking the "python" binary |
|
# since some architectures (sparc64) need this (rhbz:199373). |
|
# Not yet filed upstream |
|
Patch4: python-2.5-cflags.patch |
|
|
|
# Work around a bug in Python' gettext module relating to the "Plural-Forms" |
|
# header (rhbz:252136) |
|
# Related to upstream issues: |
|
# http://bugs.python.org/issue1448060 and http://bugs.python.org/issue1475523 |
|
# though the proposed upstream patches are, alas, different |
|
Patch6: python-2.5.1-plural-fix.patch |
|
|
|
# This patch was listed in the changelog as: |
|
# * Fri Sep 14 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-11 |
|
# - fix encoding of sqlite .py files to work around weird encoding problem |
|
# in Turkish (#283331) |
|
# A traceback attached to rhbz 244016 shows the problem most clearly: a |
|
# traceback on attempting to import the sqlite module, with: |
|
# "SyntaxError: encoding problem: with BOM (__init__.py, line 1)" |
|
# This seems to come from Parser/tokenizer.c:check_coding_spec |
|
# Our patch changes two source files within sqlite3, removing the |
|
# "coding: ISO-8859-1" specs and character E4 = U+00E4 = |
|
# LATIN SMALL LETTER A WITH DIAERESIS from in ghaering's surname. |
|
# |
|
# It may be that the conversion of "ISO-8859-1" to "iso-8859-1" is thwarted |
|
# by the implementation of "tolower" in the Turkish locale; see: |
|
# https://bugzilla.redhat.com/show_bug.cgi?id=191096#c9 |
|
# |
|
# TODO: Not yet sent upstream, and appears to me (dmalcolm 2010-01-29) that |
|
# it may be papering over a symptom |
|
Patch7: python-2.5.1-sqlite-encoding.patch |
|
|
|
# FIXME: Lib/ctypes/util.py posix implementation defines a function |
|
# _get_soname(f). Upstreams's implementation of this uses objdump to read the |
|
# SONAME from a library; we avoid this, apparently to minimize space |
|
# requirements on the live CD: |
|
# (rhbz:307221) |
|
Patch10: python-2.7rc1-binutils-no-dep.patch |
|
|
|
# Upstream as of Python 2.7.3: |
|
# Patch11: python-2.7rc1-codec-ascii-tolower.patch |
|
|
|
# Add various constants to the socketmodule (rhbz#436560): |
|
# TODO: these patches were added in 2.5.1-22 and 2.5.1-24 but appear not to |
|
# have been sent upstream yet: |
|
Patch13: python-2.7rc1-socketmodule-constants.patch |
|
Patch14: python-2.7rc1-socketmodule-constants2.patch |
|
|
|
# Remove an "-rpath $(LIBDIR)" argument from the linkage args in configure.in: |
|
# FIXME: is this for OSF, not Linux? |
|
Patch16: python-2.6-rpath.patch |
|
|
|
# Fixup distutils/unixccompiler.py to remove standard library path from rpath: |
|
# Adapted from Patch0 in ivazquez' python3000 specfile, removing usage of |
|
# super() as it's an old-style class |
|
Patch17: python-2.6.4-distutils-rpath.patch |
|
|
|
# 00055 # |
|
# Systemtap support: add statically-defined probe points |
|
# Patch based on upstream bug: http://bugs.python.org/issue4111 |
|
# fixed up by mjw and wcohen for 2.6.2, then fixed up by dmalcolm for 2.6.4 |
|
# then rewritten by mjw (attachment 390110 of rhbz 545179), then reformatted |
|
# for 2.7rc1 by dmalcolm: |
|
Patch55: 00055-systemtap.patch |
|
|
|
# Upstream as of Python 2.7.4 |
|
# Patch101: 00101-lib64-regex.patch |
|
|
|
# Only used when "%%{_lib}" == "lib64" |
|
# Fixup various paths throughout the build and in distutils from "lib" to "lib64", |
|
# and add the /usr/lib64/pythonMAJOR.MINOR/site-packages to sitedirs, in front of |
|
# /usr/lib/pythonMAJOR.MINOR/site-packages |
|
# Not upstream |
|
Patch102: python-2.7.3-lib64.patch |
|
|
|
# Python 2.7 split out much of the path-handling from distutils/sysconfig.py to |
|
# a new sysconfig.py (in r77704). |
|
# We need to make equivalent changes to that new file to ensure that the stdlib |
|
# and platform-specific code go to /usr/lib64 not /usr/lib, on 64-bit archs: |
|
Patch103: python-2.7-lib64-sysconfig.patch |
|
|
|
# 00104 # |
|
# Only used when "%%{_lib}" == "lib64" |
|
# Another lib64 fix, for distutils/tests/test_install.py; not upstream: |
|
Patch104: 00104-lib64-fix-for-test_install.patch |
|
|
|
# 00111 # |
|
# Patch the Makefile.pre.in so that the generated Makefile doesn't try to build |
|
# a libpythonMAJOR.MINOR.a (bug 550692): |
|
# Downstream only: not appropriate for upstream |
|
Patch111: 00111-no-static-lib.patch |
|
|
|
# 00112 # |
|
# Patch to support building both optimized vs debug stacks DSO ABIs, sharing |
|
# the same .py and .pyc files, using "_d.so" to signify a debug build of an |
|
# extension module. |
|
# |
|
# Based on Debian's patch for the same, |
|
# http://patch-tracker.debian.org/patch/series/view/python2.6/2.6.5-2/debug-build.dpatch |
|
# |
|
# (which was itself based on the upstream Windows build), but with some |
|
# changes: |
|
# |
|
# * Debian's patch to dynload_shlib.c looks for module_d.so, then module.so, |
|
# but this can potentially find a module built against the wrong DSO ABI. We |
|
# instead search for just module_d.so in a debug build |
|
# |
|
# * We remove this change from configure.in's build of the Makefile: |
|
# SO=$DEBUG_EXT.so |
|
# so that sysconfig.py:customize_compiler stays with shared_lib_extension='.so' |
|
# on debug builds, so that UnixCCompiler.find_library_file can find system |
|
# libraries (otherwise "make sharedlibs" fails to find system libraries, |
|
# erroneously looking e.g. for "libffi_d.so" rather than "libffi.so") |
|
# |
|
# * We change Lib/distutils/command/build_ext.py:build_ext.get_ext_filename |
|
# to add the _d there, when building an extension. This way, "make sharedlibs" |
|
# can build ctypes, by finding the sysmtem libffi.so (rather than failing to |
|
# find "libffi_d.so"), and builds the module as _ctypes_d.so |
|
# |
|
# * Similarly, update build_ext:get_libraries handling of Py_ENABLE_SHARED by |
|
# appending "_d" to the python library's name for the debug configuration |
|
# |
|
# * We modify Modules/makesetup to add the "_d" to the generated Makefile |
|
# rules for the various Modules/*.so targets |
|
# |
|
# This may introduce issues when building an extension that links directly |
|
# against another extension (e.g. users of NumPy?), but seems more robust when |
|
# searching for external libraries |
|
# |
|
# * We don't change Lib/distutils/command/build.py: build.build_purelib to |
|
# embed plat_specifier, leaving it as is, as pure python builds should be |
|
# unaffected by these differences (we'll be sharing the .py and .pyc files) |
|
# |
|
# * We introduce DEBUG_SUFFIX as well as DEBUG_EXT: |
|
# - DEBUG_EXT is used by ELF files (names and SONAMEs); it will be "_d" for |
|
# a debug build |
|
# - DEBUG_SUFFIX is used by filesystem paths; it will be "-debug" for a |
|
# debug build |
|
# |
|
# Both will be empty in an optimized build. "_d" contains characters that |
|
# are valid ELF metadata, but this leads to various ugly filesystem paths (such |
|
# as the include path), and DEBUG_SUFFIX allows these paths to have more natural |
|
# names. Changing this requires changes elsewhere in the distutils code. |
|
# |
|
# * We add DEBUG_SUFFIX to PYTHON in the Makefile, so that the two |
|
# configurations build parallel-installable binaries with different names |
|
# ("python-debug" vs "python"). |
|
# |
|
# * Similarly, we add DEBUG_SUFFIX within python-config and |
|
# python$(VERSION)-config, so that the two configuration get different paths |
|
# for these. |
|
# |
|
# See also patch 130 below |
|
# |
|
Patch112: python-2.7.3-debug-build.patch |
|
|
|
|
|
# 00113 # |
|
# Add configure-time support for the COUNT_ALLOCS and CALL_PROFILE options |
|
# described at http://svn.python.org/projects/python/trunk/Misc/SpecialBuilds.txt |
|
# so that if they are enabled, they will be in that build's pyconfig.h, so that |
|
# extension modules will reliably use them |
|
# Not yet sent upstream |
|
Patch113: 00113-more-configuration-flags.patch |
|
|
|
# 00114 # |
|
# Add flags for statvfs.f_flag to the constant list in posixmodule (i.e. "os") |
|
# (rhbz:553020); partially upstream as http://bugs.python.org/issue7647 |
|
# Not yet sent upstream |
|
Patch114: 00114-statvfs-f_flag-constants.patch |
|
|
|
# Upstream as of Python 2.7.3: |
|
# Patch115: make-pydoc-more-robust-001.patch |
|
|
|
# Upstream r79310 removed the "Modules" directory from sys.path when Python is |
|
# running from the build directory on POSIX to fix a unit test (issue #8205). |
|
# This seems to have broken the compileall.py done in "make install": it cannot |
|
# find shared library extension modules at this point in the build (sys.path |
|
# does not contain DESTDIR/usr/lib(64)/python-2.7/lib-dynload for some reason), |
|
# leading to the build failing with: |
|
# Traceback (most recent call last): |
|
# File "/home/david/rpmbuild/BUILDROOT/python-2.7-0.1.rc2.fc14.x86_64/usr/lib64/python2.7/compileall.py", line 17, in <module> |
|
# import struct |
|
# File "/home/david/rpmbuild/BUILDROOT/python-2.7-0.1.rc2.fc14.x86_64/usr/lib64/python2.7/struct.py", line 1, in <module> |
|
# from _struct import * |
|
# ImportError: No module named _struct |
|
# This patch adds the build Modules directory to build path. |
|
Patch121: 00121-add-Modules-to-build-path.patch |
|
|
|
# 00125 # |
|
# COUNT_ALLOCS is useful for debugging, but the upstream behaviour of always |
|
# emitting debug info to stdout on exit is too verbose and makes it harder to |
|
# use the debug build. Add a "PYTHONDUMPCOUNTS" environment variable which |
|
# must be set to enable the output on exit |
|
# Not yet sent upstream |
|
Patch125: 00125-less-verbose-COUNT_ALLOCS.patch |
|
|
|
# Upstream as of Python 2.7.5 |
|
# Patch126: fix-dbm_contains-on-64bit-bigendian.patch |
|
|
|
# Upstream as of Python 2.7.5 |
|
# Patch127: fix-test_structmember-on-64bit-bigendian.patch |
|
|
|
# 2.7.1 (in r84230) added a test to test_abc which fails if python is |
|
# configured with COUNT_ALLOCS, which is the case for our debug build |
|
# (the COUNT_ALLOCS instrumentation keeps "C" alive). |
|
# Not yet sent upstream |
|
Patch128: python-2.7.1-fix_test_abc_with_COUNT_ALLOCS.patch |
|
|
|
# 00130 # |
|
# Add "--extension-suffix" option to python-config and python-debug-config |
|
# (rhbz#732808) |
|
# |
|
# This is adapted from 3.2's PEP-3149 support. |
|
# |
|
# Fedora's debug build has some non-standard features (see also patch 112 |
|
# above), though largely shared with Debian/Ubuntu and Windows |
|
# |
|
# In particular, SO in the Makefile is currently always just ".so" for our |
|
# python 2 optimized builds, but for python 2 debug it should be '_d.so', to |
|
# distinguish the debug vs optimized ABI, following the pattern in the above |
|
# patch. |
|
# |
|
# Not yet sent upstream |
|
Patch130: python-2.7.2-add-extension-suffix-to-python-config.patch |
|
|
|
# 00131 # |
|
# The four tests in test_io built on top of check_interrupted_write_retry |
|
# fail when built in Koji, for ppc and ppc64; for some reason, the SIGALRM |
|
# handlers are never called, and the call to write runs to completion |
|
# (rhbz#732998) |
|
Patch131: 00131-disable-tests-in-test_io.patch |
|
|
|
# 00132 # |
|
# Add non-standard hooks to unittest for use in the "check" phase below, when |
|
# running selftests within the build: |
|
# @unittest._skipInRpmBuild(reason) |
|
# for tests that hang or fail intermittently within the build environment, and: |
|
# @unittest._expectedFailureInRpmBuild |
|
# for tests that always fail within the build environment |
|
# |
|
# The hooks only take effect if WITHIN_PYTHON_RPM_BUILD is set in the |
|
# environment, which we set manually in the appropriate portion of the "check" |
|
# phase below (and which potentially other python-* rpms could set, to reuse |
|
# these unittest hooks in their own "check" phases) |
|
Patch132: 00132-add-rpmbuild-hooks-to-unittest.patch |
|
|
|
# 00133 # |
|
# "dl" is deprecated, and test_dl doesn't work on 64-bit builds: |
|
Patch133: 00133-skip-test_dl.patch |
|
|
|
# 00134 # |
|
# Fix a failure in test_sys.py when configured with COUNT_ALLOCS enabled |
|
# Not yet sent upstream |
|
Patch134: 00134-fix-COUNT_ALLOCS-failure-in-test_sys.patch |
|
|
|
# 00135 # |
|
# Skip "test_callback_in_cycle_resurrection" in a debug build, where it fails: |
|
# Not yet sent upstream |
|
Patch135: 00135-skip-test-within-test_weakref-in-debug-build.patch |
|
|
|
# 00136 # |
|
# Some tests try to seek on sys.stdin, but don't work as expected when run |
|
# within Koji/mock; skip them within the rpm build: |
|
Patch136: 00136-skip-tests-of-seeking-stdin-in-rpmbuild.patch |
|
|
|
# 00137 # |
|
# Some tests within distutils fail when run in an rpmbuild: |
|
Patch137: 00137-skip-distutils-tests-that-fail-in-rpmbuild.patch |
|
|
|
# 00138 # |
|
# Fixup some tests within distutils to work with how debug builds are set up: |
|
Patch138: 00138-fix-distutils-tests-in-debug-build.patch |
|
|
|
# 00139 # |
|
# ARM-specific: skip known failure in test_float: |
|
# http://bugs.python.org/issue8265 (rhbz#706253) |
|
Patch139: 00139-skip-test_float-known-failure-on-arm.patch |
|
|
|
# 00140 # |
|
# Sparc-specific: skip known failure in test_ctypes: |
|
# http://bugs.python.org/issue8314 (rhbz#711584) |
|
# which appears to be a libffi bug |
|
Patch140: 00140-skip-test_ctypes-known-failure-on-sparc.patch |
|
|
|
# 00141 # |
|
# Fix test_gc's test_newinstance case when configured with COUNT_ALLOCS: |
|
# Not yet sent upstream |
|
Patch141: 00141-fix-test_gc_with_COUNT_ALLOCS.patch |
|
|
|
# 00142 # |
|
# Some pty tests fail when run in mock (rhbz#714627): |
|
Patch142: 00142-skip-failing-pty-tests-in-rpmbuild.patch |
|
|
|
# 00143 # |
|
# Fix the --with-tsc option on ppc64, and rework it on 32-bit ppc to avoid |
|
# aliasing violations (rhbz#698726) |
|
# Sent upstream as http://bugs.python.org/issue12872 |
|
Patch143: 00143-tsc-on-ppc.patch |
|
|
|
# 00144 # |
|
# (Optionally) disable the gdbm module: |
|
Patch144: 00144-no-gdbm.patch |
|
|
|
# 00145 # |
|
# Upstream as of Python 2.7.3: |
|
# Patch145: 00145-force-sys-platform-to-be-linux2.patch |
|
|
|
# 00146 # |
|
# Support OpenSSL FIPS mode (e.g. when OPENSSL_FORCE_FIPS_MODE=1 is set) |
|
# - handle failures from OpenSSL (e.g. on attempts to use MD5 in a |
|
# FIPS-enforcing environment) |
|
# - add a new "usedforsecurity" keyword argument to the various digest |
|
# algorithms in hashlib so that you can whitelist a callsite with |
|
# "usedforsecurity=False" |
|
# (sent upstream for python 3 as http://bugs.python.org/issue9216; this is a |
|
# backport to python 2.7; see RHEL6 patch 119) |
|
# - enforce usage of the _hashlib implementation: don't fall back to the _md5 |
|
# and _sha* modules (leading to clearer error messages if fips selftests |
|
# fail) |
|
# - don't build the _md5 and _sha* modules; rely on the _hashlib implementation |
|
# of hashlib (for example, md5.py will use _hashlib's implementation of MD5, |
|
# if permitted by the FIPS setting) |
|
# (rhbz#563986) |
|
Patch146: 00146-hashlib-fips.patch |
|
|
|
# 00147 # |
|
# Add a sys._debugmallocstats() function |
|
# Based on patch 202 from RHEL 5's python.spec, with updates from rhbz#737198 |
|
# Sent upstream as http://bugs.python.org/issue14785 |
|
Patch147: 00147-add-debug-malloc-stats.patch |
|
|
|
# 00148 # |
|
# Upstream as of Python 2.7.3: |
|
# Patch148: 00148-gdbm-1.9-magic-values.patch |
|
|
|
# 00149 # |
|
# python3.spec's |
|
# Patch149: 00149-backport-issue11254-pycache-bytecompilation-fix.patch |
|
# is not relevant for Python 2 |
|
|
|
# 00150 # |
|
# python3.spec has: |
|
# Patch150: 00150-disable-rAssertAlmostEqual-cmath-on-ppc.patch |
|
# as a workaround for a glibc bug on PPC (bz #750811) |
|
|
|
# 00151 # |
|
# Upstream as of Python 2.7.3: |
|
# Patch151: 00151-fork-deadlock.patch |
|
|
|
# 00152 # |
|
# python3.spec has: |
|
# Patch152: 00152-fix-test-gdb-regex.patch |
|
|
|
# 00153 # |
|
# Strip out lines of the form "warning: Unable to open ..." from gdb's stderr |
|
# when running test_gdb.py; also cope with change to gdb in F17 onwards in |
|
# which values are printed as "v@entry" rather than just "v": |
|
# Not yet sent upstream |
|
Patch153: 00153-fix-test_gdb-noise.patch |
|
|
|
# 00154 # |
|
# python3.spec on f15 has: |
|
# Patch154: 00154-skip-urllib-test-requiring-working-DNS.patch |
|
|
|
# 00155 # |
|
# Avoid allocating thunks in ctypes unless absolutely necessary, to avoid |
|
# generating SELinux denials on "import ctypes" and "import uuid" when |
|
# embedding Python within httpd (rhbz#814391) |
|
Patch155: 00155-avoid-ctypes-thunks.patch |
|
|
|
# 00156 # |
|
# Recent builds of gdb will only auto-load scripts from certain safe |
|
# locations. Turn off this protection when running test_gdb in the selftest |
|
# suite to ensure that it can load our -gdb.py script (rhbz#817072): |
|
# Not yet sent upstream |
|
Patch156: 00156-gdb-autoload-safepath.patch |
|
|
|
# 00157 # |
|
# Update uid/gid handling throughout the standard library: uid_t and gid_t are |
|
# unsigned 32-bit values, but existing code often passed them through C long |
|
# values, which are signed 32-bit values on 32-bit architectures, leading to |
|
# negative int objects for uid/gid values >= 2^31 on 32-bit architectures. |
|
# |
|
# Introduce _PyObject_FromUid/Gid to convert uid_t/gid_t values to python |
|
# objects, using int objects where the value will fit (long objects otherwise), |
|
# and _PyArg_ParseUid/Gid to convert int/long to uid_t/gid_t, with -1 allowed |
|
# as a special case (since this is given special meaning by the chown syscall) |
|
# |
|
# Update standard library to use this throughout for uid/gid values, so that |
|
# very large uid/gid values are round-trippable, and -1 remains usable. |
|
# (rhbz#697470) |
|
Patch157: 00157-uid-gid-overflows.patch |
|
|
|
# Upstream as of Python 2.7.4 |
|
# Patch158: 00158-fix-hashlib-leak.patch |
|
|
|
# 00160 # |
|
# python3.spec's |
|
# Patch160: 00160-disable-test_fs_holes-in-rpm-build.patch |
|
# is not relevant for Python 2 |
|
|
|
# 00161 # |
|
# python3.spec has: |
|
# Patch161: 00161-fix-test_tools-directory.patch |
|
# which will likely become relevant for Python 2 next time we rebase |
|
|
|
# 00162 # |
|
# python3.spec has: |
|
# Patch162: 00162-distutils-sysconfig-fix-CC-options.patch |
|
|
|
# 00163 # |
|
# python3.spec has: |
|
# Patch163: 00163-disable-parts-of-test_socket-in-rpm-build.patch |
|
|
|
# 00164 # |
|
# python3.spec has: |
|
# Patch164: 00164-disable-interrupted_write-tests-on-ppc.patch |
|
|
|
# 00165 # |
|
# Backport to Python 2 from Python 3.3 of improvements to the "crypt" module |
|
# adding precanned ways of salting a password (rhbz#835021) |
|
# Based on r88500 patch to py3k from Python 3.3 |
|
# plus 6482dd1c11ed, 0586c699d467, 62994662676a, 74a1110a3b50, plus edits |
|
# to docstrings to note that this additional functionality is not standard |
|
# within 2.7 |
|
Patch165: 00165-crypt-module-salt-backport.patch |
|
|
|
# 00166 # |
|
# Bulletproof the gdb debugging hooks against the case where co_filename for |
|
# a frame can't be read from the inferior process (rhbz#912025) |
|
# |
|
# Not yet sent upstream |
|
Patch166: 00166-fix-fake-repr-in-gdb-hooks.patch |
|
|
|
# 00167 # |
|
# Don't run any of the stack navigation tests in test_gdb when Python is |
|
# optimized, since there appear to be many different ways in which gdb can |
|
# fail to read the PyFrameObject* for arbitrary places in the callstack, |
|
# presumably due to compiler optimization (rhbz#912025) |
|
# |
|
# Not yet sent upstream |
|
Patch167: 00167-disable-stack-navigation-tests-when-optimized-in-test_gdb.patch |
|
|
|
# 00168 # |
|
# Update distutils.sysconfig so that if CFLAGS is defined in the environment, |
|
# when building extension modules, it is appended to the full compilation |
|
# flags from Python's Makefile, rather than instead reducing the compilation |
|
# flags to the subset within OPT and adding it to those. |
|
# |
|
# In particular, this should ensure that "-fno-strict-aliasing" is used by |
|
# "python setup.py build" even when CFLAGS is defined in the environment. |
|
# |
|
# (rhbz#849994) |
|
Patch168: 00168-distutils-cflags.patch |
|
|
|
# 00169 # |
|
# Use SHA-256 rather than implicitly using MD5 within the challenge handling |
|
# in multiprocessing.connection |
|
# |
|
# Sent upstream as http://bugs.python.org/issue17258 |
|
# (rhbz#879695) |
|
Patch169: 00169-avoid-implicit-usage-of-md5-in-multiprocessing.patch |
|
|
|
# 00170 # |
|
# In debug builds, try to print repr() when a C-level assert fails in the |
|
# garbage collector (typically indicating a reference-counting error |
|
# somewhere else e.g in an extension module) |
|
# Backported to 2.7 from a patch I sent upstream for py3k |
|
# http://bugs.python.org/issue9263 (rhbz#614680) |
|
# hiding the proposed new macros/functions within gcmodule.c to avoid exposing |
|
# them within the extension API. |
|
# (rhbz#850013) |
|
Patch170: 00170-gc-assertions.patch |
|
|
|
# Upstream as of Python 2.7.4 |
|
# Patch171: 00171-raise-correct-exception-when-dev-urandom-is-missing.patch |
|
|
|
# Upstream as of Python 2.7.4 |
|
# Patch172: 00172-use-poll-for-multiprocessing-socket-connection.patch |
|
|
|
# 00173 # |
|
# Workaround for ENOPROTOOPT seen in Koji within |
|
# test.test_support.bind_port() |
|
# (rhbz#913732) |
|
Patch173: 00173-workaround-ENOPROTOOPT-in-bind_port.patch |
|
|
|
# 00174 # |
|
# Workaround for failure to set up prefix/exec_prefix when running |
|
# an embededed libpython that sets Py_SetProgramName() to a name not |
|
# on $PATH when run from the root directory due to |
|
# https://fedoraproject.org/wiki/Features/UsrMove |
|
# e.g. cmpi-bindings under systemd (rhbz#817554): |
|
Patch174: 00174-fix-for-usr-move.patch |
|
|
|
# 00175 # |
|
# Upstream as of Python 2.7.5 |
|
# Patch175: 00175-fix-configure-Wformat.patch |
|
|
|
# 00176 # |
|
# python3.spec had: |
|
# Patch176: 00176-upstream-issue16754-so-extension.patch |
|
# doesn't affect python2 |
|
|
|
# 00177 # |
|
# python3.spec has |
|
# Patch177: 00177-platform-unicode.patch |
|
# Does not affect python2 |
|
|
|
# 00178 # |
|
# python3.spec has |
|
# Patch178: 00178-dont-duplicate-flags-in-sysconfig.patch |
|
# Does not affect python2 AFAICS (different sysconfig values initialization) |
|
|
|
# 00179 # |
|
# python3.spec has |
|
# Patch179: 00179-dont-raise-error-on-gdb-corrupted-frames-in-backtrace.patch |
|
# Doesn't seem to affect python2 |
|
|
|
# 00180 # |
|
# Enable building on ppc64p7 |
|
# Not appropriate for upstream, Fedora-specific naming |
|
Patch180: 00180-python-add-support-for-ppc64p7.patch |
|
|
|
# 00181 # |
|
# Allow arbitrary timeout for Condition.wait, as reported in |
|
# https://bugzilla.redhat.com/show_bug.cgi?id=917709 |
|
# Upstream doesn't want this: http://bugs.python.org/issue17748 |
|
# But we have no better solution downstream yet, and since there is |
|
# no API breakage, we apply this patch. |
|
# Doesn't apply to Python 3, where this is fixed otherwise and works. |
|
Patch181: 00181-allow-arbitrary-timeout-in-condition-wait.patch |
|
|
|
# 00182 # |
|
# python3.spec had |
|
# Patch182: 00182-fix-test_gdb-test_threads.patch |
|
|
|
# 00183 # |
|
# python3.spec has |
|
# Patch183: 00183-cve-2013-2099-fix-ssl-match_hostname-dos.patch |
|
|
|
# 00184 # |
|
# Fix for https://bugzilla.redhat.com/show_bug.cgi?id=979696 |
|
# Fixes build of ctypes against libffi with multilib wrapper |
|
# Python recognizes ffi.h only if it contains "#define LIBFFI_H", |
|
# but the wrapper doesn't contain that, which makes the build fail |
|
# We patch this by also accepting "#define ffi_wrapper_h" |
|
Patch184: 00184-ctypes-should-build-with-libffi-multilib-wrapper.patch |
|
|
|
# 00185 # |
|
# Makes urllib2 honor "no_proxy" enviroment variable for "ftp:" URLs |
|
# when ftp_proxy is set |
|
# Resolves rhbz#971267 |
|
Patch185: 00185-urllib2-honors-noproxy-for-ftp.patch |
|
|
|
# 00186 # |
|
# Fix memory leak of variable utf8 in marshal.c |
|
# (rhbz#990554) |
|
Patch186: 00186-memory-leak-marshalc.patch |
|
|
|
# 00187 # |
|
# Add an explicit RPATH to pyexpat.so pointing at the directory |
|
# containing the system expat (which has the extra XML_SetHashSalt |
|
# symbol), to avoid an ImportError with a link error if there's an |
|
# LD_LIBRARY_PATH containing a "vanilla" build of expat (without the |
|
# symbol) (originally rhbz#833271, for rhel 7 rhbz#996665): |
|
Patch187: 00187-add-RPATH-to-pyexpat.patch |
|
|
|
# 00188 # |
|
# Fix for CVE-2013-4238 -- |
|
# SSL module fails to handle NULL bytes inside subjectAltNames general names |
|
# http://bugs.python.org/issue18709 |
|
# rhbz#998781 |
|
Patch188: 00188-CVE-2013-4238-hostname-check-bypass-in-SSL-module.patch |
|
|
|
# 00189 # |
|
# Fixes gdb py-bt command not to raise exception while processing |
|
# statements from eval |
|
# rhbz#1008154 (patch by Attila Fazekas) |
|
Patch189: 00189-gdb-py-bt-dont-raise-exception-from-eval.patch |
|
|
|
# 190 # |
|
# Don't fail various gdb tests on ppc64 if glibc debug |
|
# symbols are installed |
|
Patch190: 00190-gdb-fix-ppc64-failures.patch |
|
|
|
# 00191 # |
|
# Add explicit RPATH to _elementtree.so |
|
# rhbz#1019345 |
|
Patch191: 00191-add-RPATH-to-elementtree.patch |
|
|
|
# 00192 # |
|
# Fix missing documentation for some keywords |
|
# rhbz#1032116 |
|
Patch192: 00192-Fix-missing-documentation-for-some-keywords.patch |
|
|
|
# 00193 # |
|
# Fix buffer overflow (upstream patch, http://bugs.python.org/issue20246) |
|
# rhbz#1062376 |
|
Patch193: 00193-buffer-overflow.patch |
|
|
|
# 00194 # |
|
# Make GDB test pass even if GDB prints program counter for |
|
# the first trace frame |
|
Patch194: 00194-gdb-dont-fail-on-frame-with-address.patch |
|
|
|
# 0195 # |
|
# Make multiprocessing ignore EINTR |
|
# rhbz#1181624 |
|
Patch195: 00195-make-multiproc-ignore-EINTR.patch |
|
|
|
# 00196 # |
|
# Avoid double close of subprocess pipes when the child process |
|
# fails starting |
|
# rhbz#110345p |
|
Patch196: 00196-avoid-double-close-of-pipes.patch |
|
|
|
# 00197 # |
|
# Add missing import in bdist_rpm |
|
# rhbz#1177613 |
|
Patch197: 00197-add-missing-import-in-bdist_rpm.patch |
|
|
|
# 00198 # |
|
# Fix importing readline producing erroneous output |
|
Patch198: 00198-fix-readline-erroneous-output.patch |
|
|
|
# 00199 # |
|
# Fix for CVE-2013-1753 |
|
# rhbz#1046170 |
|
Patch199: 00199-CVE-2013-1753.patch |
|
|
|
# 00200 # |
|
# Fix for CVE-2014-4616 |
|
# rhbz#1112285 |
|
Patch200: 00200-CVE-2014-4616.patch |
|
|
|
# 00201 # |
|
# Fix for CVE-2014-4650 |
|
# rhbz#1113527 |
|
Patch201: 00201-CVE-2014-4650.patch |
|
|
|
# 00202 # |
|
# Fix for CVE-2014-7185 |
|
# rhbz#1146026 |
|
Patch202: 00202-CVE-2014-7185.patch |
|
|
|
# Fixes for CVE-2013-1752 |
|
# rhbz#1046174 |
|
Patch203: 00203-CVE-2013-1752-nntplib.patch |
|
Patch204: 00204-CVE-2013-1752-ftplib.patch |
|
Patch205: 00205-CVE-2013-1752-httplib-headers.patch |
|
Patch206: 00206-CVE-2013-1752-poplib.patch |
|
Patch207: 00207-CVE-2013-1752-smtplib.patch |
|
Patch208: 00208-CVE-2013-1752-imaplib.patch |
|
|
|
# ================== PEP466=========================== |
|
# Massive backport of PEP466 and relevant other fixes |
|
# ================rhbz#1111461======================== |
|
# 00209 # |
|
# backport hmac.compare_digest |
|
# http://bugs.python.org/issue21306 |
|
Patch209: 00209-pep466-backport-hmac.compare_digest.patch |
|
# 00210 # |
|
# backport hashlib.pbkdf2_hmac |
|
# http://bugs.python.org/issue21304 |
|
Patch210: 00210-pep466-backport-hashlib.pbkdf2_hmac.patch |
|
# 00211 # |
|
# UTF-7 decoder can produce inconsistent Unicode string |
|
# http://bugs.python.org/issue19279 |
|
Patch211: 00211-pep466-UTF-7-decoder-fix-illegal-unicode.patch |
|
# 00212 # |
|
# Add range check for %c in PyUnicode_FromFormat |
|
# http://bugs.python.org/issue18184 |
|
Patch212: 00212-pep466-pyunicode_fromformat-raise-overflow.patch |
|
# 00213 # |
|
# Fix %S, %R and %V formats of PyUnicode_FromFormat(). |
|
# http://bugs.python.org/issue122023 |
|
Patch213: 00213-pep466-pyunicode_fromformat-fix-formats.patch |
|
# 00214 # |
|
# Backport SSL module from Python3 |
|
# http://bugs.python.org/issue21308 |
|
Patch214: 00214-pep466-backport-py3-ssl-changes.patch |
|
# 00215 # |
|
# OpenSSL disabled various ciphers and protocols |
|
# we have to reflect it in tests |
|
Patch215: 00215-pep466-reflect-openssl-settings-ssltests.patch |
|
# 00216 # |
|
# fix load_verify_locations on unicode paths |
|
# http://bugs.python.org/issue22244 |
|
Patch216: 00216-pep466-fix-load-verify-locs-unicode.patch |
|
# 00217 # |
|
# backport hashlib changes |
|
# http://bugs.python.org/issue21307 |
|
Patch217: 00217-pep466-backport-hashlib-algorithm-consts.patch |
|
# 00218 # |
|
# update os.urandom |
|
# http://bugs.python.org/issue21305 |
|
Patch218: 00218-pep466-backport-urandom-pers-fd.patch |
|
# 00219 # |
|
# Lib/ssl.py still references _ssl.sslwrap |
|
# http://bugs.python.org/issue22523 |
|
Patch219: 00219-pep466-fix-referenced-sslwrap.patch |
|
# 00220 # |
|
# allow passing cert/ssl information to urllib2.urlopen and httplib.HTTPSConnection |
|
Patch220: 00220-pep466-allow-passing-ssl-urrlib-httplib.patch |
|
# 00221 # |
|
# Patch214 remove sslwrap from _ssl.c this so we have to reimplement it |
|
#Patch221: 00221-pep466-backport-sslwrap-c-ssl.patch |
|
# Backporting sslwrap introduces regressions so patch 221 was dropped (rhbz#1331425) |
|
# 00222 # |
|
# test_ssl: fails on recent libressl version with BAD_DH_P_LENGTH |
|
# https://bugs.python.org/issue23844 |
|
Patch222: 00222-add-2014-bit-dh-key.patch |
|
# 00223 # |
|
# PEP 476: verify HTTPS certificates by default |
|
# http://bugs.python.org/issue22417 |
|
# Resolves:rhbz#1219110 |
|
Patch223: 00223-pep476-verify-certs-by-default.patch |
|
# 00224 # |
|
# Add switch to toggle global verification on and off |
|
# Resolves:rhbz#1219108 |
|
# For more information see PEP493 |
|
Patch224: 00224-pep476-add-toggle-for-cert-verify.patch |
|
|
|
# 00225 # |
|
# Add list of choices to sort option of cProfile |
|
# Resolves:rhbz#1237107 |
|
Patch225: 00225-cprofile-sort-option.patch |
|
|
|
# 00227 # |
|
# Make load_cert_chain function of SSLContext accept a |
|
# keyfile argument set to None |
|
# Upstream issue: http://bugs.python.org/issue22787 |
|
# Resolves: rhbz#1250611 |
|
Patch227: 00227-accept-none-keyfile-loadcertchain.patch |
|
|
|
# 00228 # |
|
# Backport SSLSocket.version function |
|
# Resolves: rhbz#1259421 |
|
Patch228: 00228-backport-ssl-version.patch |
|
|
|
# 00229 # |
|
# Adjusted tests to acknowledge lack of SSLv2 support |
|
# Resolves: rhbz#1315310 |
|
Patch229: 00229-Expect-a-failure-when-trying-to-connect-with-SSLv2-c.patch |
|
|
|
# 00230 # |
|
# Force all child threads to terminate in TestForkInThread, so no zombie |
|
# processes get left behind with stalled threads which hang Python builds |
|
# https://bugs.python.org/issue26456 |
|
# Resolves: rhbz#1313259 |
|
Patch230: 00230-force-all-child-threads-to-terminate-in-TestForkInThread.patch |
|
|
|
# 00231 # |
|
# Fix hashlib algorithms breaking by initializing OpenSSL_add_all_digests |
|
# function in _hashlib library of _hashopenssl.c module |
|
# Resolves: rhbz#1295459 |
|
Patch231: 00231-Initialize-OpenSSL_add_all_digests-in-_hashlib.patch |
|
|
|
# 00232 # |
|
# Removal of the '$Date$' placeholder on the python(1) man page footer, |
|
# which does not expand during build |
|
# http://bugs.python.org/issue17167 |
|
# Resolves: rhbz#1268310 |
|
Patch232: 00232-man-page-date-macro-removal.patch |
|
|
|
# 00233 # |
|
# Backport of Computed Goto dispatch |
|
# http://bugs.python.org/issue4753 |
|
# https://lwn.net/Articles/646888/ |
|
# Resolves: rhbz#1289277 |
|
Patch233: 00233-Computed-Goto-dispatch.patch |
|
|
|
# 00234 # |
|
# Updated implementation of PEP493 |
|
# The following features were backported: |
|
# https://www.python.org/dev/peps/pep-0493/#feature-configuration-api |
|
# https://www.python.org/dev/peps/pep-0493/#feature-environment-based-configuration |
|
# Combined usage explained: |
|
# https://www.python.org/dev/peps/pep-0493/#recommendation-for-combined-feature-backports |
|
# Resolves: rhbz#1315758 |
|
# Patch was modified to enable the certificate verification globally as the platform default |
|
# See also patch224 |
|
# Resolves: rhbz#1219110 |
|
Patch234: 00234-PEP493-updated-implementation.patch |
|
|
|
# 0235 # |
|
# JSON decoder lone surrogates fix. |
|
# https://bugs.python.org/issue11489 |
|
# Resolves: rhbz#1301017 |
|
Patch235: 00235-JSON-decoder-lone-surrogates-fix.patch |
|
|
|
# 0236 # |
|
# Fix for iteration over files vith very long lines |
|
# http://bugs.python.org/issue22526 |
|
# Resolves: rhbz#1271760 |
|
Patch236: 00236-use-Py_ssize_t-for-file-offset-and-length-computations-in-iteration.patch |
|
|
|
# 00237 # |
|
# CVE-2016-0772 python: smtplib StartTLS stripping attack |
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1303647 |
|
# FIXED UPSTREAM: https://hg.python.org/cpython/rev/b3ce713fb9be |
|
# Raise an error when STARTTLS fails |
|
# Resolves: rhbz#1346357 |
|
Patch237: 00237-CVE-2016-0772-smtplib.patch |
|
|
|
# 00238 # |
|
# CVE-2016-5699 python: http protocol steam injection attack |
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1303699 |
|
# FIXED UPSTREAM: https://hg.python.org/cpython/rev/1c45047c5102 |
|
# Disabled HTTP header injections in httplib |
|
# Resolves: rhbz#1346357 |
|
Patch238: 00238-CVE-2016-5699-httplib.patch |
|
|
|
# 00240 # |
|
# Increase the timeouts of test_smtplib |
|
# as there are failures on various powerpc architectures. |
|
# FIXED UPSTREAM: https://github.com/python/cpython/commit/1122236c89770466c629aa0f0b0de2b2731b82ee |
|
# Resolves: rhbz#1497795 |
|
Patch240: 00240-increase-smtplib-tests-timeouts.patch |
|
|
|
# 00241 # |
|
# CVE-2016-5636: http://seclists.org/oss-sec/2016/q2/560 |
|
# https://hg.python.org/cpython/rev/985fc64c60d6/ |
|
# https://hg.python.org/cpython/rev/2edbdb79cd6d |
|
# Fix possible integer overflow and heap corruption in zipimporter.get_data() |
|
# FIXED UPSTREAM: https://bugs.python.org/issue26171 |
|
# Resolves: rhbz#1356364 |
|
Patch241: 00241-CVE-2016-5636-buffer-overflow-in-zipimport-module-fix.patch |
|
|
|
# 00242 # |
|
# HTTPoxy attack (CVE-2016-1000110) |
|
# https://httpoxy.org/ |
|
# FIXED UPSTREAM: http://bugs.python.org/issue27568 |
|
# Based on a patch by Rémi Rampin |
|
# Resolves: rhbz#1359164 |
|
Patch242: 00242-CVE-2016-1000110-httpoxy.patch |
|
|
|
# 00255 # |
|
# Fix Python's failure to decode X.509 certificates |
|
# with a GEN_RID general name in subject alternative names. |
|
# FIXED UPSTREAM: http://bugs.python.org/issue27691 |
|
# Resolves: rhbz#1364444 |
|
Patch255: 00255-Fix-ssl-module-parsing-of-GEN_RID-subject-alternative-name-fields-in-X.509-certs.patch |
|
|
|
# 00256 # |
|
# Fix Python's incorrect parsing of certain regular expressions |
|
# FIXED UPSTREAM: http://bugs.python.org/issue18647 |
|
# Resolves: rhbz#1373363 |
|
Patch256: 00256-fix-incorrect-parsing-of-regular-expressions.patch |
|
|
|
# 00257 # |
|
# Python's threading library doesn't use the monotonic clock when handling wait timeouts, |
|
# so when the system clock is set backwards, the wait doesn't return after the timeout, |
|
# causing deadlocks. |
|
# This patch works around the issue. |
|
# Resolves: rhbz#1368076 |
|
# DOWNSTREAM ONLY PATCH |
|
Patch257: 00257-threading-wait-clamp-remaining-time.patch |
|
|
|
# 00263 # |
|
# Fix reference leaks of certfile_bytes and keyfile_bytes at _ssl.c |
|
# FIXED UPSTREAM: http://bugs.python.org/issue27267 |
|
# https://github.com/python/cpython/commit/b3e073cbb3af2999e6e589f55ec2fc8a109fdc14 |
|
# https://github.com/python/cpython/commit/3b91de5a76aad471476f5bc5943e44bf386c0e6d |
|
# Resolves: rhbz#1272562 |
|
Patch263: 00263-fix-ssl-reference-leaks.patch |
|
|
|
# 00265 # |
|
# Protect the key list during fork() in order for the forked process to not inherit an inconsistent key list. |
|
# Reported upstream: http://bugs.python.org/issue29640 |
|
# Resolves: rhbz#1268226 |
|
Patch265: 00265-protect-key-list-during-fork.patch |
|
|
|
# 00266 # |
|
# Make shutil.make_archive() to not ingore empty directories when creating a zip file. |
|
# Also refactor and extend the shutil test suite. |
|
# FIXED UPSTREAM: https://bugs.python.org/issue24982 |
|
# https://github.com/python/cpython/commit/04861dc82f595e3e2f0ab4b1a62de2f812c8fa37 |
|
# Resolves: rhbz#1439734 |
|
Patch266: 00266-fix-shutil.make_archive-ignoring-empty-dirs.patch |
|
|
|
# 00268 # |
|
# Set stream to None in case an _open() fails. |
|
# FIXED UPSTREAM: https://bugs.python.org/issue21742 |
|
# Resolves: rhbz#1432003 |
|
Patch268: 00268-set-stream-name-to-None.patch |
|
|
|
# 00275 # |
|
# Fixe fcntl() with integer argument on 64-bit big-endian platforms. |
|
# FIXED UPSTREAM: https://bugs.python.org/issue22821 |
|
# Resolves: rhbz#1489858 |
|
Patch275: 00275-fix-fnctl-with-integer-on-big-endian.patch |
|
|
|
# 00276 # |
|
# Increase imaplib's MAXLINE to accommodate modern mailbox sizes. |
|
# FIXED UPSTREAM: https://bugs.python.org/issue23647 |
|
# Resolves: rhbz#1485808 |
|
Patch276: 00276-increase-imaplib-MAXLINE.patch |
|
|
|
# 00281 # |
|
# Add context parameter to xmlrpclib.ServerProxy |
|
# FIXED UPSTREAM: https://bugs.python.org/issue22960 |
|
# Resolves: rhbz#1490392 |
|
Patch281: 00281-add-context-parameter-to-xmlrpclib.ServerProxy.patch |
|
|
|
# 00282 # |
|
# Make it more likely for the system allocator to release free()d memory arenas |
|
# - Use mmap for arena allocation |
|
# - Increase SMALL_REQUEST_THRESHOLD so that small dictionaries use |
|
# pre-allocated arena pools |
|
# FIXED UPSTREAM: https://bugs.python.org/issue20494 |
|
# Resolves: rhbz#1468410 |
|
Patch282: 00282-obmalloc-mmap-threshold.patch |
|
|
|
# 00285 # |
|
# Fix nondeterministic read in test_pty which fails randomly in brew. |
|
# FIXED UPSTREAM: https://bugs.python.org/issue31158 |
|
# Resolves: rhbz#1512160 |
|
Patch285: 00285-fix-non-deterministic-read-in-test_pty.patch |
|
|
|
# 00287 # |
|
# On the creation of io.FileIO() and builtin file() objects the GIL is now released |
|
# when checking the file descriptor. io.FileIO.readall(), io.FileIO.read(), and |
|
# file.read() also now release the GIL when getting the file size, which fixes hanging |
|
# of all threads when trying to access an inaccessible NFS server. |
|
# FIXED UPSTREAM: https://bugs.python.org/issue32186 |
|
# Resolves: rhbz#1520068 |
|
Patch287: 00287-fix-thread-hanging-on-inaccessible-nfs-server.patch |
|
|
|
# 00295 # |
|
# Fix http.client.HTTPConnection tunneling and HTTPConnection.set_tunnel with default port, |
|
# which was breaking https connections behind a proxy. |
|
# FIXED UPSTREAM: https://bugs.python.org/issue7776 |
|
# https://bugs.python.org/issue22095 |
|
# https://bugs.python.org/issue23300 |
|
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1483438 |
|
Patch295: 00295-fix-https-behind-proxy.patch |
|
|
|
# 00296 # |
|
# Re-add the private `_set_hostport` api to httplib |
|
# DOWNSTREAM ONLY: backwards compatibility backport |
|
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1546351 |
|
Patch296: 00296-Readd-the-private-_set_hostport-api-to-httplib.patch |
|
|
|
# 00298 # |
|
# The SSL module no longer sends IP addresses in SNI TLS extension on |
|
# platforms with OpenSSL 1.0.2+ or inet_pton. |
|
# FIXED UPSTREAM: https://bugs.python.org/issue32185 |
|
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1555314 |
|
Patch298: 00298-do-not-send-IP-in-SNI-TLS-extension.patch |
|
|
|
# 00299 # |
|
# Fix ssl module, Python 2.7 doesn't have Py_MAX |
|
# The previous patch 298 broke python2. This is a fixup. |
|
# FIXED UPSTREAM: https://github.com/python/cpython/pull/5878 |
|
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1555314 |
|
Patch299: 00299-fix-ssl-module-pymax.patch |
|
|
|
# 00303 # |
|
# Fix CVE-2018-1060 and CVE-2018-1061 |
|
# FIXED UPSTREAM: https://bugs.python.org/issue32981 |
|
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1563454 |
|
# and https://bugzilla.redhat.com/show_bug.cgi?id=1549192 |
|
Patch303: 00303-CVE-2018-1060-1.patch |
|
|
|
# 00305 # |
|
# Remove 3DES from the cipher list to mitigate CVE-2016-2183 (sweet32). |
|
# FIXED UPSTREAM: https://bugs.python.org/issue27850 |
|
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1581901 |
|
Patch305: 00305-CVE-2016-2183.patch |
|
|
|
# 00306 # |
|
# Fix OSERROR 17 due to _multiprocessing/semaphore.c |
|
# assuming a one-to-one Pid -> process mapping |
|
# FIXED UPSTREAM: https://bugs.python.org/issue24303 |
|
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1579432 |
|
Patch306: 00306-fix-oserror-17-upon-semaphores-creation.patch |
|
|
|
# (New patches go here ^^^) |
|
# |
|
# When adding new patches to "python" and "python3" in Fedora 17 onwards, |
|
# please try to keep the patch numbers in-sync between the two specfiles: |
|
# |
|
# - use the same patch number across both specfiles for conceptually-equivalent |
|
# fixes, ideally with the same name |
|
# |
|
# - when a patch is relevant to both specfiles, use the same introductory |
|
# comment in both specfiles where possible (to improve "diff" output when |
|
# comparing them) |
|
# |
|
# - when a patch is only relevant for one of the two specfiles, leave a gap |
|
# in the patch numbering in the other specfile, adding a comment when |
|
# omitting a patch, both in the manifest section here, and in the "prep" |
|
# phase below |
|
# |
|
# Hopefully this will make it easier to ensure that all relevant fixes are |
|
# applied to both versions. |
|
|
|
# This is the generated patch to "configure"; see the description of |
|
# %%{regenerate_autotooling_patch} |
|
# above: |
|
Patch5000: 05000-autotool-intermediates.patch |
|
|
|
# ====================================================== |
|
# Additional metadata, and subpackages |
|
# ====================================================== |
|
|
|
%if %{main_python} |
|
Obsoletes: Distutils |
|
Provides: Distutils |
|
Provides: python2 = %{version} |
|
Obsoletes: python-elementtree <= 1.2.6 |
|
Obsoletes: python-sqlite < 2.3.2 |
|
Provides: python-sqlite = 2.3.2 |
|
Obsoletes: python-ctypes < 1.0.1 |
|
Provides: python-ctypes = 1.0.1 |
|
Obsoletes: python-hashlib < 20081120 |
|
Provides: python-hashlib = 20081120 |
|
Obsoletes: python-uuid < 1.31 |
|
Provides: python-uuid = 1.31 |
|
|
|
# python-sqlite2-2.3.5-5.fc18 was retired. Obsolete the old package here |
|
# so it gets uninstalled on updates |
|
%if 0%{?fedora} >= 17 |
|
Obsoletes: python-sqlite2 <= 2.3.5-6 |
|
%endif |
|
|
|
# python-argparse is part of python as of version 2.7 |
|
# drop this Provides in F17 |
|
# (having Obsoletes here caused problems with multilib; see rhbz#667984) |
|
Provides: python-argparse = %{version}-%{release} |
|
%endif |
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
|
|
|
URL: http://www.python.org/ |
|
|
|
%description |
|
Python is an interpreted, interactive, object-oriented programming |
|
language often compared to Tcl, Perl, Scheme or Java. Python includes |
|
modules, classes, exceptions, very high level dynamic data types and |
|
dynamic typing. Python supports interfaces to many system calls and |
|
libraries, as well as to various windowing systems (X11, Motif, Tk, |
|
Mac and MFC). |
|
|
|
Programmers can write new built-in modules for Python in C or C++. |
|
Python can be used as an extension language for applications that need |
|
a programmable interface. |
|
|
|
Note that documentation for Python is provided in the python-docs |
|
package. |
|
|
|
This package provides the "python" executable; most of the actual |
|
implementation is within the "python-libs" package. |
|
|
|
%package libs |
|
Summary: Runtime libraries for Python |
|
Group: Applications/System |
|
|
|
# New behaviour of httplib (patch 295) doesn't play well with really old pip |
|
# version (1.4.1) bundled in the old virtualenv package. This new version of |
|
# virtualenv updated bundled pip to 9.0.1 which works fine. |
|
# Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1483438 |
|
Conflicts: python-virtualenv < 15.1.0-1 |
|
|
|
# Needed for ctypes, to load libraries, worked around for Live CDs size |
|
# Requires: binutils |
|
|
|
# expat 2.1.0 added the symbol XML_SetHashSalt without bumping SONAME. We use |
|
# this symbol (in pyexpat), so we must explicitly state this dependency to |
|
# prevent "import pyexpat" from failing with a linker error if someone hasn't |
|
# yet upgraded expat: |
|
Requires: expat >= 2.1.0 |
|
|
|
Provides: python2-libs = %{version}-%{release} |
|
Provides: python2-libs%{?_isa} = %{version}-%{release} |
|
|
|
%description libs |
|
This package contains runtime libraries for use by Python: |
|
- the libpython dynamic library, for use by applications that embed Python as |
|
a scripting language, and by the main "python" executable |
|
- the Python standard library |
|
|
|
%package devel |
|
Summary: The libraries and header files needed for Python development |
|
Group: Development/Libraries |
|
Requires: %{python}%{?_isa} = %{version}-%{release} |
|
Requires: pkgconfig |
|
# Needed here because of the migration of Makefile from -devel to the main |
|
# package |
|
Conflicts: %{python} < %{version}-%{release} |
|
%if %{main_python} |
|
Obsoletes: python2-devel |
|
Provides: python2-devel = %{version}-%{release} |
|
%endif |
|
|
|
%description devel |
|
The Python programming language's interpreter can be extended with |
|
dynamically loaded extensions and can be embedded in other programs. |
|
This package contains the header files and libraries needed to do |
|
these types of tasks. |
|
|
|
Install python-devel if you want to develop Python extensions. The |
|
python package will also need to be installed. You'll probably also |
|
want to install the python-docs package, which contains Python |
|
documentation. |
|
|
|
%package tools |
|
Summary: A collection of development tools included with Python |
|
Group: Development/Tools |
|
Requires: %{name} = %{version}-%{release} |
|
Requires: %{tkinter} = %{version}-%{release} |
|
%if %{main_python} |
|
Obsoletes: python2-tools |
|
Provides: python2-tools = %{version} |
|
%endif |
|
|
|
%description tools |
|
This package includes several tools to help with the development of Python |
|
programs, including IDLE (an IDE with editing and debugging facilities), a |
|
color editor (pynche), and a python gettext program (pygettext.py). |
|
|
|
%package -n %{tkinter} |
|
Summary: A graphical user interface for the Python scripting language |
|
Group: Development/Languages |
|
Requires: %{name} = %{version}-%{release} |
|
%if %{main_python} |
|
Obsoletes: tkinter2 |
|
Provides: tkinter2 = %{version} |
|
%endif |
|
|
|
%description -n %{tkinter} |
|
|
|
The Tkinter (Tk interface) program is an graphical user interface for |
|
the Python scripting language. |
|
|
|
You should install the tkinter package if you'd like to use a graphical |
|
user interface for Python programming. |
|
|
|
%package test |
|
Summary: The test modules from the main python package |
|
Group: Development/Languages |
|
Requires: %{name} = %{version}-%{release} |
|
|
|
%description test |
|
|
|
The test modules from the main python package: %{name} |
|
These have been removed to save space, as they are never or almost |
|
never used in production. |
|
|
|
You might want to install the python-test package if you're developing python |
|
code that uses more than just unittest and/or test_support.py. |
|
|
|
%if 0%{?with_debug_build} |
|
%package debug |
|
Summary: Debug version of the Python runtime |
|
Group: Applications/System |
|
|
|
# The debug build is an all-in-one package version of the regular build, and |
|
# shares the same .py/.pyc files and directories as the regular build. Hence |
|
# we depend on all of the subpackages of the regular build: |
|
Requires: %{name}%{?_isa} = %{version}-%{release} |
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release} |
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release} |
|
Requires: %{name}-test%{?_isa} = %{version}-%{release} |
|
Requires: tkinter%{?_isa} = %{version}-%{release} |
|
Requires: %{name}-tools%{?_isa} = %{version}-%{release} |
|
|
|
%description debug |
|
python-debug provides a version of the Python runtime with numerous debugging |
|
features enabled, aimed at advanced Python users, such as developers of Python |
|
extension modules. |
|
|
|
This version uses more memory and will be slower than the regular Python build, |
|
but is useful for tracking down reference-counting issues, and other bugs. |
|
|
|
The bytecodes are unchanged, so that .pyc files are compatible between the two |
|
version of Python, but the debugging features mean that C/C++ extension modules |
|
are ABI-incompatible with those built for the standard runtime. |
|
|
|
It shares installation directories with the standard Python runtime, so that |
|
.py and .pyc files can be shared. All compiled extension modules gain a "_d" |
|
suffix ("foo_d.so" rather than "foo.so") so that each Python implementation can |
|
load its own extensions. |
|
%endif # with_debug_build |
|
|
|
|
|
# ====================================================== |
|
# The prep phase of the build: |
|
# ====================================================== |
|
|
|
%prep |
|
%setup -q -n Python-%{version} |
|
|
|
%if 0%{?with_systemtap} |
|
# Provide an example of usage of the tapset: |
|
cp -a %{SOURCE4} . |
|
cp -a %{SOURCE5} . |
|
%endif # with_systemtap |
|
|
|
# Ensure that we're using the system copy of various libraries, rather than |
|
# copies shipped by upstream in the tarball: |
|
# Remove embedded copy of expat: |
|
rm -r Modules/expat || exit 1 |
|
|
|
# Remove embedded copy of libffi: |
|
for SUBDIR in darwin libffi libffi_arm_wince libffi_msvc libffi_osx ; do |
|
rm -r Modules/_ctypes/$SUBDIR || exit 1 ; |
|
done |
|
|
|
# Remove embedded copy of zlib: |
|
rm -r Modules/zlib || exit 1 |
|
|
|
# Don't build upstream Python's implementation of these crypto algorithms; |
|
# instead rely on _hashlib and OpenSSL. |
|
# |
|
# For example, in our builds md5.py uses always uses hashlib.md5 (rather than |
|
# falling back to _md5 when hashlib.md5 is not available); hashlib.md5 is |
|
# implemented within _hashlib via OpenSSL (and thus respects FIPS mode) |
|
for f in md5module.c md5.c shamodule.c sha256module.c sha512module.c; do |
|
rm Modules/$f |
|
done |
|
|
|
# |
|
# Apply patches: |
|
# |
|
%patch0 -p1 -b .rhconfig |
|
%patch1 -p1 -b .no_gui |
|
%patch4 -p1 -b .cflags |
|
%patch6 -p1 -b .plural |
|
%patch7 -p1 |
|
|
|
# Try not disabling egg-infos, bz#414711 |
|
#patch50 -p1 -b .egginfo |
|
|
|
# patch101: upstream as of Python 2.7.4 |
|
%if "%{_lib}" == "lib64" |
|
%patch102 -p1 -b .lib64 |
|
%patch103 -p1 -b .lib64-sysconfig |
|
%patch104 -p1 |
|
%endif |
|
|
|
%patch10 -p1 -b .binutils-no-dep |
|
# patch11: upstream as of Python 2.7.3 |
|
%patch13 -p1 -b .socketmodule |
|
%patch14 -p1 -b .socketmodule2 |
|
%patch16 -p1 -b .rpath |
|
%patch17 -p1 -b .distutils-rpath |
|
|
|
%if 0%{?with_systemtap} |
|
%patch55 -p1 -b .systemtap |
|
%endif |
|
|
|
%patch111 -p1 -b .no-static-lib |
|
|
|
%patch112 -p1 -b .debug-build |
|
|
|
%patch113 -p1 -b .more-configuration-flags |
|
|
|
%patch114 -p1 -b .statvfs-f-flag-constants |
|
|
|
# patch115: upstream as of Python 2.7.3 |
|
|
|
%patch121 -p1 |
|
%patch125 -p1 -b .less-verbose-COUNT_ALLOCS |
|
# 00126: upstream as of Python 2.7.5 |
|
# 00127: upstream as of Python 2.7.5 |
|
%patch128 -p1 |
|
|
|
%patch130 -p1 |
|
|
|
%ifarch ppc %{power64} |
|
%patch131 -p1 |
|
%endif |
|
|
|
%patch132 -p1 |
|
%patch133 -p1 |
|
%patch134 -p1 |
|
%patch135 -p1 |
|
%patch136 -p1 |
|
%patch137 -p1 |
|
%patch138 -p1 |
|
%ifarch %{arm} |
|
%patch139 -p1 |
|
%endif |
|
%ifarch %{sparc} |
|
%patch140 -p1 |
|
%endif |
|
%patch141 -p1 |
|
%patch142 -p1 |
|
%patch143 -p1 -b .tsc-on-ppc |
|
%if !%{with_gdbm} |
|
%patch144 -p1 |
|
%endif |
|
# 00145: upstream as of Python 2.7.3 |
|
%patch146 -p1 |
|
%patch147 -p1 |
|
# 00148: upstream as of Python 2.7.3 |
|
# 00149: not for python 2 |
|
# 00150: not for python 2 |
|
# 00151: upstream as of Python 2.7.3 |
|
# 00152: not for python 2 |
|
%patch153 -p0 |
|
# 00154: not for python 2 |
|
%patch155 -p1 |
|
%patch156 -p1 |
|
%patch157 -p1 |
|
# 00158: upstream as of Python 2.7.4 |
|
# 00160: not for python 2 |
|
# 00161: not for python 2 yet |
|
# 00162: not for python 2 yet |
|
# 00163: not for python 2 yet |
|
# 00164: not for python 2 yet |
|
%patch165 -p1 |
|
mv Modules/cryptmodule.c Modules/_cryptmodule.c |
|
%patch166 -p1 |
|
%patch167 -p1 |
|
%patch168 -p1 |
|
%patch169 -p1 |
|
%patch170 -p1 |
|
# 00171: upstream as of Python 2.7.4 |
|
# 00171: upstream as of Python 2.7.4 |
|
%patch173 -p1 |
|
%patch174 -p1 -b .fix-for-usr-move |
|
# 00175: upstream as of Python 2.7.5 |
|
# 00176: not for python 2 |
|
# 00177: not for python 2 |
|
# 00178: not for python 2 |
|
# 00179: not for python 2 |
|
%patch180 -p1 |
|
%patch181 -p1 |
|
# 00182: not for python2 |
|
# 00183: not for python2 |
|
%patch184 -p1 |
|
%patch185 -p1 |
|
%patch186 -p1 |
|
%patch187 -p1 |
|
%patch188 -p1 |
|
%patch189 -p1 |
|
%patch190 -p0 |
|
%patch191 -p1 |
|
%patch192 -p1 |
|
%patch193 -p1 |
|
%patch194 -p0 |
|
%patch195 -p1 |
|
%patch196 -p1 |
|
%patch197 -p1 |
|
%patch198 -p1 |
|
%patch199 -p1 |
|
%patch200 -p1 |
|
%patch201 -p1 |
|
%patch202 -p1 |
|
%patch203 -p1 |
|
%patch204 -p1 |
|
%patch205 -p1 |
|
%patch206 -p1 |
|
%patch207 -p1 |
|
%patch208 -p1 |
|
%patch209 -p1 |
|
%patch210 -p1 |
|
%patch211 -p1 |
|
%patch212 -p1 |
|
%patch213 -p1 |
|
%patch214 -p1 |
|
%patch215 -p1 |
|
%patch216 -p1 |
|
%patch217 -p1 |
|
%patch218 -p1 |
|
%patch219 -p1 |
|
%patch220 -p1 |
|
# 00221: Dropped because of regressions |
|
%patch222 -p1 |
|
%patch223 -p1 |
|
%patch224 -p1 |
|
%patch225 -p1 |
|
%patch227 -p1 |
|
%patch228 -p1 |
|
%patch229 -p1 |
|
%patch230 -p1 |
|
%patch231 -p1 |
|
%patch232 -p1 |
|
%patch233 -p1 |
|
%patch234 -p1 |
|
%patch235 -p1 |
|
%patch236 -p1 |
|
%patch237 -p1 |
|
%patch238 -p1 |
|
%patch240 -p1 |
|
%patch241 -p1 |
|
%patch242 -p1 |
|
%patch255 -p1 |
|
%patch256 -p1 |
|
%patch257 -p1 |
|
%patch263 -p1 |
|
%patch265 -p1 |
|
%patch266 -p1 |
|
%patch268 -p1 |
|
%patch275 -p1 |
|
%patch276 -p1 |
|
%patch281 -p1 |
|
%patch282 -p1 |
|
%patch285 -p1 |
|
%patch287 -p1 |
|
%patch295 -p1 |
|
%patch296 -p1 |
|
%patch298 -p1 |
|
%patch299 -p1 |
|
%patch303 -p1 |
|
%patch305 -p1 |
|
%patch306 -p1 |
|
|
|
|
|
# This shouldn't be necesarry, but is right now (2.2a3) |
|
find -name "*~" |xargs rm -f |
|
|
|
%if ! 0%{regenerate_autotooling_patch} |
|
# Normally we apply the patch to "configure" |
|
# We don't apply the patch if we're working towards regenerating it |
|
%patch5000 -p0 -b .autotool-intermediates |
|
%endif |
|
|
|
|
|
# ====================================================== |
|
# Configuring and building the code: |
|
# ====================================================== |
|
|
|
%build |
|
topdir=$(pwd) |
|
export CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -fPIC -fwrapv" |
|
export CXXFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -fPIC -fwrapv" |
|
export CPPFLAGS="$(pkg-config --cflags-only-I libffi)" |
|
export OPT="$RPM_OPT_FLAGS -D_GNU_SOURCE -fPIC -fwrapv" |
|
export LINKCC="gcc" |
|
export LDFLAGS="$RPM_LD_FLAGS" |
|
if pkg-config openssl ; then |
|
export CFLAGS="$CFLAGS $(pkg-config --cflags openssl)" |
|
export LDFLAGS="$LDFLAGS $(pkg-config --libs-only-L openssl)" |
|
fi |
|
# compile with -O3 for ppc64 as requested in |
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1051076 |
|
%ifarch %{power64} |
|
export CFLAGS="$CFLAGS -O3" |
|
export CXXFLAGS="$CXXFLAGS -O3" |
|
export OPT="$OPT -O3" |
|
%endif |
|
# Force CC |
|
export CC=gcc |
|
|
|
%if 0%{regenerate_autotooling_patch} |
|
# If enabled, this code regenerates the patch to "configure", using a |
|
# local copy of autoconf-2.65, then exits the build |
|
# |
|
# The following assumes that the copy is installed to ~/autoconf-2.65/bin |
|
# as per these instructions: |
|
# http://bugs.python.org/issue7997 |
|
|
|
for f in pyconfig.h.in configure ; do |
|
cp $f $f.autotool-intermediates ; |
|
done |
|
|
|
# Rerun the autotools: |
|
PATH=~/autoconf-2.65/bin:$PATH autoconf |
|
autoheader |
|
|
|
# Regenerate the patch: |
|
gendiff . .autotool-intermediates > %{PATCH5000} |
|
|
|
|
|
# Exit the build |
|
exit 1 |
|
%endif |
|
|
|
# Define a function, for how to perform a "build" of python for a given |
|
# configuration: |
|
BuildPython() { |
|
ConfName=$1 |
|
BinaryName=$2 |
|
SymlinkName=$3 |
|
ExtraConfigArgs=$4 |
|
PathFixWithThisBinary=$5 |
|
|
|
ConfDir=build/$ConfName |
|
|
|
echo STARTING: BUILD OF PYTHON FOR CONFIGURATION: $ConfName - %{_bindir}/$BinaryName |
|
mkdir -p $ConfDir |
|
|
|
pushd $ConfDir |
|
|
|
# Use the freshly created "configure" script, but in the directory two above: |
|
%global _configure $topdir/configure |
|
|
|
%configure \ |
|
--enable-ipv6 \ |
|
--enable-shared \ |
|
--enable-unicode=%{unicode} \ |
|
--with-dbmliborder=gdbm:ndbm:bdb \ |
|
--with-system-expat \ |
|
--with-system-ffi \ |
|
%if 0%{?with_systemtap} |
|
--with-dtrace \ |
|
--with-tapset-install-dir=%{tapsetdir} \ |
|
%endif |
|
%if 0%{?with_valgrind} |
|
--with-valgrind \ |
|
%endif |
|
$ExtraConfigArgs \ |
|
%{nil} |
|
|
|
make EXTRA_CFLAGS="$CFLAGS" %{?_smp_mflags} |
|
|
|
# We need to fix shebang lines across the full source tree. |
|
# |
|
# We do this using the pathfix.py script, which requires one of the |
|
# freshly-built Python binaries. |
|
# |
|
# We use the optimized python binary, and make the shebangs point at that same |
|
# optimized python binary: |
|
if $PathFixWithThisBinary |
|
then |
|
LD_LIBRARY_PATH="$topdir/$ConfDir" ./$BinaryName \ |
|
$topdir/Tools/scripts/pathfix.py \ |
|
-i "%{_bindir}/env $BinaryName" \ |
|
$topdir |
|
fi |
|
|
|
# Rebuild with new python |
|
# We need a link to a versioned python in the build directory |
|
ln -s $BinaryName $SymlinkName |
|
LD_LIBRARY_PATH="$topdir/$ConfDir" PATH=$PATH:$topdir/$ConfDir make -s EXTRA_CFLAGS="$CFLAGS" %{?_smp_mflags} |
|
|
|
popd |
|
echo FINISHED: BUILD OF PYTHON FOR CONFIGURATION: $ConfDir |
|
} |
|
|
|
# Use "BuildPython" to support building with different configurations: |
|
|
|
%if 0%{?with_debug_build} |
|
BuildPython debug \ |
|
python-debug \ |
|
python%{pybasever}-debug \ |
|
%ifarch %{ix86} x86_64 ppc %{power64} |
|
"--with-pydebug --with-tsc --with-count-allocs --with-call-profile" \ |
|
%else |
|
"--with-pydebug --with-count-allocs --with-call-profile" \ |
|
%endif |
|
false |
|
%endif # with_debug_build |
|
|
|
BuildPython optimized \ |
|
python \ |
|
python%{pybasever} \ |
|
"" \ |
|
true |
|
|
|
|
|
# ====================================================== |
|
# Installing the built code: |
|
# ====================================================== |
|
|
|
%install |
|
topdir=$(pwd) |
|
rm -rf %{buildroot} |
|
mkdir -p %{buildroot}%{_prefix} %{buildroot}%{_mandir} |
|
|
|
# Clean up patched .py files that are saved as .lib64 |
|
for f in distutils/command/install distutils/sysconfig; do |
|
rm -f Lib/$f.py.lib64 |
|
done |
|
|
|
InstallPython() { |
|
|
|
ConfName=$1 |
|
BinaryName=$2 |
|
PyInstSoName=$3 |
|
|
|
ConfDir=build/$ConfName |
|
|
|
echo STARTING: INSTALL OF PYTHON FOR CONFIGURATION: $ConfName - %{_bindir}/$BinaryName |
|
mkdir -p $ConfDir |
|
|
|
pushd $ConfDir |
|
|
|
make install DESTDIR=%{buildroot} |
|
|
|
# We install a collection of hooks for gdb that make it easier to debug |
|
# executables linked against libpython (such as /usr/lib/python itself) |
|
# |
|
# These hooks are implemented in Python itself |
|
# |
|
# gdb-archer looks for them in the same path as the ELF file, with a -gdb.py suffix. |
|
# We put them in the debuginfo package by installing them to e.g.: |
|
# /usr/lib/debug/usr/lib/libpython2.6.so.1.0.debug-gdb.py |
|
# (note that the debug path is /usr/lib/debug for both 32/64 bit) |
|
# |
|
# See https://fedoraproject.org/wiki/Features/EasierPythonDebugging for more |
|
# information |
|
# |
|
# Initially I tried: |
|
# /usr/lib/libpython2.6.so.1.0-gdb.py |
|
# but doing so generated noise when ldconfig was rerun (rhbz:562980) |
|
# |
|
|
|
%if 0%{?with_gdb_hooks} |
|
DirHoldingGdbPy=%{_prefix}/lib/debug/%{_libdir} |
|
PathOfGdbPy=$DirHoldingGdbPy/$PyInstSoName.debug-gdb.py |
|
|
|
mkdir -p %{buildroot}$DirHoldingGdbPy |
|
cp $topdir/Tools/gdb/libpython.py %{buildroot}$PathOfGdbPy |
|
|
|
# Manually byte-compile the file, in case find-debuginfo.sh is run before |
|
# brp-python-bytecompile, so that the .pyc/.pyo files are properly listed in |
|
# the debuginfo manifest: |
|
LD_LIBRARY_PATH="$topdir/$ConfDir" $topdir/$ConfDir/$BinaryName \ |
|
-c "import compileall; import sys; compileall.compile_dir('%{buildroot}$DirHoldingGdbPy', ddir='$DirHoldingGdbPy')" |
|
|
|
LD_LIBRARY_PATH="$topdir/$ConfDir" $topdir/$ConfDir/$BinaryName -O \ |
|
-c "import compileall; import sys; compileall.compile_dir('%{buildroot}$DirHoldingGdbPy', ddir='$DirHoldingGdbPy')" |
|
%endif # with_gdb_hooks |
|
|
|
popd |
|
|
|
echo FINISHED: INSTALL OF PYTHON FOR CONFIGURATION: $ConfName |
|
} |
|
|
|
# Use "InstallPython" to support building with different configurations: |
|
|
|
# Install the "debug" build first, so that we can move some files aside |
|
%if 0%{?with_debug_build} |
|
InstallPython debug \ |
|
python%{pybasever}-debug \ |
|
%{py_INSTSONAME_debug} |
|
%endif # with_debug_build |
|
|
|
# Now the optimized build: |
|
InstallPython optimized \ |
|
python%{pybasever} \ |
|
%{py_INSTSONAME_optimized} |
|
|
|
|
|
# Fix the interpreter path in binaries installed by distutils |
|
# (which changes them by itself) |
|
# Make sure we preserve the file permissions |
|
for fixed in %{buildroot}%{_bindir}/pydoc; do |
|
sed 's,#!.*/python$,#!%{_bindir}/env python%{pybasever},' $fixed > $fixed- \ |
|
&& cat $fixed- > $fixed && rm -f $fixed- |
|
done |
|
|
|
# Junk, no point in putting in -test sub-pkg |
|
rm -f %{buildroot}/%{pylibdir}/idlelib/testcode.py* |
|
|
|
# don't include tests that are run at build time in the package |
|
# This is documented, and used: rhbz#387401 |
|
if /bin/false; then |
|
# Move this to -test subpackage. |
|
mkdir save_bits_of_test |
|
for i in test_support.py __init__.py; do |
|
cp -a %{buildroot}/%{pylibdir}/test/$i save_bits_of_test |
|
done |
|
rm -rf %{buildroot}/%{pylibdir}/test |
|
mkdir %{buildroot}/%{pylibdir}/test |
|
cp -a save_bits_of_test/* %{buildroot}/%{pylibdir}/test |
|
fi |
|
|
|
%if %{main_python} |
|
%else |
|
mv %{buildroot}%{_bindir}/python %{buildroot}%{_bindir}/%{python} |
|
%if 0%{?with_debug_build} |
|
mv %{buildroot}%{_bindir}/python-debug %{buildroot}%{_bindir}/%{python}-debug |
|
%endif # with_debug_build |
|
mv %{buildroot}/%{_mandir}/man1/python.1 %{buildroot}/%{_mandir}/man1/python%{pybasever}.1 |
|
%endif |
|
|
|
# tools |
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{site_packages} |
|
|
|
#pynche |
|
install -p -m755 %{SOURCE7} ${RPM_BUILD_ROOT}%{_bindir}/pynche |
|
chmod 755 ${RPM_BUILD_ROOT}%{_bindir}/pynche |
|
rm -f Tools/pynche/*.pyw |
|
cp -rp Tools/pynche \ |
|
${RPM_BUILD_ROOT}%{site_packages}/ |
|
|
|
mv Tools/pynche/README Tools/pynche/README.pynche |
|
|
|
#gettext |
|
install -m755 Tools/i18n/pygettext.py %{buildroot}%{_bindir}/ |
|
install -m755 Tools/i18n/msgfmt.py %{buildroot}%{_bindir}/ |
|
|
|
# Useful development tools |
|
install -m755 -d %{buildroot}%{tools_dir}/scripts |
|
install Tools/README %{buildroot}%{tools_dir}/ |
|
install Tools/scripts/*py %{buildroot}%{tools_dir}/scripts/ |
|
|
|
# Documentation tools |
|
install -m755 -d %{buildroot}%{doc_tools_dir} |
|
#install -m755 Doc/tools/mkhowto %{buildroot}%{doc_tools_dir} |
|
|
|
# Useful demo scripts |
|
install -m755 -d %{buildroot}%{demo_dir} |
|
cp -ar Demo/* %{buildroot}%{demo_dir} |
|
|
|
# Get rid of crap |
|
find %{buildroot}/ -name "*~"|xargs rm -f |
|
find %{buildroot}/ -name ".cvsignore"|xargs rm -f |
|
find %{buildroot}/ -name "*.bat"|xargs rm -f |
|
find . -name "*~"|xargs rm -f |
|
find . -name ".cvsignore"|xargs rm -f |
|
#zero length |
|
rm -f %{buildroot}%{pylibdir}/LICENSE.txt |
|
|
|
|
|
#make the binaries install side by side with the main python |
|
%if !%{main_python} |
|
pushd %{buildroot}%{_bindir} |
|
mv idle idle%{__python_ver} |
|
mv pynche pynche%{__python_ver} |
|
mv pygettext.py pygettext%{__python_ver}.py |
|
mv msgfmt.py msgfmt%{__python_ver}.py |
|
mv smtpd.py smtpd%{__python_ver}.py |
|
mv pydoc pydoc%{__python_ver} |
|
popd |
|
%endif |
|
|
|
# Fix for bug #136654 |
|
rm -f %{buildroot}%{pylibdir}/email/test/data/audiotest.au %{buildroot}%{pylibdir}/test/audiotest.au |
|
|
|
# Fix bug #143667: python should own /usr/lib/python2.x on 64-bit machines |
|
%if "%{_lib}" == "lib64" |
|
install -d %{buildroot}/usr/lib/python%{pybasever}/site-packages |
|
%endif |
|
|
|
# Make python-devel multilib-ready (bug #192747, #139911) |
|
%global _pyconfig32_h pyconfig-32.h |
|
%global _pyconfig64_h pyconfig-64.h |
|
|
|
%ifarch %{power64} s390x x86_64 ia64 alpha sparc64 aarch64 |
|
%global _pyconfig_h %{_pyconfig64_h} |
|
%else |
|
%global _pyconfig_h %{_pyconfig32_h} |
|
%endif |
|
|
|
%if 0%{?with_debug_build} |
|
%global PyIncludeDirs python%{pybasever} python%{pybasever}-debug |
|
%else |
|
%global PyIncludeDirs python%{pybasever} |
|
%endif |
|
|
|
for PyIncludeDir in %{PyIncludeDirs} ; do |
|
mv %{buildroot}%{_includedir}/$PyIncludeDir/pyconfig.h \ |
|
%{buildroot}%{_includedir}/$PyIncludeDir/%{_pyconfig_h} |
|
cat > %{buildroot}%{_includedir}/$PyIncludeDir/pyconfig.h << EOF |
|
#include <bits/wordsize.h> |
|
|
|
#if __WORDSIZE == 32 |
|
#include "%{_pyconfig32_h}" |
|
#elif __WORDSIZE == 64 |
|
#include "%{_pyconfig64_h}" |
|
#else |
|
#error "Unknown word size" |
|
#endif |
|
EOF |
|
done |
|
ln -s ../../libpython%{pybasever}.so %{buildroot}%{pylibdir}/config/libpython%{pybasever}.so |
|
|
|
# Fix for bug 201434: make sure distutils looks at the right pyconfig.h file |
|
# Similar for sysconfig: sysconfig.get_config_h_filename tries to locate |
|
# pyconfig.h so it can be parsed, and needs to do this at runtime in site.py |
|
# when python starts up. |
|
# |
|
# Split this out so it goes directly to the pyconfig-32.h/pyconfig-64.h |
|
# variants: |
|
sed -i -e "s/'pyconfig.h'/'%{_pyconfig_h}'/" \ |
|
%{buildroot}%{pylibdir}/distutils/sysconfig.py \ |
|
%{buildroot}%{pylibdir}/sysconfig.py |
|
|
|
# Install macros for rpm: |
|
mkdir -p %{buildroot}/%{_sysconfdir}/rpm |
|
install -m 644 %{SOURCE6} %{buildroot}/%{_sysconfdir}/rpm |
|
install -m 644 %{SOURCE10} %{buildroot}/%{_sysconfdir}/rpm |
|
|
|
# Make python folder for config files under /etc |
|
mkdir -p %{buildroot}/%{_sysconfdir}/python |
|
install -m 644 %{SOURCE8} %{buildroot}/%{_sysconfdir}/python |
|
|
|
# Ensure that the curses module was linked against libncursesw.so, rather than |
|
# libncurses.so (bug 539917) |
|
ldd %{buildroot}/%{dynload_dir}/_curses*.so \ |
|
| grep curses \ |
|
| grep libncurses.so && (echo "_curses.so linked against libncurses.so" ; exit 1) |
|
|
|
# Ensure that the debug modules are linked against the debug libpython, and |
|
# likewise for the optimized modules and libpython: |
|
for Module in %{buildroot}/%{dynload_dir}/*.so ; do |
|
case $Module in |
|
*_d.so) |
|
ldd $Module | grep %{py_INSTSONAME_optimized} && |
|
(echo Debug module $Module linked against optimized %{py_INSTSONAME_optimized} ; exit 1) |
|
|
|
;; |
|
*) |
|
ldd $Module | grep %{py_INSTSONAME_debug} && |
|
(echo Optimized module $Module linked against debug %{py_INSTSONAME_optimized} ; exit 1) |
|
;; |
|
esac |
|
done |
|
|
|
# |
|
# Systemtap hooks: |
|
# |
|
%if 0%{?with_systemtap} |
|
# Install a tapset for this libpython into tapsetdir, fixing up the path to the |
|
# library: |
|
mkdir -p %{buildroot}%{tapsetdir} |
|
%ifarch %{power64} s390x x86_64 ia64 alpha sparc64 aarch64 |
|
%global libpython_stp_optimized libpython%{pybasever}-64.stp |
|
%global libpython_stp_debug libpython%{pybasever}-debug-64.stp |
|
%else |
|
%global libpython_stp_optimized libpython%{pybasever}-32.stp |
|
%global libpython_stp_debug libpython%{pybasever}-debug-32.stp |
|
%endif |
|
|
|
sed \ |
|
-e "s|LIBRARY_PATH|%{_libdir}/%{py_INSTSONAME_optimized}|" \ |
|
%{SOURCE3} \ |
|
> %{buildroot}%{tapsetdir}/%{libpython_stp_optimized} |
|
|
|
%if 0%{?with_debug_build} |
|
sed \ |
|
-e "s|LIBRARY_PATH|%{_libdir}/%{py_INSTSONAME_debug}|" \ |
|
%{SOURCE3} \ |
|
> %{buildroot}%{tapsetdir}/%{libpython_stp_debug} |
|
%endif # with_debug_build |
|
%endif # with_systemtap |
|
|
|
# Replace scripts shebangs in usr/bin of subpackage tools |
|
#(rhbz#987038) |
|
sed -i "s|^#\!.\?/usr/bin.*$|#\! %{__python}|" \ |
|
%{buildroot}%{_bindir}/pygettext.py \ |
|
%{buildroot}%{_bindir}/msgfmt.py \ |
|
%{buildroot}%{_bindir}/smtpd.py \ |
|
%{buildroot}%{demo_dir}/scripts/find-uname.py \ |
|
%{buildroot}%{demo_dir}/pdist/rcvs \ |
|
%{buildroot}%{demo_dir}/pdist/rcsbump \ |
|
%{buildroot}%{demo_dir}/pdist/rrcs \ |
|
%{buildroot}%{site_packages}/pynche/pynche |
|
|
|
# Make library-files user writable |
|
# rhbz#1046276 |
|
/usr/bin/chmod 755 %{buildroot}%{dynload_dir}/*.so |
|
/usr/bin/chmod 755 %{buildroot}%{_libdir}/libpython%{pybasever}.so.1.0 |
|
%if 0%{?with_debug_build} |
|
/usr/bin/chmod 755 %{buildroot}%{_libdir}/libpython%{pybasever}_d.so.1.0 |
|
%endif # with_debug_build |
|
|
|
mkdir %{buildroot}%{_tmpfilesdir} |
|
cp %{SOURCE9} %{buildroot}%{_tmpfilesdir}/python.conf |
|
|
|
# Create the platform-python symlink pointing to usr/bin/python2.7 |
|
mkdir -p %{buildroot}%{_libexecdir} |
|
ln -s %{_bindir}/python%{pybasever} %{buildroot}%{_libexecdir}/platform-python |
|
|
|
# ====================================================== |
|
# Running the upstream test suite |
|
# ====================================================== |
|
|
|
%check |
|
topdir=$(pwd) |
|
CheckPython() { |
|
ConfName=$1 |
|
BinaryName=$2 |
|
ConfDir=$(pwd)/build/$ConfName |
|
|
|
echo STARTING: CHECKING OF PYTHON FOR CONFIGURATION: $ConfName |
|
|
|
# Note that we're running the tests using the version of the code in the |
|
# builddir, not in the buildroot. |
|
|
|
pushd $ConfDir |
|
|
|
EXTRATESTOPTS="--verbose" |
|
# skipping test_gdb on ppc64le until rhbz1260558 gets resolved |
|
%ifarch ppc64le |
|
EXTRATESTOPTS="$EXTRATESTOPTS -x test_gdb " |
|
%endif |
|
|
|
|
|
%if 0%{?with_huntrleaks} |
|
# Try to detect reference leaks on debug builds. By default this means |
|
# running every test 10 times (6 to stabilize, then 4 to watch): |
|
if [ "$ConfName" = "debug" ] ; then |
|
EXTRATESTOPTS="$EXTRATESTOPTS --huntrleaks : " |
|
fi |
|
%endif |
|
|
|
# Run the upstream test suite, setting "WITHIN_PYTHON_RPM_BUILD" so that the |
|
# our non-standard decorators take effect on the relevant tests: |
|
# @unittest._skipInRpmBuild(reason) |
|
# @unittest._expectedFailureInRpmBuild |
|
WITHIN_PYTHON_RPM_BUILD= EXTRATESTOPTS="$EXTRATESTOPTS" make test |
|
|
|
popd |
|
|
|
echo FINISHED: CHECKING OF PYTHON FOR CONFIGURATION: $ConfName |
|
|
|
} |
|
|
|
%if 0%{run_selftest_suite} |
|
|
|
# Check each of the configurations: |
|
%if 0%{?with_debug_build} |
|
CheckPython \ |
|
debug \ |
|
python%{pybasever}-debug |
|
%endif # with_debug_build |
|
CheckPython \ |
|
optimized \ |
|
python%{pybasever} |
|
|
|
%endif # run_selftest_suite |
|
|
|
|
|
# ====================================================== |
|
# Cleaning up |
|
# ====================================================== |
|
|
|
%clean |
|
rm -fr %{buildroot} |
|
|
|
|
|
# ====================================================== |
|
# Scriptlets |
|
# ====================================================== |
|
|
|
%post libs -p /sbin/ldconfig |
|
|
|
%postun libs -p /sbin/ldconfig |
|
|
|
|
|
|
|
%files |
|
%defattr(-, root, root, -) |
|
%doc LICENSE README |
|
%{_bindir}/pydoc* |
|
%{_bindir}/%{python} |
|
%if %{main_python} |
|
%{_bindir}/python2 |
|
%endif |
|
%{_bindir}/python%{pybasever} |
|
|
|
%{_libexecdir}/platform-python |
|
|
|
%{_mandir}/*/* |
|
|
|
%files libs |
|
%defattr(-,root,root,-) |
|
%doc LICENSE README |
|
%dir %{pylibdir} |
|
%dir %{dynload_dir} |
|
%dir %{_sysconfdir}/python |
|
%{_tmpfilesdir}/python.conf |
|
%config(noreplace) %{_sysconfdir}/python/cert-verification.cfg |
|
%{dynload_dir}/Python-%{version}-py%{pybasever}.egg-info |
|
%{dynload_dir}/_bisectmodule.so |
|
%{dynload_dir}/_bsddb.so |
|
%{dynload_dir}/_codecs_cn.so |
|
%{dynload_dir}/_codecs_hk.so |
|
%{dynload_dir}/_codecs_iso2022.so |
|
%{dynload_dir}/_codecs_jp.so |
|
%{dynload_dir}/_codecs_kr.so |
|
%{dynload_dir}/_codecs_tw.so |
|
%{dynload_dir}/_collectionsmodule.so |
|
%{dynload_dir}/_csv.so |
|
%{dynload_dir}/_ctypes.so |
|
%{dynload_dir}/_curses.so |
|
%{dynload_dir}/_curses_panel.so |
|
%{dynload_dir}/_elementtree.so |
|
%{dynload_dir}/_functoolsmodule.so |
|
%{dynload_dir}/_hashlib.so |
|
%{dynload_dir}/_heapq.so |
|
%{dynload_dir}/_hotshot.so |
|
%{dynload_dir}/_io.so |
|
%{dynload_dir}/_json.so |
|
%{dynload_dir}/_localemodule.so |
|
%{dynload_dir}/_lsprof.so |
|
%{dynload_dir}/_multibytecodecmodule.so |
|
%{dynload_dir}/_multiprocessing.so |
|
%{dynload_dir}/_randommodule.so |
|
%{dynload_dir}/_socketmodule.so |
|
%{dynload_dir}/_sqlite3.so |
|
%{dynload_dir}/_ssl.so |
|
%{dynload_dir}/_struct.so |
|
%{dynload_dir}/arraymodule.so |
|
%{dynload_dir}/audioop.so |
|
%{dynload_dir}/binascii.so |
|
%{dynload_dir}/bz2.so |
|
%{dynload_dir}/cPickle.so |
|
%{dynload_dir}/cStringIO.so |
|
%{dynload_dir}/cmathmodule.so |
|
%{dynload_dir}/_cryptmodule.so |
|
%{dynload_dir}/datetime.so |
|
%{dynload_dir}/dbm.so |
|
%{dynload_dir}/dlmodule.so |
|
%{dynload_dir}/fcntlmodule.so |
|
%{dynload_dir}/future_builtins.so |
|
%if %{with_gdbm} |
|
%{dynload_dir}/gdbmmodule.so |
|
%endif |
|
%{dynload_dir}/grpmodule.so |
|
%{dynload_dir}/imageop.so |
|
%{dynload_dir}/itertoolsmodule.so |
|
%{dynload_dir}/linuxaudiodev.so |
|
%{dynload_dir}/math.so |
|
%{dynload_dir}/mmapmodule.so |
|
%{dynload_dir}/nismodule.so |
|
%{dynload_dir}/operator.so |
|
%{dynload_dir}/ossaudiodev.so |
|
%{dynload_dir}/parsermodule.so |
|
%{dynload_dir}/pyexpat.so |
|
%{dynload_dir}/readline.so |
|
%{dynload_dir}/resource.so |
|
%{dynload_dir}/selectmodule.so |
|
%{dynload_dir}/spwdmodule.so |
|
%{dynload_dir}/stropmodule.so |
|
%{dynload_dir}/syslog.so |
|
%{dynload_dir}/termios.so |
|
%{dynload_dir}/timemodule.so |
|
%{dynload_dir}/timingmodule.so |
|
%{dynload_dir}/unicodedata.so |
|
%{dynload_dir}/xxsubtype.so |
|
%{dynload_dir}/zlibmodule.so |
|
|
|
%dir %{site_packages} |
|
%{site_packages}/README |
|
%{pylibdir}/*.py* |
|
%{pylibdir}/*.doc |
|
%{pylibdir}/wsgiref.egg-info |
|
%dir %{pylibdir}/bsddb |
|
%{pylibdir}/bsddb/*.py* |
|
%{pylibdir}/compiler |
|
%dir %{pylibdir}/ctypes |
|
%{pylibdir}/ctypes/*.py* |
|
%{pylibdir}/ctypes/macholib |
|
%{pylibdir}/curses |
|
%dir %{pylibdir}/distutils |
|
%{pylibdir}/distutils/*.py* |
|
%{pylibdir}/distutils/README |
|
%{pylibdir}/distutils/command |
|
%exclude %{pylibdir}/distutils/command/wininst-*.exe |
|
%dir %{pylibdir}/email |
|
%{pylibdir}/email/*.py* |
|
%{pylibdir}/email/mime |
|
%{pylibdir}/encodings |
|
%{pylibdir}/hotshot |
|
%{pylibdir}/idlelib |
|
%{pylibdir}/importlib |
|
%dir %{pylibdir}/json |
|
%{pylibdir}/json/*.py* |
|
%{pylibdir}/lib2to3 |
|
%exclude %{pylibdir}/lib2to3/tests |
|
%{pylibdir}/logging |
|
%{pylibdir}/multiprocessing |
|
%{pylibdir}/plat-linux2 |
|
%{pylibdir}/pydoc_data |
|
%dir %{pylibdir}/sqlite3 |
|
%{pylibdir}/sqlite3/*.py* |
|
%dir %{pylibdir}/test |
|
%{pylibdir}/test/test_support.py* |
|
%{pylibdir}/test/__init__.py* |
|
%{pylibdir}/unittest |
|
%{pylibdir}/wsgiref |
|
%{pylibdir}/xml |
|
%if "%{_lib}" == "lib64" |
|
%attr(0755,root,root) %dir %{_prefix}/lib/python%{pybasever} |
|
%attr(0755,root,root) %dir %{_prefix}/lib/python%{pybasever}/site-packages |
|
%endif |
|
|
|
# "Makefile" and the config-32/64.h file are needed by |
|
# distutils/sysconfig.py:_init_posix(), so we include them in the libs |
|
# package, along with their parent directories (bug 531901): |
|
%dir %{pylibdir}/config |
|
%{pylibdir}/config/Makefile |
|
%dir %{_includedir}/python%{pybasever} |
|
%{_includedir}/python%{pybasever}/%{_pyconfig_h} |
|
|
|
%{_libdir}/%{py_INSTSONAME_optimized} |
|
%if 0%{?with_systemtap} |
|
%{tapsetdir}/%{libpython_stp_optimized} |
|
%doc systemtap-example.stp pyfuntop.stp |
|
%endif |
|
|
|
%files devel |
|
%defattr(-,root,root,-) |
|
%{_libdir}/pkgconfig/python-%{pybasever}.pc |
|
%{_libdir}/pkgconfig/python.pc |
|
%{_libdir}/pkgconfig/python2.pc |
|
%{pylibdir}/config/* |
|
%exclude %{pylibdir}/config/Makefile |
|
%{pylibdir}/distutils/command/wininst-*.exe |
|
%{_includedir}/python%{pybasever}/*.h |
|
%exclude %{_includedir}/python%{pybasever}/%{_pyconfig_h} |
|
%doc Misc/README.valgrind Misc/valgrind-python.supp Misc/gdbinit |
|
%if %{main_python} |
|
%{_bindir}/python-config |
|
%{_bindir}/python2-config |
|
%endif |
|
%{_bindir}/python%{pybasever}-config |
|
%{_libdir}/libpython%{pybasever}.so |
|
%{_sysconfdir}/rpm/macros.python |
|
%{_sysconfdir}/rpm/macros.python2 |
|
|
|
%files tools |
|
%defattr(-,root,root,755) |
|
%doc Tools/pynche/README.pynche |
|
%{site_packages}/pynche |
|
%{_bindir}/smtpd*.py* |
|
%{_bindir}/2to3* |
|
%{_bindir}/idle* |
|
%{_bindir}/pynche* |
|
%{_bindir}/pygettext*.py* |
|
%{_bindir}/msgfmt*.py* |
|
%{tools_dir} |
|
%{demo_dir} |
|
%{pylibdir}/Doc |
|
|
|
%files -n %{tkinter} |
|
%defattr(-,root,root,755) |
|
%{pylibdir}/lib-tk |
|
%{dynload_dir}/_tkinter.so |
|
|
|
%files test |
|
%defattr(-, root, root, -) |
|
%{pylibdir}/bsddb/test |
|
%{pylibdir}/ctypes/test |
|
%{pylibdir}/distutils/tests |
|
%{pylibdir}/email/test |
|
%{pylibdir}/json/tests |
|
%{pylibdir}/lib2to3/tests |
|
%{pylibdir}/sqlite3/test |
|
%{pylibdir}/test/* |
|
# These two are shipped in the main subpackage: |
|
%exclude %{pylibdir}/test/test_support.py* |
|
%exclude %{pylibdir}/test/__init__.py* |
|
%{dynload_dir}/_ctypes_test.so |
|
%{dynload_dir}/_testcapimodule.so |
|
|
|
|
|
# We don't bother splitting the debug build out into further subpackages: |
|
# if you need it, you're probably a developer. |
|
|
|
# Hence the manifest is the combination of analogous files in the manifests of |
|
# all of the other subpackages |
|
|
|
%if 0%{?with_debug_build} |
|
%files debug |
|
%defattr(-,root,root,-) |
|
|
|
# Analog of the core subpackage's files: |
|
%{_bindir}/%{python}-debug |
|
%if %{main_python} |
|
%{_bindir}/python2-debug |
|
%endif |
|
%{_bindir}/python%{pybasever}-debug |
|
|
|
# Analog of the -libs subpackage's files, with debug builds of the built-in |
|
# "extension" modules: |
|
%{dynload_dir}/_bisectmodule_d.so |
|
%{dynload_dir}/_bsddb_d.so |
|
%{dynload_dir}/_codecs_cn_d.so |
|
%{dynload_dir}/_codecs_hk_d.so |
|
%{dynload_dir}/_codecs_iso2022_d.so |
|
%{dynload_dir}/_codecs_jp_d.so |
|
%{dynload_dir}/_codecs_kr_d.so |
|
%{dynload_dir}/_codecs_tw_d.so |
|
%{dynload_dir}/_collectionsmodule_d.so |
|
%{dynload_dir}/_csv_d.so |
|
%{dynload_dir}/_ctypes_d.so |
|
%{dynload_dir}/_curses_d.so |
|
%{dynload_dir}/_curses_panel_d.so |
|
%{dynload_dir}/_elementtree_d.so |
|
%{dynload_dir}/_functoolsmodule_d.so |
|
%{dynload_dir}/_hashlib_d.so |
|
%{dynload_dir}/_heapq_d.so |
|
%{dynload_dir}/_hotshot_d.so |
|
%{dynload_dir}/_io_d.so |
|
%{dynload_dir}/_json_d.so |
|
%{dynload_dir}/_localemodule_d.so |
|
%{dynload_dir}/_lsprof_d.so |
|
%{dynload_dir}/_multibytecodecmodule_d.so |
|
%{dynload_dir}/_multiprocessing_d.so |
|
%{dynload_dir}/_randommodule_d.so |
|
%{dynload_dir}/_socketmodule_d.so |
|
%{dynload_dir}/_sqlite3_d.so |
|
%{dynload_dir}/_ssl_d.so |
|
%{dynload_dir}/_struct_d.so |
|
%{dynload_dir}/arraymodule_d.so |
|
%{dynload_dir}/audioop_d.so |
|
%{dynload_dir}/binascii_d.so |
|
%{dynload_dir}/bz2_d.so |
|
%{dynload_dir}/cPickle_d.so |
|
%{dynload_dir}/cStringIO_d.so |
|
%{dynload_dir}/cmathmodule_d.so |
|
%{dynload_dir}/_cryptmodule_d.so |
|
%{dynload_dir}/datetime_d.so |
|
%{dynload_dir}/dbm_d.so |
|
%{dynload_dir}/dlmodule_d.so |
|
%{dynload_dir}/fcntlmodule_d.so |
|
%{dynload_dir}/future_builtins_d.so |
|
%if %{with_gdbm} |
|
%{dynload_dir}/gdbmmodule_d.so |
|
%endif |
|
%{dynload_dir}/grpmodule_d.so |
|
%{dynload_dir}/imageop_d.so |
|
%{dynload_dir}/itertoolsmodule_d.so |
|
%{dynload_dir}/linuxaudiodev_d.so |
|
%{dynload_dir}/math_d.so |
|
%{dynload_dir}/mmapmodule_d.so |
|
%{dynload_dir}/nismodule_d.so |
|
%{dynload_dir}/operator_d.so |
|
%{dynload_dir}/ossaudiodev_d.so |
|
%{dynload_dir}/parsermodule_d.so |
|
%{dynload_dir}/pyexpat_d.so |
|
%{dynload_dir}/readline_d.so |
|
%{dynload_dir}/resource_d.so |
|
%{dynload_dir}/selectmodule_d.so |
|
%{dynload_dir}/spwdmodule_d.so |
|
%{dynload_dir}/stropmodule_d.so |
|
%{dynload_dir}/syslog_d.so |
|
%{dynload_dir}/termios_d.so |
|
%{dynload_dir}/timemodule_d.so |
|
%{dynload_dir}/timingmodule_d.so |
|
%{dynload_dir}/unicodedata_d.so |
|
%{dynload_dir}/xxsubtype_d.so |
|
%{dynload_dir}/zlibmodule_d.so |
|
|
|
# No need to split things out the "Makefile" and the config-32/64.h file as we |
|
# do for the regular build above (bug 531901), since they're all in one package |
|
# now; they're listed below, under "-devel": |
|
|
|
%{_libdir}/%{py_INSTSONAME_debug} |
|
%if 0%{?with_systemtap} |
|
%{tapsetdir}/%{libpython_stp_debug} |
|
%endif |
|
|
|
# Analog of the -devel subpackage's files: |
|
%dir %{pylibdir}/config-debug |
|
%{_libdir}/pkgconfig/python-%{pybasever}-debug.pc |
|
%{_libdir}/pkgconfig/python-debug.pc |
|
%{_libdir}/pkgconfig/python2-debug.pc |
|
%{pylibdir}/config-debug/* |
|
%{_includedir}/python%{pybasever}-debug/*.h |
|
%if %{main_python} |
|
%{_bindir}/python-debug-config |
|
%{_bindir}/python2-debug-config |
|
%endif |
|
%{_bindir}/python%{pybasever}-debug-config |
|
%{_libdir}/libpython%{pybasever}_d.so |
|
|
|
# Analog of the -tools subpackage's files: |
|
# None for now; we could build precanned versions that have the appropriate |
|
# shebang if needed |
|
|
|
# Analog of the tkinter subpackage's files: |
|
%{dynload_dir}/_tkinter_d.so |
|
|
|
# Analog of the -test subpackage's files: |
|
%{dynload_dir}/_ctypes_test_d.so |
|
%{dynload_dir}/_testcapimodule_d.so |
|
|
|
%endif # with_debug_build |
|
|
|
# We put the debug-gdb.py file inside /usr/lib/debug to avoid noise from |
|
# ldconfig (rhbz:562980). |
|
# |
|
# The /usr/lib/rpm/redhat/macros defines the __debug_package macro to use |
|
# debugfiles.list, and it appears that everything below /usr/lib/debug and |
|
# (/usr/src/debug) gets added to this file (via LISTFILES) in |
|
# /usr/lib/rpm/find-debuginfo.sh |
|
# |
|
# Hence by installing it below /usr/lib/debug we ensure it is added to the |
|
# -debuginfo subpackage |
|
# (if it doesn't, then the rpmbuild ought to fail since the debug-gdb.py |
|
# payload file would be unpackaged) |
|
|
|
|
|
# ====================================================== |
|
# Finally, the changelog: |
|
# ====================================================== |
|
|
|
%changelog |
|
* Mon Sep 10 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-76 |
|
- Remove an unversioned obsoletes tag |
|
Resolves: rhbz#1627059 |
|
|
|
* Mon Jul 16 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-75 |
|
- Provide the /usr/libexec/platform-python symlink to the main binary |
|
Resolves: rhbz#1599159 |
|
|
|
* Tue Jun 12 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-74 |
|
- Fix OSERROR 17 due to _multiprocessing/semaphore.c assuming |
|
a one-to-one Pid -> process mapping |
|
Resolves: rhbz#1579432 |
|
|
|
* Wed May 30 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-73 |
|
- Remove 3DS cipher to mitigate CVE-2016-2183 (sweet32). |
|
Resolves: rhbz#1581901 |
|
|
|
* Thu May 03 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-72 |
|
- Fix CVE-2018-1060 and CVE-2018-1061 |
|
Resolves: rhbz#1563454 and rhbz#1549192 |
|
- Provide python2-libs from the python-libs subpackage |
|
Resolves: rhbz#1557460 |
|
|
|
* Wed Apr 18 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-71 |
|
- Limit the number of CPU cores when building the package on power architectures |
|
Resolves: rhbz#1568974 |
|
|
|
* Tue Apr 17 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-70 |
|
- Do not send IP addresses in SNI TLS extension |
|
Resolves: rhbz#1555314 |
|
|
|
* Tue Apr 17 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-69 |
|
- Fix nondeterministic read in test_pty |
|
Resolves: rhbz#1512160 |
|
|
|
* Mon Feb 19 2018 Tomas Orsava <torsava@redhat.com> - 2.7.5-68 |
|
- Add Conflicts tag with old virtualenv versions due to new behaviour of |
|
httplib (patch 295) |
|
Resolves: rhbz#1483438 |
|
|
|
* Mon Feb 19 2018 Tomas Orsava <torsava@redhat.com> - 2.7.5-67 |
|
- Re-add the private `_set_hostport` api to httplib (Patch 296) |
|
Resolves: rhbz#1546351 |
|
|
|
* Fri Feb 09 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-66 |
|
- Fix https connections behind a proxy. |
|
Resolves: rhbz#1483438 |
|
|
|
* Fri Dec 08 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-65 |
|
- Fix hanging of all threads when trying to access an inaccessible NFS server. |
|
Resolves: rhbz#1520068 |
|
|
|
* Tue Oct 17 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-64 |
|
- Fix an issue with the context parameter addition to xmlrpclib.ServerProxy |
|
Resolves: rhbz#1490392 |
|
|
|
* Fri Oct 13 2017 Petr Viktorin <pviktori@redhat.com> - 2.7.5-63 |
|
- Make it more likely for the system allocator to release free()d memory arenas |
|
Resolves: rhbz#1468410 |
|
|
|
* Wed Oct 11 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-62 |
|
- Add context parameter to xmlrpclib.ServerProxy |
|
Resolves: rhbz#1490392 |
|
|
|
* Tue Oct 03 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-61 |
|
- Increase imaplib's MAXLINE to accommodate modern mailbox sizes. |
|
Resolves: rhbz#1489858 |
|
|
|
* Tue Oct 03 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-60 |
|
- Fix fcntl() with integer argument on 64-bit big-endian platforms. |
|
Resolves: rhbz#1489858 |
|
|
|
* Tue Oct 03 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-59 |
|
- Increase timeouts in test_smtplib. |
|
Resolves: rhbz#1497795 |
|
|
|
* Wed May 03 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-58 |
|
- Set stream to None in case an _open() fails. |
|
Resolves: rhbz#1432003 |
|
|
|
* Tue Apr 11 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-57 |
|
- Fix implicit declaration warnings of functions added by patches 147 and 265 |
|
Resolves: rhbz#1441237 |
|
|
|
* Mon Apr 10 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-56 |
|
- Fix shutil.make_archive ignoring empty directories when creating zip files |
|
Resolves: rhbz#1439734 |
|
|
|
* Thu Mar 23 2017 Tomas Orsava <torsava@redhat.com> - 2.7.5-55 |
|
- Update Python RPM macros with new ones from EPEL7 to simplify packaging |
|
Resolves: rhbz#1297522 |
|
|
|
* Wed Mar 22 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-54 |
|
- Protect key list during fork() |
|
Resolves: rhbz#1268226 |
|
|
|
* Mon Mar 13 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-53 |
|
- Fix _ssl.c reference leaks |
|
Resolves: rhbz#1272562 |
|
|
|
* Mon Feb 27 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-52 |
|
- Workaround Python's threading library issue with non returning wait, for signals with timeout |
|
Resolves: rhbz#1368076 |
|
|
|
* Mon Jan 23 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-51 |
|
- Enable certificate verification by default |
|
Resolves: rhbz#1219110 |
|
|
|
* Wed Jan 18 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-50 |
|
- Fix incorrect parsing of certain regular expressions |
|
Resolves: rhbz#1373363 |
|
|
|
* Tue Jan 17 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-49 |
|
- Fix ssl module's parsing of GEN_RID subject alternative name fields in X.509 certs |
|
Resolves: rhbz#1364444 |
|
|
|
* Mon Aug 01 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-48 |
|
- Fix for CVE-2016-1000110 HTTPoxy attack |
|
Resolves: rhbz#1359164 |
|
|
|
* Mon Jul 11 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-47 |
|
- Fix for CVE-2016-5636: possible integer overflow and heap corruption in zipimporter.get_data() |
|
Resolves: rhbz#1356364 |
|
|
|
* Mon Jul 11 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-46 |
|
- Drop patch 221 that backported sslwrap function since it was introducing regressions |
|
- Refactor patch 227 |
|
Resolves: rhbz#1331425 |
|
|
|
* Tue Jun 21 2016 Tomas Orsava <torsava@redhat.com> - 2.7.5-45 |
|
- Fix for CVE-2016-0772 python: smtplib StartTLS stripping attack (rhbz#1303647) |
|
Raise an error when STARTTLS fails (upstream patch) |
|
- Fix for CVE-2016-5699 python: http protocol steam injection attack (rhbz#1303699) |
|
Disabled HTTP header injections in httplib (upstream patch) |
|
Resolves: rhbz#1346357 |
|
|
|
* Wed May 4 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-44 |
|
- Fix iteration over files with very long lines |
|
Resolves: rhbz#1271760 |
|
|
|
* Tue May 3 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-43 |
|
- Move python.conf from /etc/tmpfiles.d/ to /usr/lib/tmpfiles.d/ |
|
Resolves: rhbz#1288426 |
|
|
|
* Mon Apr 4 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-42 |
|
- JSON decoder lone surrogates fix |
|
Resolves: rhbz#1301017 |
|
|
|
* Mon Apr 4 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-41 |
|
- Updated PEP493 implementation |
|
Resolves: rhbz#1315758 |
|
|
|
* Thu Mar 31 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-40 |
|
- Backport of Computed Goto dispatch |
|
Resolves: rhbz#1289277 |
|
|
|
* Mon Mar 21 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-39 |
|
- Removal of the '$Date$' placeholder on the python(1) man page footer, |
|
which does not expand during build |
|
Resolves: rhbz#1268310 |
|
|
|
* Thu Mar 17 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-38 |
|
- Fix hashlib algorithms breaking by initializing OpenSSL_add_all_digests |
|
function in _hashlib library |
|
Resolves: rhbz#1295459 |
|
|
|
* Thu Mar 17 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-37 |
|
- Change HTTPS certificate verification to platform_default |
|
Resolves: rhbz#1278429 |
|
|
|
* Wed Mar 16 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-36 |
|
- Force all child threads to terminate in TestForkInThread |
|
Resolves: rhbz#1313259 |
|
|
|
* Thu Mar 10 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.7.5-35 |
|
- Adjusted tests to acknowledge lack of SSLv2 support |
|
Resolves: rhbz#1315310 |
|
|
|
* Fri Oct 09 2015 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-34 |
|
- Revert fix for rhbz#1117751 as it leads to regressions |
|
Resolves: rhbz#1117751 |
|
|
|
* Tue Sep 15 2015 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-33 |
|
- Only restore SIG_PIPE when Popen called with restore_sigpipe |
|
Resolves: rhbz#1117751 |
|
|
|
* Fri Sep 04 2015 Robert Kuska <rkuska@redhat.com> - 2.7.5-32 |
|
- Backport SSLSocket.version function |
|
- Temporary disable test_gdb on ppc64le rhbz#1260558 |
|
Resolves: rhbz#1259421 |
|
|
|
* Thu Aug 06 2015 Robert Kuska <rkuska@redhat.com> - 2.7.5-31 |
|
- Update load_cert_chain function to accept None keyfile |
|
Resolves: rhbz#1250611 |
|
|
|
* Tue Jul 07 2015 Robert Kuska <rkuska@redhat.com> - 2.7.5-30 |
|
- Change Patch224 according to latest update in PEP493 |
|
Resolves:rhbz#1219108 |
|
|
|
* Tue Jul 07 2015 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-29 |
|
- Popen shouldn't ignore SIG_PIPE |
|
Resolves: rhbz#1117751 |
|
|
|
* Tue Jul 07 2015 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-28 |
|
- Exclude python subprocess temp files from cleaning |
|
Resolves: rhbz#1058482 |
|
|
|
* Wed Jul 01 2015 Robert Kuska <rkuska@redhat.com> - 2.7.5-27 |
|
- Add list for cprofile sort option |
|
Resolves:rhbz#1237107 |
|
|
|
* Mon Jun 29 2015 Robert Kuska <rkuska@redhat.com> - 2.7.5-26 |
|
- Add switch to toggle cert verification on or off globally |
|
Resolves:rhbz#1219108 |
|
|
|
* Mon Jun 29 2015 Robert Kuska <rkuska@redhat.com> - 2.7.5-25 |
|
- PEP476 enable cert verifications by default |
|
Resolves:rhbz#1219110 |
|
|
|
* Mon Jun 29 2015 Robert Kuska <rkuska@redhat.com> - 2.7.5-24 |
|
- Massive backport of ssl module from python3 aka PEP466 |
|
Resolves: rhbz#1111461 |
|
|
|
* Tue Jun 23 2015 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-23 |
|
- Fixed CVE-2013-1753, CVE-2013-1752, CVE-2014-4616, CVE-2014-4650, CVE-2014-7185 |
|
Resolves: rhbz#1206574 |
|
|
|
* Mon Jun 22 2015 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-22 |
|
- Fix importing readline producing erroneous output |
|
Resolves: rhbz#1189301 |
|
|
|
* Mon Jun 22 2015 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-21 |
|
- Add missing import in bdist_rpm |
|
Resolves: rhbz#1177613 |
|
|
|
* Mon Jun 22 2015 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-20 |
|
- Avoid double close of subprocess pipes |
|
Resolves: rhbz#1103452 |
|
|
|
* Thu Apr 09 2015 Robert Kuska <rkuska@redhat.com> - 2.7.5-19 |
|
- make multiprocessing ignore EINTR |
|
Resolves: rhbz#1181624 |
|
|
|
* Wed Sep 3 2014 Peter Robinson <pbrobinson@redhat.com> 2.7.5-18 |
|
- valgrind is now supported on aarch64/ppc64le |
|
Resolves: rhbz#1137039 |
|
|
|
* Thu Aug 07 2014 Slavek Kabrda <bkabrda@redhat.com> - 2.7.5-17 |
|
- Fix building on ppc64le (fix test_gdb, disable valgrind support). |
|
Resolves: rhbz#1125657 |
|
|
|
* Mon Feb 10 2014 Tomas Radej <tradej@redhat.com> - 2.7.5-16 |
|
- Fix buffer overflow (upstream patch) |
|
Resolves: rhbz#1062376 |
|
|
|
* Tue Jan 28 2014 Daniel Mach <dmach@redhat.com> - 2.7.5-15 |
|
- Mass rebuild 2014-01-24 |
|
|
|
* Tue Jan 14 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-14 |
|
- Fix missing documentation for some keywords |
|
Resolves: rhbz#1032116 |
|
|
|
* Mon Jan 13 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-13 |
|
- Make library-files user writable |
|
Resolves: rhbz#1046276 |
|
|
|
* Fri Jan 10 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.5-12 |
|
- Use -O3 when building on ppc64. |
|
Resolves: rhbz#1051076 |
|
|
|
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.7.5-11 |
|
- Mass rebuild 2013-12-27 |
|
|
|
* Thu Nov 07 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-10 |
|
- Added an explicit RPATH to _elementtree.so |
|
Resolves: rhbz#1019345 |
|
|
|
* Thu Nov 07 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-9 |
|
- Fixed instances of #!/usr/bin/env python |
|
Resolves: rhbz#1019336 |
|
|
|
* Wed Oct 09 2013 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.5-8 |
|
- Fix gdb bindings on ppc64. |
|
Resolves: rhbz#835053 |
|
|
|
* Tue Aug 20 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-7 |
|
- Added fix for CVE-2013-4238 |
|
Resolves: rhbz#998781 |
|
|
|
* Tue Aug 20 2013 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.5-6 |
|
- Add explicit RPATH to pyexpat pointing at system libexpat (rhbz#996665). |
|
|
|
* Mon Aug 05 2013 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.5-5 |
|
- Fix memory leak in marshal.c, fixes rhbz#990554. |
|
|
|
* Wed Jul 24 2013 Robert Kuska <rkuska@redhat.com> - 2.7.5-4 |
|
- Change shebangs of scripts in tools subpackage |
|
(rhbz#987038) |
|
|
|
* Wed Jul 17 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-3 |
|
- Added patch that makes urllib2 honor no_proxy variable for ftp URLs |
|
(rhbz#971267) |
|
|
|
* Wed Jul 17 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.7.5-2 |
|
- Pulled patch fixing build with libffi containing multilib wrapper for ffi.h |
|
from Fedora (rhbz#979696) |
|
|
|
* Thu May 16 2013 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.5-1 |
|
- Updated to Python 2.7.5. |
|
- Refreshed patches: 0 (config), 102 (lib64), 121 (add Modules to build path), |
|
153 (gdb test noise) |
|
- Dropped patches: 126, 127 (big endian issues, both fixed upstream), |
|
175 (configure -Wformat, fixed upstream) |
|
- Synced patch numbers with python3.spec. |
|
|
|
* Tue May 14 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.4-5 |
|
- fix multilib issue in python-tools due to /usr/bin/pynche (source 7; |
|
rhbz#831437) |
|
|
|
* Thu May 02 2013 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.4-4 |
|
- Add patch that enables building on ppc64p7. |
|
|
|
* Mon Apr 22 2013 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.4-3 |
|
- Allow arbitrary timeout in Condition.wait (rhbz#917709). |
|
|
|
* Thu Apr 11 2013 Kalev Lember <kalevlember@gmail.com> - 2.7.4-2 |
|
- Build with libdb 5.3 instead of libdb4 |
|
- Refreshed patches: 0 (config), 102 (lib64) |
|
- Dropped patches: 54 (db4 version), 159 (db4 include path adjustment) |
|
|
|
* Mon Apr 08 2013 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.4-1 |
|
- Updated to Python 2.7.4. |
|
- Refreshed patches: 0 (config), 7 (sqlite encoding), 16 (rpath in config), |
|
55 (systemtap), 111 (no static lib), 112 (debug build), 113 (more |
|
configuration flags), 130 (add extension to python config), 134 (fix |
|
COUNT_ALLOCS in test_sys), 146 (haslib FIPS), 147 (add debug malloc stats), |
|
153 (fix gdb test noise), 157 (uid, gid overflow - fixed upstream, just |
|
keeping few more downstream tests), 165 (crypt module salt backport), |
|
175 (fix configure Wformat), 5000 (regenerated autotooling patch) |
|
- Dropped patches: 101 (lib64 regex; merged upstream), 171 (exception on |
|
missing /dev/urandom; merged upstream), 172 (poll for multiprocessing socket |
|
connection; merged upstream) |
|
|
|
* Mon Mar 25 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-35 |
|
- fix gcc 4.8 incompatibility (rhbz#927358); regenerate autotool intermediates |
|
|
|
* Wed Mar 6 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-34 |
|
- restrict scope of workaround for cmpi-bindings issue to avoid breaking |
|
in-tree running of test_sys and test_subprocess (rhbz#817554) |
|
|
|
* Wed Mar 6 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-33 |
|
- add workaround for cmpi-bindings issue (rhbz#817554) |
|
|
|
* Mon Mar 4 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-32 |
|
- add workaround for ENOPROTOOPT seen running selftests in Koji |
|
(rhbz#913732) |
|
|
|
* Mon Mar 4 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-31 |
|
- remove config flag from /etc/rpm/macros.python2 |
|
|
|
* Fri Feb 22 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-30 |
|
- remove __debug_package macro from comment |
|
|
|
* Fri Feb 22 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-29 |
|
- drop -b from application of patch 157 (uid/gid overflows) |
|
|
|
* Fri Feb 22 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-28 |
|
- fix bogus dates in changelog |
|
|
|
* Thu Feb 21 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-27 |
|
- port _multiprocessing.Connection.poll() to use the "poll" syscall, rather |
|
than "select", allowing large numbers of subprocesses (patch 172; |
|
rhbz#849992) |
|
|
|
* Thu Feb 21 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-26 |
|
- raise correct exception in os.urandom() when /dev/urandom is missing |
|
(patch 171; rhbz#907383) |
|
|
|
* Wed Feb 20 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-25 |
|
- in debug builds, try to print repr() when a C-level assert fails in the |
|
garbage collector (typically indicating a reference-counting error somewhere |
|
else e.g in an extension module) (patch 170; rhbz#850013) |
|
|
|
* Wed Feb 20 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-24 |
|
- move lib2to3/tests from python-libs to python-test (rhbz#850056) |
|
|
|
* Wed Feb 20 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-23 |
|
- use SHA-256 rather than implicitly using MD5 within the challenge handling |
|
in multiprocessing.connection (patch 169; rhbz#879695) |
|
|
|
* Wed Feb 20 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-22 |
|
- fix a problem with distutils.sysconfig when CFLAGS is defined in the |
|
environment (patch 168; rhbz#849994) |
|
|
|
* Wed Feb 20 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-21 |
|
- don't run any stack navigation tests in test_gdb for optimized builds |
|
(patch 167; rhbz#912025) |
|
|
|
* Wed Feb 20 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-20 |
|
- s/cryptmodule/_cryptmodule/ in package payload (rhbz#835021) |
|
|
|
* Tue Feb 19 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-19 |
|
- bulletproof the gdb debugging hooks against a failure seen in ARM builds |
|
(patch 166; rhbz#912025) |
|
- re-enable make check on ARM (rhbz#912025) |
|
|
|
* Tue Feb 19 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-18 |
|
- backport pre-canned ways of salting a password to the "crypt" module from 3.3 |
|
(rhbz#835021) |
|
|
|
* Tue Feb 19 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-17 |
|
- remove "_default_patch_fuzz" directive to avoid patches being silently |
|
misapplied (refresh patch 1, patch 101, patch 102, patch 111, patch 121, |
|
patch 158; rename patch 1, patch 101, patch 121; apply patch 54 before the |
|
lib64 patches to avoid fuzz problems caused by the conditional application |
|
of the lib64 patches) |
|
|
|
* Mon Feb 18 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.7.3-16 |
|
- disable make check on ARM for the moment until 912025 is fixed |
|
|
|
* Mon Feb 11 2013 David Malcolm <dmalcolm@redhat.com> - 2.7.3-15 |
|
- add aarch64 (rhbz#909783) |
|
|
|
* Thu Nov 29 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-14 |
|
- add BR on bluez-libs-devel (rhbz#879720) |
|
|
|
* Thu Aug 9 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-13 |
|
- remove f18 conditional from patch 159 |
|
|
|
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.3-12 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
|
|
|
* Tue Jul 17 2012 Bohuslav Kabrda <bkabrda@redhat.com> - 2.7.3-11 |
|
- fix memory leak in module _hashlib (patch 158, rhbz#836285) |
|
- fix db4 include path for libdb4 package (f18 and above) (patch 159) |
|
|
|
* Tue Jun 26 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-10 |
|
- fix missing include in uid/gid handling patch (patch 157; rhbz#830405) |
|
|
|
* Fri Jun 22 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-9 |
|
- use rpm macro for power64 (rhbz#834653) |
|
|
|
* Tue May 15 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-8 |
|
- update uid/gid handling to avoid int overflows seen with uid/gid |
|
values >= 2^31 on 32-bit architectures (patch 157; rhbz#697470) |
|
|
|
* Fri May 4 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-7 |
|
- renumber autotools patch from 300 to 5000 |
|
- specfile cleanups |
|
|
|
* Mon Apr 30 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-6 |
|
- try again to fix test_gdb.py (patch 156; rhbz#817072) |
|
|
|
* Mon Apr 30 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-5 |
|
- fix test_gdb.py (patch 156; rhbz#817072) |
|
|
|
* Fri Apr 20 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-4 |
|
- avoid allocating thunks in ctypes unless absolutely necessary, to avoid |
|
generating SELinux denials on "import ctypes" and "import uuid" when embedding |
|
Python within httpd (patch 155; rhbz#814391) |
|
|
|
* Thu Apr 19 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-3 |
|
- add explicit version requirements on expat to avoid linkage problems with |
|
XML_SetHashSalt |
|
|
|
* Wed Apr 18 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-2 |
|
- fix -config symlinks (patch 112; rhbz#813836) |
|
|
|
* Wed Apr 11 2012 David Malcolm <dmalcolm@redhat.com> - 2.7.3-1 |
|
- 2.7.3: refresh patch 102 (lib64); drop upstream patches 11 (ascii-to-lower), |
|
115 (pydoc robustness), 145 (linux2), 148 (gdbm magic values), 151 (deadlock |
|
in fork); refresh patch 112 (debug build); revise patch 127 |
|
(test_structmember); fix test_gdb (patch 153); refresh patch 137 (distutils |
|
tests); add python2.pc to python-devel; regenerate the autotool intermediates |
|
patch (patch 300) |
|
|
|
* Sat Feb 25 2012 Thomas Spura <tomspur@fedoraproject.org> - 2.7.2-20 |
|
- fix deadlock issue (#787712) |
|
|
|
* Fri Feb 17 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 2.7.2-19 |
|
- Obsolete python-sqlite2 |
|
|
|
* Thu Nov 24 2011 Ville Skyttä <ville.skytta@iki.fi> - 2.7.2-18 |
|
- Build with $RPM_LD_FLAGS (#756862). |
|
- Use xz-compressed source tarball. |
|
|
|
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.2-17 |
|
- Rebuilt for glibc bug#747377 |
|
|
|
* Fri Sep 30 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-16 |
|
- re-enable gdbm (patch 148; rhbz#742242) |
|
|
|
* Fri Sep 16 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-15 |
|
- add a sys._debugmallocstats() function (patch 147) |
|
|
|
* Wed Sep 14 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-14 |
|
- support OpenSSL FIPS mode in _hashlib and hashlib; don't build the _md5 and |
|
_sha* modules, relying on _hashlib in hashlib, and thus within md5 etc |
|
(rhbz#563986; patch 146) |
|
|
|
* Wed Sep 14 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-13 |
|
- force sys.platform to be "linux2" (patch 145) |
|
|
|
* Tue Sep 13 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-12 |
|
- disable gdbm module to prepare for gdbm soname bump |
|
|
|
* Mon Sep 12 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-11 |
|
- rename and renumber patches for consistency with python3.spec (55, 111, 113, |
|
114, 125, 131, 129 to 143) |
|
|
|
* Sat Sep 10 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-10 |
|
- rewrite of "check", introducing downstream-only hooks for skipping specific |
|
cases in an rpmbuild (patch 132), and fixing/skipping failing tests in a more |
|
fine-grained manner than before (patches 104, 133-142) |
|
|
|
* Thu Sep 1 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-9 |
|
- run selftests with "--verbose" |
|
- disable parts of test_io on ppc (rhbz#732998) |
|
|
|
* Tue Aug 23 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-8 |
|
- add --extension-suffix option to python-config (patch 130; rhbz#732808) |
|
|
|
* Tue Aug 23 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-7 |
|
- re-enable and fix the --with-tsc option on ppc64, and rework it on 32-bit |
|
ppc to avoid aliasing violations (patch 129; rhbz#698726) |
|
|
|
* Tue Aug 23 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-6 |
|
- don't use --with-tsc on ppc64 debug builds (rhbz#698726) |
|
|
|
* Thu Aug 18 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-5 |
|
- add rpm macros file (rhbz#731800) |
|
|
|
* Fri Jul 8 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-4 |
|
- cleanup of BuildRequires; add comment headings to specfile sections |
|
|
|
* Wed Jun 22 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-3 |
|
- reorganize test exclusions (test_openpty and test_pty seem to be failing on |
|
every arch, not just the explicitly-listed ones) |
|
|
|
* Mon Jun 13 2011 Dan Horák <dan[at]danny.cz> - 2.7.2-2 |
|
- add s390(x) excluded tests |
|
|
|
* Mon Jun 13 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.2-1 |
|
- 2.7.2; drop upstreamed patches: patch 122 (parallel make fix), patch 124 |
|
(test_commands and SELinux), patch 130 (ppc preprocessor macro in debug |
|
build); patch 131 (decimal in Turkish locale); regenerate the autotool |
|
intermediates patch (patch 300) |
|
|
|
* Tue Jun 07 2011 Dennis Gilmore <dennis@ausil.us> - 2.7.1-9 |
|
- fix sparc building by excluding failing tests RHBZ#711584 |
|
|
|
* Mon May 23 2011 Peter Robinson <pbrobinson@gmail.com> - 2.7.1-8 |
|
- fix compile on ARM by excluding failing tests on arm - RHBZ #706253 |
|
|
|
* Tue Apr 12 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.1-7 |
|
- fix "import decimal" in the Turkish locale (patch 131; rhbz#694928) |
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.1-6 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
|
|
|
* Fri Jan 21 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 2.7.1-5 |
|
- Switch from setting OPT to setting EXTRA_CFLAGS so we don't overwrite the |
|
DNDEBUG flag |
|
|
|
* Fri Jan 7 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.1-4 |
|
- for now, drop "obsoletes" of python-argparse, since it interracts badly with |
|
multilib (rhbz#667984) |
|
|
|
* Fri Jan 7 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.7.1-3 |
|
- obsolete/provide python-argparse (new in 2.7) |
|
|
|
* Thu Jan 6 2011 David Malcolm <dmalcolm@redhat.com> - 2.7.1-2 |
|
- fix the ppc build of the debug configuration (patch 130; rhbz#661510) |
|
|
|
* Thu Dec 23 2010 David Malcolm <dmalcolm@redhat.com> - 2.7.1-1 |
|
- 2.7.1, reworking patch 0 (config), patch 102 (lib64); drop upstream |
|
patch 56 (cfgparse), patch 110 (ctypes/SELinux/noexecmem), patch 119 (expat |
|
compat), patch 123 (2to3 on "from itertools import *") |
|
- fix test_abc's test_cache_leak in the debug build (patch 128) |
|
- drop _weakref.so from manifest (_weakref became a core module in r84230) |
|
|
|
* Wed Sep 29 2010 jkeating - 2.7-13 |
|
- Rebuilt for gcc bug 634757 |
|
|
|
* Mon Sep 27 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-12 |
|
- fix test_structmember on 64bit-bigendian (patch 127) |
|
|
|
* Fri Sep 24 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-11 |
|
- fix dbm_contains on 64bit-bigendian (patch 126; rhbz#626756) |
|
|
|
* Thu Sep 16 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 2.7-10 |
|
- backport a patch to fix a change in behaviour in configparse. |
|
|
|
* Thu Sep 9 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-9 |
|
- move most of the payload of the core package to the libs subpackage, given |
|
that the libs aren't meaningfully usable without the standard libraries |
|
|
|
* Wed Aug 18 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-8 |
|
- add %%check section |
|
- update lib64 patch (patch 102) to fix expected output in test_site.py on |
|
64-bit systems |
|
- patch test_commands.py to work with SELinux (patch 124) |
|
- patch the debug build's usage of COUNT_ALLOCS to be less verbose (patch 125) |
|
|
|
* Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-7 |
|
- fixup missing -lcrypt to "crypt" module in config patch (patch 0) |
|
|
|
* Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-6 |
|
- re-enable systemtap |
|
- cherrypick upstream patch to 2to3 for "from itertools import *" |
|
traceback (patch 123) |
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-5 |
|
- disable systemtap for now (dtrace is failing on startup due to the bug |
|
mentioned in 2.7-4) |
|
- provide relative path to python binary when running pathfix.py |
|
- fix parallel make (patch 122) |
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-4 |
|
- fix reference to pyconfig.h in sysconfig that led to failure on startup if |
|
python-devel was not installed |
|
|
|
* Thu Jul 8 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-3 |
|
- add patch to fixup the new sysconfig.py for our multilib support on |
|
64-bit (patch 103) |
|
|
|
* Thu Jul 8 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-2 |
|
- add machinery for regenerating the "configure" script in the face of |
|
mismatching autoconf versions (patch 300) |
|
|
|
* Tue Jul 6 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-1 |
|
- 2.7 final; drop alphatag |
|
- drop patch 117 (upstream), patch 120 (upstreamed) |
|
- fix the commented-out __python_ver from 26 to 27 |
|
|
|
* Tue Jun 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-0.1.rc2 |
|
- 2.7rc2 |
|
- revert r79310 (patch 121) |
|
- remove modulator: upstream removed it in r78338 |
|
- rename mathmodule(_d).so to math(_d).so in manifests (appears to be changed |
|
by r76861) |
|
- _bytesio(_d).so and _filesio(_d).so were consolidated into _io(_d).so in |
|
r73394 (upstream issue 6215) |
|
- use the gdb hooks from the upstream tarball, rather than keeping our own |
|
copy. The upstream version has some whitespace changes, a new write_repr for |
|
unicode objects, and various bulletproofings for being run on older gdbs |
|
|
|
* Tue Jun 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-0.1.rc1 |
|
- 2.7rc1: |
|
- rework patches to apply against 2.7 (which among other changes has had a |
|
whitespace cleanup of the .c code): .rhconfig (patch0), .binutils-no-dep |
|
(patch10), .ascii-tolower (patch11), .socketmodule (patch13), .socketmodule2 |
|
(patch14), .systemtap (patch55), .lib64 (patch102), .selinux (patch110), |
|
.no-static-lib (patch111), .debug-build (patch112), .statvfs-f-flag-constants |
|
(patch114), ..CVE-2010-2089 (patch117) |
|
- drop upstream patches: .expat (patch3), .brprpm (patch51), .valgrind |
|
(patch52), .db48 (patch53), .CVE-2010-1634 (patch 116), .CVE-2008-5983 (patch |
|
118) |
|
|
|
* Tue Jun 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-17 |
|
- Stop python bailing out with an assertion failure when UnicodeDecodeErrors |
|
occur on very large buffers (patch 120, upstream issue 9058) |
|
|
|
* Mon Jun 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-16 |
|
- Fix an incompatibility between pyexpat and the system expat-2.0.1 that led to |
|
a segfault running test_pyexpat.py (patch 119; upstream issue 9054) |
|
|
|
* Tue Jun 8 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-15 |
|
- add a flag to make it easy to turn off the debug build when troubleshooting |
|
the rpm build |
|
|
|
* Sat Jun 5 2010 Dan Horák <dan[at]danny.cz> - 2.6.5-14 |
|
- reading the timestamp counter is available only on some arches (see Python/ceval.c) |
|
- disable --with-valgrind on s390(x) arches |
|
|
|
* Fri Jun 4 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-13 |
|
- ensure that the compiler is invoked with "-fwrapv" (rhbz#594819) |
|
- CVE-2010-1634: fix various integer overflow checks in the audioop |
|
module (patch 116) |
|
- CVE-2010-2089: further checks within the audioop module (patch 117) |
|
- CVE-2008-5983: the new PySys_SetArgvEx entry point from r81399 (patch 118) |
|
|
|
* Thu May 27 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-12 |
|
- make "pydoc -k" more robust in the face of broken modules (rhbz:461419, patch115) |
|
|
|
* Wed May 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-11 |
|
- add flags for statvfs.f_flag to the constant list in posixmodule (i.e. "os") |
|
(patch 114) |
|
|
|
* Tue May 25 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-10 |
|
- add configure-time support for COUNT_ALLOCS and CALL_PROFILE debug options |
|
(patch 113); enable them and the WITH_TSC option within the debug build |
|
|
|
* Tue May 18 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-9 |
|
- build and install two different configurations of Python: debug and standard, |
|
packaging the debug build in a new "python-debug" subpackage (patch 112) |
|
|
|
* Tue May 4 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-8 |
|
- don't delete wsgiref.egg-info (rhbz:588426) |
|
|
|
* Mon Apr 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-7 |
|
- disable --with-valgrind on sparc arches |
|
|
|
* Mon Apr 12 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-6 |
|
- move the "bdist_wininst" command's template .exe files from the core package |
|
to the devel subpackage, to save space (rhbz:525469) |
|
- fix stray doublelisting of config directory wildcard in devel subpackage |
|
|
|
* Wed Mar 31 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-5 |
|
- update python-gdb.py from v4 to v5 (improving performance and stability, |
|
adding commands) |
|
|
|
* Thu Mar 25 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-4 |
|
- update python-gdb.py from v3 to v4 (fixing infinite recursion on reference |
|
cycles and tracebacks on bytes 0x80-0xff in strings, adding handlers for sets |
|
and exceptions) |
|
|
|
* Wed Mar 24 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-3 |
|
- refresh gdb hooks to v3 (reworking how they are packaged) |
|
|
|
* Mon Mar 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-2 |
|
- remove unnecessary arch-conditionality for patch 101 |
|
|
|
* Fri Mar 19 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.5-1 |
|
- update to 2.6.5: http://www.python.org/download/releases/2.6.5/ |
|
- replace our patch to compile against db4.8 with a patch from |
|
upstream (patch 53, from r78974); update patch 54 since part of it is now in |
|
that upstream patch |
|
- update patch 110 so that it still applies in the face of upstream r78380 |
|
|
|
* Tue Mar 16 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-23 |
|
- fixup distutils/unixccompiler.py to remove standard library path from |
|
rpath (patch 17) |
|
- delete DOS batch files |
|
|
|
* Fri Mar 12 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-22 |
|
- add pyfuntop.stp; allow systemtap support to be disabled |
|
- remove trailing period from tkinter summary |
|
- don't own /usr/bin/python-config if you're not the main python |
|
|
|
* Thu Mar 11 2010 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.4-21 |
|
- rebuild with new gdbm |
|
|
|
* Thu Feb 11 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-20 |
|
- avoid having the "test" subdirectory and the files within it that are in the |
|
core subpackage also be owned by the test subpackage (rhbz:467588) |
|
|
|
* Wed Feb 10 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-19 |
|
- revise the systemtap patch (patch 55:python-2.6.4-dtrace.patch) to the |
|
new version by mjw in attachment 390110 of rhbz:545179, as this should |
|
eliminate the performance penalty for the case where the probes aren't in |
|
use, and eliminate all architecture-specific code (rhbz:563541; except on |
|
sparc) |
|
|
|
* Tue Feb 9 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-18 |
|
- add a systemtap tapset defining "python.function.entry" and |
|
"python.function.return" to make it easy to use the static probepoint within |
|
Python; add an example of using the tapset to the docs |
|
|
|
* Tue Feb 9 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-17 |
|
- add systemtap static probes (wcohen; patch 55; rh bug #545179) |
|
- update some comments in specfile relating to gdb work |
|
- manually byte-compile the gdb.py file with the freshly-built python to ensure |
|
that .pyx and .pyo files make it into the debuginfo manifest if they are later |
|
byte-compiled after find-debuginfo.sh is run |
|
|
|
* Mon Feb 8 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-16 |
|
- move the -gdb.py file from %%{_libdir}/INSTSONAME-gdb.py to |
|
%%{_prefix}/lib/debug/%%{_libdir}/INSTSONAME.debug-gdb.py to avoid noise from |
|
ldconfig (bug 562980), and which should also ensure it becomes part of the |
|
debuginfo subpackage, rather than the libs subpackage |
|
- introduce %%{py_SOVERSION} and %%{py_INSTSONAME} to reflect the upstream |
|
configure script, and to avoid fragile scripts that try to figure this out |
|
dynamically (e.g. for the -gdb.py change) |
|
|
|
* Mon Feb 8 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-15 |
|
- work around bug 562906 by supplying a fixed version of pythondeps.sh |
|
- set %%{_python_bytecompile_errors_terminate_build} to 0 to prevent the broken |
|
test files from killing the build on buildroots where python is installed |
|
|
|
* Fri Feb 5 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-14 |
|
- add gdb hooks for easier debugging |
|
|
|
* Fri Jan 29 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-13 |
|
- document all patches, and remove the commented-out ones |
|
|
|
* Tue Jan 26 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-12 |
|
- Address some of the issues identified in package review (bug 226342): |
|
- update libs requirement on base package to use %%{name} for consistency's |
|
sake |
|
- convert from backticks to $() syntax throughout |
|
- wrap value of LD_LIBRARY_PATH in quotes |
|
- convert "/usr/bin/find" requirement to "findutils" |
|
- remove trailing periods from summaries of -devel and -tools subpackages |
|
- fix spelling mistake in description of -test subpackage |
|
- convert usage of $$RPM_BUILD_ROOT to %%{buildroot} throughout, for |
|
stylistic consistency |
|
- supply dirmode arguments to defattr directives |
|
|
|
* Mon Jan 25 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-11 |
|
- update python-2.6.2-config.patch to remove downstream customization of build |
|
of pyexpat and elementtree modules |
|
- add patch adapted from upstream (patch 3) to add support for building against |
|
system expat; add --with-system-expat to "configure" invocation |
|
- remove embedded copy of expat from source tree during "prep" |
|
|
|
* Mon Jan 25 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-10 |
|
- introduce macros for 3 directories, replacing expanded references throughout: |
|
%%{pylibdir}, %%{dynload_dir}, %%{site_packages} |
|
- explicitly list all lib-dynload files, rather than dynamically gathering the |
|
payload into a temporary text file, so that we can be sure what we are |
|
shipping; remove now-redundant testing for presence of certain .so files |
|
- remove embedded copy of zlib from source tree before building |
|
|
|
* Mon Jan 25 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-9 |
|
- change python-2.6.2-config.patch to remove our downstream change to curses |
|
configuration in Modules/Setup.dist, so that the curses modules are built using |
|
setup.py with the downstream default (linking against libncursesw.so, rather |
|
than libncurses.so), rather than within the Makefile; add a test to %%install |
|
to verify the dso files that the curses module is linked against the correct |
|
DSO (bug 539917; changes _cursesmodule.so -> _curses.so) |
|
|
|
* Fri Jan 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-8 |
|
- rebuild (bug 556975) |
|
|
|
* Wed Jan 20 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-7 |
|
- move lib2to3 from -tools subpackage to main package (bug 556667) |
|
|
|
* Mon Jan 18 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-6 |
|
- patch Makefile.pre.in to avoid building static library (patch111, bug 556092) |
|
- split up the "configure" invocation flags onto individual lines |
|
|
|
* Fri Jan 15 2010 David Malcolm <dmalcolm@redhat.com> - 2.6.4-5 |
|
- replace usage of %%define with %%global |
|
- use the %%{_isa} macro to ensure that the python-devel dependency on python |
|
is for the correct multilib arch (#555943) |
|
- delete bundled copy of libffi to make sure we use the system one |
|
- replace references to /usr with %%{_prefix}; replace references to |
|
/usr/include with %%{_includedir} |
|
|
|
* Wed Dec 16 2009 David Malcolm <dmalcolm@redhat.com> - 2.6.4-4 |
|
- automatically disable arena allocator when run under valgrind (upstream |
|
issue 2422; patch 52) |
|
- add patch from Josh Boyer containing diff against upstream PyBSDDB to make |
|
the bsddb module compile against db-4.8 (patch 53, #544275); bump the necessary |
|
version of db4-devel to 4.8 |
|
- patch setup.py so that it searches for db-4.8, and enable debug output for |
|
said search; make Setup.dist use db-4.8 (patch 54) |
|
|
|
* Thu Nov 12 2009 David Malcolm <dmalcolm@redhat.com> - 2.6.4-3 |
|
- fixup the build when __python_ver is set (Zach Sadecki; bug 533989); use |
|
pybasever in the files section |
|
|
|
* Thu Oct 29 2009 David Malcolm <dmalcolm@redhat.com> - 2.6.4-2 |
|
- "Makefile" and the config-32/64.h file are needed by distutils/sysconfig.py |
|
_init_posix(), so we include them in the core package, along with their parent |
|
directories (bug 531901) |
|
|
|
* Mon Oct 26 2009 David Malcolm <dmalcolm@redhat.com> - 2.6.4-1 |
|
- Update to 2.6.4 |
|
|
|
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.6.2-2 |
|
- rebuilt with new openssl |
|
|
|
* Mon Jul 27 2009 James Antill <james.antill@redhat.com> - 2.6.2-1 |
|
- Update to 2.6.2 |
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-11 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
|
|
|
* Sat Jul 4 2009 Jonathan Steffan <jsteffan@fedoraproject.org> - 2.6-10 |
|
- Move python-config to devel subpackage (#506153) |
|
- Update BuildRoot for new standard |
|
|
|
* Sun Jun 28 2009 Jonathan Steffan <jsteffan@fedoraproject.org> - 2.6-9 |
|
- Update python-tools description (#448940) |
|
|
|
* Wed Apr 15 2009 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 2.6-8 |
|
- Replace python-hashlib and python-uuid (#484715) |
|
|
|
* Tue Mar 17 2009 James Antill <james@fedoraproject.org> - 2.6-7 |
|
- Use system libffi |
|
- Resolves: bug#490573 |
|
- Fix SELinux execmem problems |
|
- Resolves: bug#488396 |
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-5 |
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
|
|
|
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> - 2.6-4 |
|
- rebuild with new openssl |
|
|
|
* Tue Jan 6 2009 James Antill <james.antill@redhat.com> - 2.6-3 |
|
- Fix distutils generated rpms. |
|
- Resolves: bug#236535 |
|
|
|
* Wed Dec 10 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.6-2 |
|
- Enable -lcrypt for cryptmodule |
|
|
|
* Fri Nov 28 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.6-1 |
|
- Update to 2.6 |
|
|
|
* Tue Sep 30 2008 James Antill <james.antill@redhat.com> - 2.5.2-1 |
|
- Move to 2.5.2 |
|
- Fix CVE-2008-2316 hashlib overflow. |
|
|
|
* Thu Jul 17 2008 Jeremy Katz <katzj@redhat.com> - 2.5.1-30 |
|
- Fix up the build for new rpm |
|
- And actually build against db4-4.7 (#455170) |
|
|
|
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.5.1-27 |
|
- fix license tag |
|
- enable support for db4-4.7 |
|
|
|
* Sun Jun 15 2008 James Antill <jantill@redhat.com> - 2.5.1-26 |
|
- Fix sporadic listdir problem |
|
- Resolves: bug#451494 |
|
|
|
* Mon Apr 7 2008 James Antill <jantill@redhat.com> - 2.5.1-25 |
|
- Rebuild to re-gen autoconf file due to glibc change. |
|
- Resolves: bug#441003 |
|
|
|
* Tue Mar 25 2008 James Antill <jantill@redhat.com> - 2.5.1-24 |
|
- Add more constants to socketmodule |
|
|
|
* Sat Mar 8 2008 James Antill <jantill@redhat.com> - 2.5.1-22 |
|
- Add constants to socketmodule |
|
- Resolves: bug#436560 |
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.5.1-22 |
|
- Autorebuild for GCC 4.3 |
|
|
|
* Sun Jan 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.5.1-21 |
|
- rebuild for new tk in rawhide |
|
|
|
* Mon Jan 7 2008 James Antill <jantill@redhat.com> - 2.5.1-20 |
|
- Add valgrind support files, as doc, to python-devel |
|
- Relates: rhbz#418621 |
|
- Add new API from 2.6, set_wakeup_fd ... use at own risk, presumably won't |
|
- change but I have no control to guarantee that. |
|
- Resolves: rhbz#427794 |
|
- Add gdbinit support file, as doc, to python-devel |
|
|
|
* Fri Jan 4 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.5.1-19 |
|
- rebuild for new tcl/tk in rawhide |
|
|
|
* Fri Dec 7 2007 James Antill <jantill@redhat.com> - 2.5.1-18 |
|
- Create a python-test sub-module, over 3MB of stuff noone wants. |
|
- Don't remove egginfo files, try this see what happens ... may revert. |
|
- Resolves: rhbz#414711 |
|
|
|
* Mon Dec 3 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-17 |
|
- rebuild for new libssl |
|
|
|
* Fri Nov 30 2007 James Antill <jantill@redhat.com> - 2.5.1-16 |
|
- Fix pyconfig.h comment typo. |
|
- Add back test_support.py and the __init__.py file. |
|
- Resolves: rhbz#387401 |
|
|
|
* Tue Oct 30 2007 James Antill <jantill@redhat.com> - 2.5.1-15 |
|
- Do codec lowercase in C Locale. |
|
- Resolves: 207134 191096 |
|
- Fix stupid namespacing in pysqlite, minimal upgrade to 2.3.3 pysqlite |
|
- Resolves: 263221 |
|
|
|
* Wed Oct 24 2007 James Antill <jantill@redhat.com> - 2.5.1-14 |
|
- Remove bintuils dep. for live CD ... add work around for ctypes |
|
|
|
* Mon Oct 22 2007 James Antill <jantill@redhat.com> - 2.5.1-13 |
|
- Add tix buildprereq |
|
- Add tkinter patch |
|
- Resolves: #281751 |
|
- Fix ctypes loading of libraries, add requires on binutils |
|
- Resolves: #307221 |
|
- Possible fix for CVE-2007-4965 possible exploitable integer overflow |
|
- Resolves: #295971 |
|
|
|
* Tue Oct 16 2007 Mike Bonnet <mikeb@redhat.com> - 2.5.1-12 |
|
- fix marshalling of objects in xmlrpclib (python bug #1739842) |
|
|
|
* Fri Sep 14 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-11 |
|
- fix encoding of sqlite .py files to work around weird encoding problem |
|
in Turkish (#283331) |
|
|
|
* Mon Sep 10 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-10 |
|
- work around problems with multi-line plural specification (#252136) |
|
|
|
* Tue Aug 28 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-9 |
|
- rebuild against new expat |
|
|
|
* Tue Aug 14 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-8 |
|
- build against db4.6 |
|
|
|
* Tue Aug 14 2007 Dennis Gilmore <dennis@ausil.us> - 2.5.1-7 |
|
- add sparc64 to the list of archs for _pyconfig64_h |
|
|
|
* Fri Aug 10 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-6 |
|
- fix ctypes again on some arches (Hans de Goede, #251637) |
|
|
|
* Fri Jul 6 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-5 |
|
- link curses modules with ncursesw (#246385) |
|
|
|
* Wed Jun 27 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-4 |
|
- fix _elementtree.so build (#245703) |
|
- ensure that extension modules we expect are actually built rather than |
|
having them silently fall out of the package |
|
|
|
* Tue Jun 26 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-3 |
|
- link with system expat (#245703) |
|
|
|
* Thu Jun 21 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-2 |
|
- rebuild to take advantage of hardlinking between identical pyc/pyo files |
|
|
|
* Thu May 31 2007 Jeremy Katz <katzj@redhat.com> - 2.5.1-1 |
|
- update to python 2.5.1 |
|
|
|
* Mon Mar 19 2007 Jeremy Katz <katzj@redhat.com> - 2.5.3-12 |
|
- fix alpha build (#231961) |
|
|
|
* Tue Feb 13 2007 Jeremy Katz <katzj@redhat.com> - 2.5.3-11 |
|
- tcl/tk was reverted; rebuild again |
|
|
|
* Thu Feb 1 2007 Jeremy Katz <katzj@redhat.com> - 2.5.3-10 |
|
- rebuild for new tcl/tk |
|
|
|
* Tue Jan 16 2007 Miroslav Lichvar <mlichvar@redhat.com> - 2.5.3-9 |
|
- link with ncurses |
|
|
|
* Sat Jan 6 2007 Jeremy Katz <katzj@redhat.com> - 2.5.3-8 |
|
- fix extensions to use shared libpython (#219564) |
|
- all 64bit platforms need the regex fix (#122304) |
|
|
|
* Wed Jan 3 2007 Jeremy Katz <katzj@redhat.com> - 2.5.3-7 |
|
- fix ctypes to not require execstack (#220669) |
|
|
|
* Fri Dec 15 2006 Jeremy Katz <katzj@redhat.com> - 2.5.3-6 |
|
- don't link against compat-db (Robert Scheck) |
|
|
|
* Wed Dec 13 2006 Jarod Wilson <jwilson@redhat.com> - 2.5.3-5 |
|
- fix invalid assert in debug mode (upstream changeset 52622) |
|
|
|
* Tue Dec 12 2006 Jeremy Katz <katzj@redhat.com> - 2.5.3-4 |
|
- obsolete/provide python-ctypes (#219256) |
|
|
|
* Mon Dec 11 2006 Jeremy Katz <katzj@redhat.com> - 2.5.3-3 |
|
- fix atexit traceback with failed syslog logger (#218214) |
|
- split libpython into python-libs subpackage for multilib apps |
|
embedding python interpreters |
|
|
|
* Wed Dec 6 2006 Jeremy Katz <katzj@redhat.com> - 2.5.3-2 |
|
- disable installation of .egg-info files for now |
|
|
|
* Tue Dec 5 2006 Jeremy Katz <katzj@redhat.com> |
|
- support db 4.5 |
|
- obsolete python-elementtree; since it requires some code tweaks, don't |
|
provide it |
|
- obsolete old python-sqlite; provide the version that's actually included |
|
|
|
* Mon Oct 30 2006 Jeremy Katz <katzj@redhat.com> |
|
- fix _md5 and _sha modules (Robert Sheck) |
|
- no longer provide optik compat; it's been a couple of years now |
|
- no longer provide the old shm module; if this is still needed, let's |
|
build it separately |
|
- no longer provide japanese codecs; should be a separate package |
|
|
|
* Mon Oct 23 2006 Jeremy Katz <katzj@redhat.com> - 2.5-0 |
|
- update to 2.5.0 final |
|
|
|
* Fri Aug 18 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.99.c1 |
|
- Updated to 2.5c1. Merged fixes from FC6 too: |
|
- Fixed bug #199373 (on some platforms CFLAGS is needed when linking) |
|
- Fixed bug #198971 (case conversion not locale safe in logging library) |
|
- Verified bug #201434 (distutils.sysconfig is confused by the change to make |
|
python-devel multilib friendly) is fixed upstream |
|
|
|
* Sun Jul 16 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.99.b2 |
|
- Updated to 2.5b2 (which for comparison reasons is re-labeled 2.4.99.b2) |
|
|
|
* Fri Jun 23 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.99.b1 |
|
- Updated to 2.5b1 (which for comparison reasons is re-labeled 2.4.99.b1) |
|
|
|
* Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> - 2.4.3-11.FC6 |
|
- and fix it for real |
|
|
|
* Tue Jun 13 2006 Jeremy Katz <katzj@redhat.com> - 2.4.3-10.FC6 |
|
- fix python-devel on ia64 |
|
|
|
* Tue Jun 13 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-9 |
|
- Fixed python-devel to be multilib friendly (bug #192747, #139911) |
|
|
|
* Tue Jun 13 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-8 |
|
- Only copying mkhowto from the Docs - we don't need perl dependencies from |
|
python-tools. |
|
|
|
* Mon Jun 12 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-7 |
|
- Fixed bug #121198 (webbrowser.py should use the user's preferences first) |
|
|
|
* Mon Jun 12 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-6 |
|
- Fixed bug #192592 (too aggressive assertion fails) - SF#1257960 |
|
- Fixed bug #167468 (Doc/tools not included) - added in the python-tools package |
|
|
|
* Thu Jun 8 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-5 |
|
- Fixed bug #193484 (added pydoc in the main package) |
|
|
|
* Mon Jun 5 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-4 |
|
- Added dist in the release |
|
|
|
* Mon May 15 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-3 |
|
- rebuilt to fix broken libX11 dependency |
|
|
|
* Wed Apr 12 2006 Jeremy Katz <katzj@redhat.com> - 2.4.3-2 |
|
- rebuild with new gcc to fix #188649 |
|
|
|
* Thu Apr 6 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-1 |
|
- Updated to 2.4.3 |
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.4.2-3.2.1 |
|
- bump again for double-long bug on ppc(64) |
|
|
|
* Fri Feb 10 2006 Mihai Ibanescu <misa@redhat.com> - 2.4.3-3.2 |
|
- rebuilt for newer tix |
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.4.2-3.1 |
|
- rebuilt for new gcc4.1 snapshot and glibc changes |
|
|
|
* Fri Jan 20 2006 Mihai Ibanescu <misa@redhat.com> 2.4.2-3 |
|
- fixed #136654 for another instance of audiotest.au |
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> |
|
- rebuilt |
|
|
|
* Sat Nov 19 2005 Bill Nottingham <notting@redhat.com> 2.4.2-2 |
|
- fix build for modular X, remove X11R6 path references |
|
|
|
* Tue Nov 15 2005 Mihai Ibanescu <misa@redhat.com> 2.4.2-1 |
|
- Upgraded to 2.4.2 |
|
- BuildRequires autoconf |
|
|
|
* Wed Nov 9 2005 Mihai Ibanescu <misa@redhat.com> 2.4.1-16 |
|
- Rebuilding against newer openssl. |
|
- XFree86-devel no longer exists |
|
|
|
* Mon Sep 26 2005 Peter Jones <pjones@redhat.com> 2.4.1-14 |
|
- Once more -- this time, to fix -EPERM when you run it in a directory |
|
you can't read from. |
|
|
|
* Mon Sep 26 2005 Peter Jones <pjones@redhat.com> 2.4.1-13 |
|
- So, 5 or 6 people have said it works for them with this patch... |
|
|
|
* Sun Sep 25 2005 Peter Jones <pjones@redhat.com> 2.4.1-12 |
|
- Fixed bug #169159 (check for argc>0 and argv[0] == NULL, not just |
|
argv[0][0]='\0') |
|
Reworked the patch from -8 a bit more. |
|
|
|
* Fri Sep 23 2005 Mihai Ibanescu <misa@redhat.com> 2.4.1-10 |
|
- Fixed bug #169159 (don't let python core dump if no arguments are passed in) |
|
Reworked the patch from -8 a bit more. |
|
|
|
* Thu Sep 22 2005 Peter Jones <pjones@redhat.com> 2.4.1-8 |
|
- Fix bug #169046 more correctly. |
|
|
|
* Thu Sep 22 2005 Mihai Ibanescu <misa@redhat.com> 2.4.1-7 |
|
- Fixed bug #169046 (realpath is unsafe); thanks to |
|
Peter Jones <pjones@redhat.com> and Arjan van de Ven <arjanv@redhat.com> for |
|
diagnosing and the patch. |
|
|
|
* Tue Sep 20 2005 Mihai Ibanescu <misa@redhat.com> 2.4.1-4 |
|
- Fixed bug #168655 (fixes for building as python24) |
|
|
|
* Tue Jul 26 2005 Mihai Ibanescu <misa@redhat.com> 2.4.1-3 |
|
- Fixed bug #163435 (pynche doesn't start)) |
|
|
|
* Wed Apr 20 2005 Mihai Ibanescu <misa@redhat.com> 2.4.1-2 |
|
- Fixed bug #143667 (python should own /usr/lib/python* on 64-bit systems, for |
|
noarch packages) |
|
- Fixed bug #143419 (BuildRequires db4 is not versioned) |
|
|
|
* Wed Apr 6 2005 Mihai Ibanescu <misa@redhat.com> 2.4.1-1 |
|
- updated to 2.4.1 |
|
|
|
* Mon Mar 14 2005 Mihai Ibanescu <misa@redhat.com> 2.4-6 |
|
- building the docs from a different source rpm, to decouple bootstrapping |
|
python from having tetex installed |
|
|
|
* Fri Mar 11 2005 Dan Williams <dcbw@redhat.com> 2.4-5 |
|
- Rebuild to pick up new libssl.so.5 |
|
|
|
* Wed Feb 2 2005 Mihai Ibanescu <misa@redhat.com> 2.4-4 |
|
- Fixed security issue in SimpleXMLRPCServer.py (#146647) |
|
|
|
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 2.4-3 |
|
- Rebuilt for new readline. |
|
|
|
* Mon Dec 6 2004 Jeff Johnson <jbj@jbj.org> 2.4-2 |
|
- db-4.3.21 returns DB_BUFFER_SMALL rather than ENOMEM (#141994). |
|
- add Provide: python(abi) = 2.4 |
|
- include msgfmt/pygettext *.pyc and *.pyo from brp-python-bytecompile. |
|
|
|
* Fri Dec 3 2004 Mihai Ibanescu <misa@redhat.com> 2.4-1 |
|
- Python-2.4.tar.bz2 (final) |
|
|
|
* Fri Nov 19 2004 Mihai Ibanescu <misa@redhat.com> 2.4-0.c1.1 |
|
- Python-2.4c1.tar.bz2 (release candidate 1) |
|
|
|
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 2.4-0.b2.4 |
|
- rebuild against db-4.3.21. |
|
|
|
* Mon Nov 8 2004 Jeremy Katz <katzj@redhat.com> - 2.4-0.b2.3 |
|
- fix the lib64 patch so that 64bit arches still look in /usr/lib/python... |
|
|
|
* Mon Nov 8 2004 Jeremy Katz <katzj@redhat.com> - 2.4-0.b2.2 |
|
- cryptmodule still needs -lcrypt (again) |
|
|
|
* Thu Nov 4 2004 Mihai Ibanescu <misa@redhat.com> 2.4-0.b2.1 |
|
- Updated to python 2.4b2 (and labeled it 2.4-0.b2.1 to avoid breaking rpm's |
|
version comparison) |
|
|
|
* Thu Nov 4 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-13 |
|
- Fixed bug #138112 (python overflows stack buffer) - SF bug 105470 |
|
|
|
* Tue Nov 2 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-12 |
|
- Fixed bugs #131439 #136023 #137863 (.pyc/.pyo files had the buildroot added) |
|
|
|
* Tue Oct 26 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-11 |
|
- Fixed bug #136654 (python has sketchy audio clip) |
|
|
|
* Tue Aug 31 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-10 |
|
- Fixed bug #77418 (Demo dir not packaged) |
|
- More tweaking on #19347 (Moved Tools/ under /usr/lib/python2.3/Tools) |
|
|
|
* Fri Aug 13 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-8 |
|
- Fixed bug #129769: Makefile in new python conflicts with older version found |
|
in old python-devel |
|
- Reorganized the spec file to get rid of the aspython2 define; __python_ver |
|
is more powerful. |
|
|
|
* Tue Aug 3 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-7 |
|
- Including html documentation for non-i386 arches |
|
- Fixed #125362 (python-doc html files have japanese character encoding) |
|
- Fixed #128923 (missing dependency between python and python-devel) |
|
|
|
* Fri Jul 30 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-6 |
|
- Fixed #128030 (help() not printing anything) |
|
- Fixed #125472 (distutils.sysconfig.get_python_lib() not returning the right |
|
path on 64-bit systems) |
|
- Fixed #127357 (building python as a shared library) |
|
- Fixed #19347 (including the contents of Tools/scripts/ in python-tools) |
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> |
|
- rebuilt |
|
|
|
* Tue Jun 8 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-3 |
|
- Added an optik.py that provides the same interface from optparse for |
|
backward compatibility; obsoleting python-optik |
|
|
|
* Mon Jun 7 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-2 |
|
- Patched bdist_rpm to allow for builds of multiple binary rpms (bug #123598) |
|
|
|
* Fri Jun 4 2004 Mihai Ibanescu <misa@redhat.com> 2.3.4-1 |
|
- Updated to 2.3.4-1 with Robert Scheck's help (bug #124764) |
|
- Added BuildRequires: tix-devel (bug #124918) |
|
|
|
* Fri May 7 2004 Mihai Ibanescu <misa@redhat.com> 2.3.3-6 |
|
- Correct fix for #122304 from upstream: |
|
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=931848&group_id=5470 |
|
|
|
* Thu May 6 2004 Mihai Ibanescu <misa@redhat.com> 2.3.3-4 |
|
- Fix for bug #122304 : splitting the domain name fails on 64-bit arches |
|
- Fix for bug #120879 : including Makefile into the main package |
|
|
|
- Requires XFree86-devel instead of -libs (see bug #118442) |
|
|
|
* Tue Mar 16 2004 Mihai Ibanescu <misa@redhat.com> 2.3.3-3 |
|
- Requires XFree86-devel instead of -libs (see bug #118442) |
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> |
|
- rebuilt |
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> |
|
- rebuilt |
|
|
|
* Fri Dec 19 2003 Jeff Johnson <jbj@jbj.org> 2.3.3-1 |
|
- upgrade to 2.3.3. |
|
|
|
* Sat Dec 13 2003 Jeff Johnson <jbj@jbj.org> 2.3.2-9 |
|
- rebuild against db-4.2.52. |
|
|
|
* Fri Dec 12 2003 Jeremy Katz <katzj@redhat.com> 2.3.2-8 |
|
- more rebuilding for new tcl/tk |
|
|
|
* Wed Dec 3 2003 Jeff Johnson <jbj@jbj.org> 2.3.2-7.1 |
|
- rebuild against db-4.2.42. |
|
|
|
* Fri Nov 28 2003 Mihai Ibanescu <misa@redhat.com> 2.3.2-7 |
|
- rebuilt against newer tcl/tk |
|
|
|
* Mon Nov 24 2003 Mihai Ibanescu <misa@redhat.com> 2.3.2-6 |
|
- added a Provides: python-abi |
|
|
|
* Wed Nov 12 2003 Mihai Ibanescu <misa@redhat.com> 2.3.2-5 |
|
- force CC (#109268) |
|
|
|
* Sun Nov 9 2003 Jeremy Katz <katzj@redhat.com> 2.3.2-4 |
|
- cryptmodule still needs -lcrypt |
|
|
|
* Wed Nov 5 2003 Mihai Ibanescu <misa@redhat.com> 2.3.2-2 |
|
- Added patch for missing mkhowto |
|
|
|
* Thu Oct 16 2003 Mihai Ibanescu <misa@redhat.com> 2.3.2-1 |
|
- Updated to 2.3.2 |
|
|
|
* Thu Sep 25 2003 Mihai Ibanescu <misa@redhat.com> 2.3.1-1 |
|
- 2.3.1 final |
|
|
|
* Tue Sep 23 2003 Mihai Ibanescu <misa@redhat.com> 2.3.1-0.8.RC1 |
|
- Building the python 2.3.1 release candidate |
|
- Updated the lib64 patch |
|
|
|
* Wed Jul 30 2003 Mihai Ibanescu <misa@redhat.com> 2.3-0.2 |
|
- Building python 2.3 |
|
- Added more BuildRequires |
|
- Updated the startup files for modulator and pynche; idle installs its own |
|
now. |
|
|
|
* Thu Jul 3 2003 Mihai Ibanescu <misa@redhat.com> 2.2.3-4 |
|
- Rebuilt against newer db4 packages (bug #98539) |
|
|
|
* Mon Jun 9 2003 Elliot Lee <sopwith@redhat.com> 2.2.3-3 |
|
- rebuilt |
|
|
|
* Sat Jun 7 2003 Mihai Ibanescu <misa@redhat.com> 2.2.3-2 |
|
- Rebuilt |
|
|
|
* Fri Jun 6 2003 Mihai Ibanescu <misa@redhat.com> 2.2.3-1 |
|
- Upgraded to 2.2.3 |
|
|
|
* Wed Apr 2 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-28 |
|
- Rebuilt |
|
|
|
* Wed Apr 2 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-27 |
|
- Modified the ftpuri patch conforming to http://ietf.org/rfc/rfc1738.txt |
|
|
|
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com> |
|
- rebuilt |
|
|
|
* Mon Feb 24 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-25 |
|
- Fixed bug #84886: pydoc dies when run w/o arguments |
|
- Fixed bug #84205: add python shm module back (used to be shipped with 1.5.2) |
|
- Fixed bug #84966: path in byte-compiled code still wrong |
|
|
|
* Thu Feb 20 2003 Jeremy Katz <katzj@redhat.com> 2.2.2-23 |
|
- ftp uri's should be able to specify being rooted at the root instead of |
|
where you login via ftp (#84692) |
|
|
|
* Mon Feb 10 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-22 |
|
- Using newer Japanese codecs (1.4.9). Thanks to |
|
Peter Bowen <pzb@datastacks.com> for pointing this out. |
|
|
|
* Thu Feb 6 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-21 |
|
- Rebuild |
|
|
|
* Wed Feb 5 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-20 |
|
- Release number bumped really high: turning on UCS4 (ABI compatibility |
|
breakage) |
|
|
|
* Fri Jan 31 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-13 |
|
- Attempt to look both in /usr/lib64 and /usr/lib/python2.2/site-packages/: |
|
some work on python-2.2.2-lib64.patch |
|
|
|
* Thu Jan 30 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-12 |
|
- Rebuild to incorporate the removal of .lib64 and - files. |
|
|
|
* Thu Jan 30 2003 Mihai Ibanescu <misa@redhat.com> 2.2.2-11.7.3 |
|
- Fixed bug #82544: Errata removes most tools |
|
- Fixed bug #82435: Python 2.2.2 errata breaks redhat-config-users |
|
- Removed .lib64 and - files that get installed after we fix the multilib |
|
.py files. |
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> |
|
- rebuilt |
|
|
|
* Wed Jan 15 2003 Jens Petersen <petersen@redhat.com> 2.2.2-10 |
|
- rebuild to update tkinter's tcltk deps |
|
- convert changelog to utf-8 |
|
|
|
* Tue Jan 7 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.2-9 |
|
- rebuild |
|
|
|
* Fri Jan 3 2003 Nalin Dahyabhai <nalin@redhat.com> |
|
- pick up OpenSSL cflags and ldflags from pkgconfig if available |
|
|
|
* Thu Jan 2 2003 Jeremy Katz <katzj@redhat.com> 2.2.2-8 |
|
- urllib2 didn't support non-anonymous ftp. add support based on how |
|
urllib did it (#80676, #78168) |
|
|
|
* Mon Dec 16 2002 Mihai Ibanescu <misa@redhat.com> 2.2.2-7 |
|
- Fix bug #79647 (Rebuild of SRPM fails if python isn't installed) |
|
- Added a bunch of missing BuildRequires found while fixing the |
|
above-mentioned bug |
|
|
|
* Tue Dec 10 2002 Tim Powers <timp@redhat.com> 2.2.2-6 |
|
- rebuild to fix broken tcltk deps for tkinter |
|
|
|
* Fri Nov 22 2002 Mihai Ibanescu <misa@redhat.com> |
|
2.2.2-3.7.3 |
|
- Recompiled for 7.3 (to fix the -lcrypt bug) |
|
- Fix for the spurious error message at the end of the build (build-requires |
|
gets confused by executable files starting with """"): make the tests |
|
non-executable. |
|
|
|
* Wed Nov 20 2002 Mihai Ibanescu <misa@redhat.com> |
|
2.2.2-5 |
|
- Fixed configuration patch to add -lcrypt when compiling cryptmodule.c |
|
|
|
2.2.2-4 |
|
- Spec file change from Matt Wilson <msw@redhat.com> to disable linking |
|
with the C++ compiler. |
|
|
|
* Mon Nov 11 2002 Mihai Ibanescu <misa@redhat.com> |
|
2.2.2-3.* |
|
- Merged patch from Karsten Hopp <karsten@redhat.de> from 2.2.1-17hammer to |
|
use %%{_libdir} |
|
- Added XFree86-libs as BuildRequires (because of tkinter) |
|
- Fixed duplicate listing of plat-linux2 |
|
- Fixed exclusion of lib-dynload/japanese |
|
- Added lib64 patch for the japanese codecs |
|
- Use setup magic instead of using tar directly on JapaneseCodecs |
|
|
|
* Tue Nov 5 2002 Mihai Ibanescu <misa@redhat.com> |
|
2.2.2-2 |
|
- Fix #76912 (python-tools contains idle, which uses tkinter, but there is no |
|
requirement of tkinter from python-tools). |
|
- Fix #74013 (rpm is missing the /usr/lib/python2.2/test directory) |
|
|
|
* Mon Nov 4 2002 Mihai Ibanescu <misa@redhat.com> |
|
- builds as python2 require a different libdb |
|
- changed the buildroot name of python to match python2 builds |
|
|
|
* Fri Nov 1 2002 Mihai Ibanescu <misa@redhat.com> |
|
- updated python to 2.2.2 and adjusted the patches accordingly |
|
|
|
* Mon Oct 21 2002 Mihai Ibanescu <misa@redhat.com> |
|
- Fix #53930 (Python-2.2.1-buildroot-bytecode.patch) |
|
- Added BuildPrereq dependency on gcc-c++ |
|
|
|
* Fri Aug 30 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-17 |
|
- security fix for _execvpe |
|
|
|
* Tue Aug 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-16 |
|
- Fix #71011,#71134, #58157 |
|
|
|
* Wed Aug 7 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-15 |
|
- Resurrect tkinter |
|
- Fix for distutils (#67671) |
|
- Fix #69962 |
|
|
|
* Thu Jul 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-14 |
|
- Obsolete tkinter/tkinter2 (#69838) |
|
|
|
* Tue Jul 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-13 |
|
- Doc fixes (#53951) - not on alpha at the momemt |
|
|
|
* Mon Jul 8 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-12 |
|
- fix pydoc (#68082) |
|
|
|
* Mon Jul 8 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-11 |
|
- Add db4-devel as a BuildPrereq |
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.2.1-10 |
|
- automated rebuild |
|
|
|
* Mon Jun 17 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-9 |
|
- Add Japanese codecs (#66352) |
|
|
|
* Tue Jun 11 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-8 |
|
- No more tkinter... |
|
|
|
* Wed May 29 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-7 |
|
- Rebuild |
|
|
|
* Tue May 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-6 |
|
- Add the email subcomponent (#65301) |
|
|
|
* Fri May 10 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-5 |
|
- Rebuild |
|
|
|
* Thu May 02 2002 Than Ngo <than@redhat.com> 2.2.1-4 |
|
- rebuild i new enviroment |
|
|
|
* Tue Apr 23 2002 Trond Eivind Glomsrød <teg@redhat.com> |
|
- Use ucs2, not ucs4, to avoid breaking tkinter (#63965) |
|
|
|
* Mon Apr 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-2 |
|
- Make it use db4 |
|
|
|
* Fri Apr 12 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2.1-1 |
|
- 2.2.1 - a bugfix-only release |
|
|
|
* Fri Apr 12 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-16 |
|
- the same, but in builddirs - this will remove them from the |
|
docs package, which doesn't look in the buildroot for files. |
|
|
|
* Fri Apr 12 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-15 |
|
- Get rid of temporary files and .cvsignores included |
|
in the tarball and make install |
|
|
|
* Fri Apr 5 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-14 |
|
- Don't own lib-tk in main package, only in tkinter (#62753) |
|
|
|
* Mon Mar 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-13 |
|
- rebuild |
|
|
|
* Mon Mar 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-12 |
|
- rebuild |
|
|
|
* Fri Mar 1 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-11 |
|
- Add a not to the Distutils obsoletes test (doh!) |
|
|
|
* Fri Mar 1 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-10 |
|
- Rebuild |
|
|
|
* Mon Feb 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-9 |
|
- Only obsolete Distutils when built as python |
|
|
|
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-8 |
|
- Make files in /usr/bin install side by side with python 1.5 when |
|
- Drop explicit requirement of db4 |
|
built as python2 |
|
|
|
* Thu Jan 31 2002 Elliot Lee <sopwith@redhat.com> 2.2-7 |
|
- Use version and pybasever macros to make updating easy |
|
- Use _smp_mflags macro |
|
|
|
* Tue Jan 29 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-6 |
|
- Add db4-devel to BuildPrereq |
|
|
|
* Fri Jan 25 2002 Nalin Dahyabhai <nalin@redhat.com> 2.2-5 |
|
- disable ndbm support, which is db2 in disguise (really interesting things |
|
can happen when you mix db2 and db4 in a single application) |
|
|
|
* Thu Jan 24 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-4 |
|
- Obsolete subpackages if necesarry |
|
- provide versioned python2 |
|
- build with db4 |
|
|
|
* Wed Jan 16 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.2-3 |
|
- Alpha toolchain broken. Disable build on alpha. |
|
- New openssl |
|
|
|
* Wed Dec 26 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2-1 |
|
- 2.2 final |
|
|
|
* Fri Dec 14 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2-0.11c1 |
|
- 2.2 RC 1 |
|
- Don't include the _tkinter module in the main package - it's |
|
already in the tkiter packace |
|
- Turn off the mpzmodule, something broke in the buildroot |
|
|
|
* Wed Nov 28 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2-0.10b2 |
|
- Use -fPIC for OPT as well, in lack of a proper libpython.so |
|
|
|
* Mon Nov 26 2001 Matt Wilson <msw@redhat.com> 2.2-0.9b2 |
|
- changed DESTDIR to point to / so that distutils will install dynload |
|
modules properly in the installroot |
|
|
|
* Fri Nov 16 2001 Matt Wilson <msw@redhat.com> 2.2-0.8b2 |
|
- 2.2b2 |
|
|
|
* Fri Oct 26 2001 Matt Wilson <msw@redhat.com> 2.2-0.7b1 |
|
- python2ify |
|
|
|
* Fri Oct 19 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2-0.5b1 |
|
- 2.2b1 |
|
|
|
* Sun Sep 30 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2-0.4a4 |
|
- 2.2a4 |
|
- Enable UCS4 support |
|
- Enable IPv6 |
|
- Provide distutils |
|
- Include msgfmt.py and pygettext.py |
|
|
|
* Fri Sep 14 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2-0.3a3 |
|
- Obsolete Distutils, which is now part of the main package |
|
- Obsolete python2 |
|
|
|
* Thu Sep 13 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2-0.2a3 |
|
- Add docs, tools and tkinter subpackages, to match the 1.5 layout |
|
|
|
* Wed Sep 12 2001 Trond Eivind Glomsrød <teg@redhat.com> 2.2-0.1a3 |
|
- 2.2a3 |
|
- don't build tix and blt extensions |
|
|
|
* Mon Aug 13 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|
- Add tk and tix to build dependencies |
|
|
|
* Sat Jul 21 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|
- 2.1.1 bugfix release - with a GPL compatible license |
|
|
|
* Fri Jul 20 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|
- Add new build dependencies (#49753) |
|
|
|
* Tue Jun 26 2001 Nalin Dahyabhai <nalin@redhat.com> |
|
- build with -fPIC |
|
|
|
* Fri Jun 1 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|
- 2.1 |
|
- reorganization of file includes |
|
|
|
* Wed Dec 20 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|
- fix the "requires" clause, it lacked a space causing problems |
|
- use %%{_tmppath} |
|
- don't define name, version etc |
|
- add the available patches from the Python home page |
|
|
|
* Fri Dec 15 2000 Matt Wilson <msw@redhat.com> |
|
- added devel subpackage |
|
|
|
* Fri Dec 15 2000 Matt Wilson <msw@redhat.com> |
|
- modify all files to use "python2.0" as the intrepter |
|
- don't build the Expat bindings |
|
- build against db1 |
|
|
|
* Mon Oct 16 2000 Jeremy Hylton <jeremy@beopen.com> |
|
- updated for 2.0 final |
|
|
|
* Mon Oct 9 2000 Jeremy Hylton <jeremy@beopen.com> |
|
- updated for 2.0c1 |
|
- build audioop, imageop, and rgbimg extension modules |
|
- include xml.parsers subpackage |
|
- add test.xml.out to files list |
|
|
|
* Thu Oct 5 2000 Jeremy Hylton <jeremy@beopen.com> |
|
- added bin/python2.0 to files list (suggested by Martin v. L?) |
|
|
|
* Tue Sep 26 2000 Jeremy Hylton <jeremy@beopen.com> |
|
- updated for release 1 of 2.0b2 |
|
- use .bz2 version of Python source |
|
|
|
* Tue Sep 12 2000 Jeremy Hylton <jeremy@beopen.com> |
|
- Version 2 of 2.0b1 |
|
- Make the package relocatable. Thanks to Suchandra Thapa. |
|
- Exclude Tkinter from main RPM. If it is in a separate RPM, it is |
|
easier to track Tk releases.
|
|
|