Hello community, here is the log from the commit of package python for openSUSE:12.1:Update:Test checked in at 2012-01-27 00:39:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:12.1:Update:Test/python (Old) and /work/SRC/openSUSE:12.1:Update:Test/.python.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:12.1:Update:Test/python/python-base.changes 2012-01-18 01:40:29.000000000 +0100 +++ /work/SRC/openSUSE:12.1:Update:Test/.python.new/python-base.changes 2012-01-27 00:40:01.000000000 +0100 @@ -1,0 +2,6 @@ +Fri Jan 20 16:36:34 UTC 2012 - [email protected] + +- change sys.platform to linux2 unconditionally (bnc#739304) + - this fix replaces previous linux3-compat patch + +------------------------------------------------------------------- --- /work/SRC/openSUSE:12.1:Update:Test/python/python.changes 2012-01-18 01:40:29.000000000 +0100 +++ /work/SRC/openSUSE:12.1:Update:Test/.python.new/python.changes 2012-01-27 00:40:01.000000000 +0100 @@ -1,0 +2,6 @@ +Fri Jan 20 16:36:34 UTC 2012 - [email protected] + +- change sys.platform to linux2 unconditionally (bnc#739304) + - this fix replaces previous linux3-compat patch + +------------------------------------------------------------------- Old: ---- python-2.7.2-linux3.patch New: ---- python-2.7.2-linux3-linux2.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-base.spec ++++++ --- /var/tmp/diff_new_pack.pXQq0F/_old 2012-01-27 00:40:02.000000000 +0100 +++ /var/tmp/diff_new_pack.pXQq0F/_new 2012-01-27 00:40:02.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-base # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -50,7 +50,7 @@ Patch8: python-2.6b3-curses-panel.patch Patch9: python-2.7.1-distutils_test_path.patch Patch10: sparc_longdouble.patch -Patch11: python-2.7.2-linux3.patch +Patch11: python-2.7.2-linux3-linux2.patch Patch12: http://psf.upfronthosting.co.za/roundup/tracker/file19029/python-test_structmembers.patch Patch13: python-2.7.2-fix_date_time_compiler.patch Patch14: python-2.7.1-urllib-noproxy.patch @@ -150,7 +150,7 @@ %patch8 %patch9 -p1 %patch10 -p1 -%patch11 +%patch11 -p1 %patch12 %patch13 %patch14 -p1 ++++++ python-doc.spec ++++++ --- /var/tmp/diff_new_pack.pXQq0F/_old 2012-01-27 00:40:02.000000000 +0100 +++ /var/tmp/diff_new_pack.pXQq0F/_new 2012-01-27 00:40:02.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-doc # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed ++++++ python.spec ++++++ --- /var/tmp/diff_new_pack.pXQq0F/_old 2012-01-27 00:40:02.000000000 +0100 +++ /var/tmp/diff_new_pack.pXQq0F/_new 2012-01-27 00:40:02.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package python # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,6 +15,8 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + + Name: python BuildRequires: db-devel fdupes gdbm-devel gmp-devel libbz2-devel libopenssl-devel ncurses-devel readline-devel sqlite-devel tk-devel xorg-x11-devel #Requires: openssl >= 0.9.8e @@ -57,7 +59,7 @@ Patch8: python-2.6b3-curses-panel.patch Patch9: python-2.7.1-distutils_test_path.patch Patch10: sparc_longdouble.patch -Patch11: python-2.7.2-linux3.patch +Patch11: python-2.7.2-linux3-linux2.patch Patch12: http://psf.upfronthosting.co.za/roundup/tracker/file19029/python-test_structmembers.patch Patch13: python-2.7.2-fix_date_time_compiler.patch Patch14: python-2.7.1-urllib-noproxy.patch @@ -181,7 +183,7 @@ %patch8 %patch9 -p1 %patch10 -p1 -%patch11 +%patch11 -p1 %patch12 %patch13 %patch14 -p1 ++++++ python-2.7.2-linux3-linux2.patch ++++++ # HG changeset patch # User Victor Stinner <[email protected]> # Date 1313841665 -7200 # Node ID 800d45e51dd797e4a39cd8fde7c3973e378866ff # Parent 5ef1d0eb2f547aa2c9def522e35b59edcbfe8641 Issue #12326: sys.platform is now always 'linux2' on Linux Even if Python is compiled on Linux 3. Index: Python-2.7.2/configure =================================================================== --- Python-2.7.2.orig/configure +++ Python-2.7.2/configure @@ -3003,6 +3003,7 @@ then MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in + linux*) MACHDEP="linux2";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; atheos*) MACHDEP="atheos";; Index: Python-2.7.2/configure.in =================================================================== --- Python-2.7.2.orig/configure.in +++ Python-2.7.2/configure.in @@ -293,6 +293,7 @@ then MACHDEP="$ac_md_system$ac_md_release" case $MACHDEP in + linux*) MACHDEP="linux2";; cygwin*) MACHDEP="cygwin";; darwin*) MACHDEP="darwin";; atheos*) MACHDEP="atheos";; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
