mirror of
https://abf.rosa.ru/djam/python38.git
synced 2025-02-23 15:22:50 +00:00
Updated to 3.4.3
This commit is contained in:
parent
693af99740
commit
e2bc6cece7
5 changed files with 27 additions and 29 deletions
3
.abf.yml
3
.abf.yml
|
@ -5,6 +5,7 @@ removed_sources:
|
|||
Python-3.3.3.tar.xz: af4e75a34bd538c79b9871227c2e7f56569ac107
|
||||
Python-3.3.4.tar.xz: 2c9586eeb4b6e45e9ebc28372c0856c709d9a522
|
||||
Python-3.4.1.tar.xz: 143e098efe7ee7bec8a4904ec4b322f28a067a03
|
||||
Python-3.4.2.tar.xz: 0727d8a8498733baabe6f51632b9bab0cbaa9ada
|
||||
python-3.3.0-docs-html.tar.bz2: 5299b1523ede931767199a5b13388a5bf35351d5
|
||||
python-3.3.1-docs-html.tar.bz2: 55c3b3f3453346835b0df2b3b0ad7fe20833a7f7
|
||||
python-3.3.2-docs-html.tar.bz2: 514e1a0810fa9e6433f4bc64bdc0ad407d49ebc5
|
||||
|
@ -13,5 +14,5 @@ removed_sources:
|
|||
python-3.4.0-docs-html.tar.bz2: d6e8f45219353b128f002f3a7311ec4e08c0ca49
|
||||
python-3.4.1-docs-html.tar.bz2: acc5911f0e41774788121064e004941e6090542a
|
||||
sources:
|
||||
Python-3.4.2.tar.xz: 0727d8a8498733baabe6f51632b9bab0cbaa9ada
|
||||
Python-3.4.3.tar.xz: 7ca5cd664598bea96eec105aa6453223bb6b4456
|
||||
python-3.4.2-docs-html.tar.bz2: 29fd43d785d545959b744ba44c9cbe314c12804b
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
diff -up Python-3.2.2/Lib/distutils/tests/test_bdist_rpm.py.skip-distutils-tests-that-fail-in-rpmbuild Python-3.2.2/Lib/distutils/tests/test_bdist_rpm.py
|
||||
--- Python-3.2.2/Lib/distutils/tests/test_bdist_rpm.py.skip-distutils-tests-that-fail-in-rpmbuild 2011-09-03 12:16:40.000000000 -0400
|
||||
+++ Python-3.2.2/Lib/distutils/tests/test_bdist_rpm.py 2011-09-10 05:04:56.328852558 -0400
|
||||
@@ -23,6 +23,7 @@ setup(name='foo', version='0.1', py_modu
|
||||
|
||||
"""
|
||||
|
||||
+@unittest._skipInRpmBuild("don't try to nest one rpm build inside another rpm build")
|
||||
class BuildRpmTestCase(support.TempdirManager,
|
||||
support.LoggingSilencer,
|
||||
unittest.TestCase):
|
||||
diff -up Python-3.2.2/Lib/distutils/tests/test_build_ext.py.skip-distutils-tests-that-fail-in-rpmbuild Python-3.2.2/Lib/distutils/tests/test_build_ext.py
|
|
@ -1,10 +1,10 @@
|
|||
--- Lib/test/test_gdb.py.old 2012-04-11 21:04:01.367073855 -0400
|
||||
+++ Lib/test/test_gdb.py 2012-04-12 08:52:58.320288761 -0400
|
||||
@@ -96,6 +96,15 @@ class DebuggerTests(unittest.TestCase):
|
||||
# Generate a list of commands in gdb's language:
|
||||
diff -Naur Python-3.4.3.orig/Lib/test/test_gdb.py Python-3.4.3/Lib/test/test_gdb.py
|
||||
--- Python-3.4.3.orig/Lib/test/test_gdb.py 2015-02-26 22:33:10.000000000 +0400
|
||||
+++ Python-3.4.3/Lib/test/test_gdb.py 2015-02-26 22:34:14.000000000 +0400
|
||||
@@ -124,6 +124,14 @@
|
||||
commands = ['set breakpoint pending yes',
|
||||
'break %s' % breakpoint,
|
||||
+
|
||||
|
||||
+ # GDB as of Fedora 17 onwards can distinguish between the
|
||||
+ # value of a variable at entry vs current value:
|
||||
+ # http://sourceware.org/gdb/onlinedocs/gdb/Variables.html
|
||||
|
@ -13,12 +13,10 @@
|
|||
+ # Disable this:
|
||||
+ 'set print entry-values no',
|
||||
+
|
||||
'run']
|
||||
if cmds_after_breakpoint:
|
||||
commands += cmds_after_breakpoint
|
||||
--- Lib/test/test_gdb.py.old 2012-04-11 21:04:01.367073855 -0400
|
||||
+++ Lib/test/test_gdb.py 2012-04-12 08:52:58.320288761 -0400
|
||||
@@ -144,6 +153,10 @@
|
||||
# The tests assume that the first frame of printed
|
||||
# backtrace will not contain program counter,
|
||||
# that is however not guaranteed by gdb
|
||||
@@ -197,6 +205,10 @@
|
||||
'Missing separate debuginfo for ',
|
||||
'Try: zypper install -C ',
|
||||
)
|
|
@ -0,0 +1,11 @@
|
|||
diff -Naur Python-3.4.3.orig/Lib/distutils/tests/test_bdist_rpm.py Python-3.4.3/Lib/distutils/tests/test_bdist_rpm.py
|
||||
--- Python-3.4.3.orig/Lib/distutils/tests/test_bdist_rpm.py 2015-02-26 22:32:26.000000000 +0400
|
||||
+++ Python-3.4.3/Lib/distutils/tests/test_bdist_rpm.py 2015-02-26 22:32:26.000000000 +0400
|
||||
@@ -23,6 +23,7 @@
|
||||
|
||||
"""
|
||||
|
||||
+@unittest._skipInRpmBuild("don't try to nest one rpm build inside another rpm build")
|
||||
class BuildRpmTestCase(support.TempdirManager,
|
||||
support.EnvironGuard,
|
||||
support.LoggingSilencer,
|
10
python3.spec
10
python3.spec
|
@ -33,8 +33,8 @@
|
|||
|
||||
Summary: An interpreted, interactive object-oriented programming language
|
||||
Name: python3
|
||||
Version: 3.4.2
|
||||
Release: 2
|
||||
Version: 3.4.3
|
||||
Release: 1
|
||||
License: Modified CNRI Open Source License
|
||||
Group: Development/Python
|
||||
|
||||
|
@ -51,9 +51,9 @@ Patch3: python3-3.4.0-no-static-lib.patch
|
|||
Patch4: python3-3.4.0-more-configuration-flags.patch
|
||||
Patch5: python3-3.4.0-disable-tests-in-test_io.patch
|
||||
Patch6: python3-3.4.0-add-rpmbuild-hooks-to-unittest.patch
|
||||
Patch7: python3-3.4.0-skip-distutils-tests-that-fail-in-rpmbuild.patch
|
||||
Patch7: python3-3.4.3-skip-distutils-tests-that-fail-in-rpmbuild.patch
|
||||
Patch8: python3-3.4.0-hashlib-fips.patch
|
||||
Patch9: python3-3.4.0-fix-test_gdb-noise.patch
|
||||
Patch9: python3-3.4.3-fix-test_gdb-noise.patch
|
||||
Patch10: python3-3.4.0-uid-gid-overflows.patch
|
||||
Patch11: python3-3.4.0-disable-test_fs_holes-in-rpm-build.patch
|
||||
Patch12: python3-3.4.0-disable-parts-of-test_socket-in-rpm-build.patch
|
||||
|
@ -203,7 +203,7 @@ Various applications written using tkinter
|
|||
%patch6 -p1
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p0
|
||||
%patch9 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch12 -p1
|
||||
|
|
Loading…
Add table
Reference in a new issue