Accepting request 330043 from home:dimstar:Factory
- Add python3-ncurses-6.0-accessors.patch: Fix build with NCurses 6.0 and OPAQUE_WINDOW set to 1. - Add python3-ncurses-6.0-accessors.patch: Fix build with NCurses 6.0 and OPAQUE_WINDOW set to 1. OBS-URL: https://build.opensuse.org/request/show/330043 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=186
This commit is contained in:
parent
08c864955f
commit
7f32046662
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 9 12:19:01 UTC 2015 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Add python3-ncurses-6.0-accessors.patch: Fix build with
|
||||||
|
NCurses 6.0 and OPAQUE_WINDOW set to 1.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 10 11:19:58 UTC 2015 - dmueller@suse.com
|
Wed Jun 10 11:19:58 UTC 2015 - dmueller@suse.com
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ Patch31: python-2.7.7-mhlib-linkcount.patch
|
|||||||
Patch33: python-2.7.9-ssl_ca_path.patch
|
Patch33: python-2.7.9-ssl_ca_path.patch
|
||||||
# PATCH-FEATURE-SLE disable SSL verification-by-default in http clients
|
# PATCH-FEATURE-SLE disable SSL verification-by-default in http clients
|
||||||
Patch34: python-2.7.9-sles-disable-verification-by-default.patch
|
Patch34: python-2.7.9-sles-disable-verification-by-default.patch
|
||||||
|
# PATCH-FIX-UPSTREAM python-ncurses-6.0-accessors.patch dimstar@opensuse.org -- Fix build with NCurses 6.0 and OPAQUE_WINDOW set to 1
|
||||||
|
Patch35: python-ncurses-6.0-accessors.patch
|
||||||
# COMMON-PATCH-END
|
# COMMON-PATCH-END
|
||||||
%define python_version %(echo %{tarversion} | head -c 3)
|
%define python_version %(echo %{tarversion} | head -c 3)
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
@ -146,6 +148,7 @@ other applications.
|
|||||||
%if %{suse_version} == 1315
|
%if %{suse_version} == 1315
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%endif
|
%endif
|
||||||
|
%patch35 -p1
|
||||||
|
|
||||||
# drop Autoconf version requirement
|
# drop Autoconf version requirement
|
||||||
sed -i 's/^version_required/dnl version_required/' configure.ac
|
sed -i 's/^version_required/dnl version_required/' configure.ac
|
||||||
|
@ -55,6 +55,8 @@ Patch31: python-2.7.7-mhlib-linkcount.patch
|
|||||||
Patch33: python-2.7.9-ssl_ca_path.patch
|
Patch33: python-2.7.9-ssl_ca_path.patch
|
||||||
# PATCH-FEATURE-SLE disable SSL verification-by-default in http clients
|
# PATCH-FEATURE-SLE disable SSL verification-by-default in http clients
|
||||||
Patch34: python-2.7.9-sles-disable-verification-by-default.patch
|
Patch34: python-2.7.9-sles-disable-verification-by-default.patch
|
||||||
|
# PATCH-FIX-UPSTREAM python-ncurses-6.0-accessors.patch dimstar@opensuse.org -- Fix build with NCurses 6.0 and OPAQUE_WINDOW set to 1
|
||||||
|
Patch35: python-ncurses-6.0-accessors.patch
|
||||||
# COMMON-PATCH-END
|
# COMMON-PATCH-END
|
||||||
Provides: pyth_doc
|
Provides: pyth_doc
|
||||||
Provides: pyth_ps
|
Provides: pyth_ps
|
||||||
@ -101,6 +103,7 @@ Python, and Macintosh Module Reference in PDF format.
|
|||||||
%if %{suse_version} == 1315
|
%if %{suse_version} == 1315
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%endif
|
%endif
|
||||||
|
%patch35 -p1
|
||||||
|
|
||||||
# drop Autoconf version requirement
|
# drop Autoconf version requirement
|
||||||
sed -i 's/^version_required/dnl version_required/' configure.ac
|
sed -i 's/^version_required/dnl version_required/' configure.ac
|
||||||
|
40
python-ncurses-6.0-accessors.patch
Normal file
40
python-ncurses-6.0-accessors.patch
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
Index: Python-2.7.10/Modules/_cursesmodule.c
|
||||||
|
===================================================================
|
||||||
|
--- Python-2.7.10.orig/Modules/_cursesmodule.c
|
||||||
|
+++ Python-2.7.10/Modules/_cursesmodule.c
|
||||||
|
@@ -807,7 +807,7 @@ PyCursesWindow_EchoChar(PyCursesWindowOb
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef WINDOW_HAS_FLAGS
|
||||||
|
- if (self->win->_flags & _ISPAD)
|
||||||
|
+ if (is_pad(self->win))
|
||||||
|
return PyCursesCheckERR(pechochar(self->win, ch | attr),
|
||||||
|
"echochar");
|
||||||
|
else
|
||||||
|
@@ -1237,7 +1237,7 @@ PyCursesWindow_NoOutRefresh(PyCursesWind
|
||||||
|
#ifndef WINDOW_HAS_FLAGS
|
||||||
|
if (0)
|
||||||
|
#else
|
||||||
|
- if (self->win->_flags & _ISPAD)
|
||||||
|
+ if (is_pad(self->win))
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
switch(PyTuple_Size(args)) {
|
||||||
|
@@ -1380,7 +1380,7 @@ PyCursesWindow_Refresh(PyCursesWindowObj
|
||||||
|
#ifndef WINDOW_HAS_FLAGS
|
||||||
|
if (0)
|
||||||
|
#else
|
||||||
|
- if (self->win->_flags & _ISPAD)
|
||||||
|
+ if (is_pad(self->win))
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
switch(PyTuple_Size(args)) {
|
||||||
|
@@ -1447,7 +1447,7 @@ PyCursesWindow_SubWin(PyCursesWindowObje
|
||||||
|
|
||||||
|
/* printf("Subwin: %i %i %i %i \n", nlines, ncols, begin_y, begin_x); */
|
||||||
|
#ifdef WINDOW_HAS_FLAGS
|
||||||
|
- if (self->win->_flags & _ISPAD)
|
||||||
|
+ if (is_pad(self->win))
|
||||||
|
win = subpad(self->win, nlines, ncols, begin_y, begin_x);
|
||||||
|
else
|
||||||
|
#endif
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 9 12:18:20 UTC 2015 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Add python3-ncurses-6.0-accessors.patch: Fix build with
|
||||||
|
NCurses 6.0 and OPAQUE_WINDOW set to 1.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun May 24 14:36:10 UTC 2015 - michael@stroeder.com
|
Sun May 24 14:36:10 UTC 2015 - michael@stroeder.com
|
||||||
|
|
||||||
|
@ -59,6 +59,8 @@ Patch31: python-2.7.7-mhlib-linkcount.patch
|
|||||||
Patch33: python-2.7.9-ssl_ca_path.patch
|
Patch33: python-2.7.9-ssl_ca_path.patch
|
||||||
# PATCH-FEATURE-SLE disable SSL verification-by-default in http clients
|
# PATCH-FEATURE-SLE disable SSL verification-by-default in http clients
|
||||||
Patch34: python-2.7.9-sles-disable-verification-by-default.patch
|
Patch34: python-2.7.9-sles-disable-verification-by-default.patch
|
||||||
|
# PATCH-FIX-UPSTREAM python-ncurses-6.0-accessors.patch dimstar@opensuse.org -- Fix build with NCurses 6.0 and OPAQUE_WINDOW set to 1
|
||||||
|
Patch35: python-ncurses-6.0-accessors.patch
|
||||||
# COMMON-PATCH-END
|
# COMMON-PATCH-END
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: db-devel
|
BuildRequires: db-devel
|
||||||
@ -181,6 +183,7 @@ implementation of the standard Unix DBM databases.
|
|||||||
%if %{suse_version} == 1315
|
%if %{suse_version} == 1315
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%endif
|
%endif
|
||||||
|
%patch35 -p1
|
||||||
|
|
||||||
# drop Autoconf version requirement
|
# drop Autoconf version requirement
|
||||||
sed -i 's/^version_required/dnl version_required/' configure.ac
|
sed -i 's/^version_required/dnl version_required/' configure.ac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user