Hello community,

here is the log from the commit of package python for openSUSE:Factory checked 
in at 2018-02-01 21:25:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python (Old)
 and      /work/SRC/openSUSE:Factory/.python.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python"

Thu Feb  1 21:25:39 2018 rev:127 rq:571147 version:2.7.14

Changes:
--------
--- /work/SRC/openSUSE:Factory/python/python-base.changes       2018-01-06 
18:45:54.288439713 +0100
+++ /work/SRC/openSUSE:Factory/.python.new/python-base.changes  2018-02-01 
21:25:42.891376593 +0100
@@ -1,0 +2,5 @@
+Tue Jan 30 16:08:33 UTC 2018 - tchva...@suse.com
+
+- Add patch python-fix-shebang.patch to fix bsc#1078326
+
+-------------------------------------------------------------------
python.changes: same change

New:
----
  python-fix-shebang.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-base.spec ++++++
--- /var/tmp/diff_new_pack.uFSTEN/_old  2018-02-01 21:25:45.071274702 +0100
+++ /var/tmp/diff_new_pack.uFSTEN/_new  2018-02-01 21:25:45.075274515 +0100
@@ -56,6 +56,8 @@
 Patch35:        python-ncurses-6.0-accessors.patch
 # PATCH-FIX-UPSTREAM bmwiedem...@suse.de -- allow python packages to build 
reproducibly
 Patch38:        reproducible.patch
+# PATCH-FIX-UPSTREAM taken from upstream fix py3 shebang
+Patch39:        python-fix-shebang.patch
 # COMMON-PATCH-END
 %define         python_version    %(echo %{tarversion} | head -c 3)
 BuildRequires:  automake
@@ -159,6 +161,7 @@
 %endif
 %patch35 -p1
 %patch38 -p1
+%patch39 -p1
 
 # drop Autoconf version requirement
 sed -i 's/^version_required/dnl version_required/' configure.ac

++++++ python-doc.spec ++++++
--- /var/tmp/diff_new_pack.uFSTEN/_old  2018-02-01 21:25:45.099273393 +0100
+++ /var/tmp/diff_new_pack.uFSTEN/_new  2018-02-01 21:25:45.099273393 +0100
@@ -57,6 +57,8 @@
 Patch35:        python-ncurses-6.0-accessors.patch
 # PATCH-FIX-UPSTREAM bmwiedem...@suse.de -- allow python packages to build 
reproducibly
 Patch38:        reproducible.patch
+# PATCH-FIX-UPSTREAM taken from upstream fix py3 shebang
+Patch39:        python-fix-shebang.patch
 # COMMON-PATCH-END
 Provides:       pyth_doc
 Provides:       pyth_ps
@@ -106,6 +108,7 @@
 %endif
 %patch35 -p1
 %patch38 -p1
+%patch39 -p1
 
 # drop Autoconf version requirement
 sed -i 's/^version_required/dnl version_required/' configure.ac

++++++ python.spec ++++++
--- /var/tmp/diff_new_pack.uFSTEN/_old  2018-02-01 21:25:45.127272085 +0100
+++ /var/tmp/diff_new_pack.uFSTEN/_new  2018-02-01 21:25:45.127272085 +0100
@@ -62,6 +62,8 @@
 Patch35:        python-ncurses-6.0-accessors.patch
 # PATCH-FIX-UPSTREAM bmwiedem...@suse.de -- allow python packages to build 
reproducibly
 Patch38:        reproducible.patch
+# PATCH-FIX-UPSTREAM taken from upstream fix py3 shebang
+Patch39:        python-fix-shebang.patch
 # COMMON-PATCH-END
 BuildRequires:  automake
 BuildRequires:  db-devel
@@ -212,6 +214,7 @@
 %endif
 %patch35 -p1
 %patch38 -p1
+%patch39 -p1
 
 # drop Autoconf version requirement
 sed -i 's/^version_required/dnl version_required/' configure.ac


++++++ python-fix-shebang.patch ++++++
>From 448c6739877a4143a2c3599f041fa6127f354044 Mon Sep 17 00:00:00 2001
From: Victor Stinner <victor.stin...@gmail.com>
Date: Thu, 23 Nov 2017 17:04:34 +0100
Subject: [PATCH] bpo-29512: Fix Lib/test/bisect.py shebang (#4522)

Replace python3 with python2.
---
 Lib/test/bisect.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Lib/test/bisect.py b/Lib/test/bisect.py
index 6fc561890262..1bf32ef06dd9 100755
--- a/Lib/test/bisect.py
+++ b/Lib/test/bisect.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python2
 """
 Command line tool to bisect failing CPython tests.
 


Reply via email to