Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-wxPython for openSUSE:Factory checked in at 2021-06-16 20:33:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-wxPython (Old) and /work/SRC/openSUSE:Factory/.python-wxPython.new.32437 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-wxPython" Wed Jun 16 20:33:19 2021 rev:11 rq:899524 version:4.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-wxPython/python-wxPython.changes 2021-04-29 22:44:51.124178549 +0200 +++ /work/SRC/openSUSE:Factory/.python-wxPython.new.32437/python-wxPython.changes 2021-06-16 20:33:21.758968822 +0200 @@ -1,0 +2,79 @@ +Fri Jun 11 01:41:18 UTC 2021 - Stanislav Brabec <sbra...@suse.com> + +- Increase disk space constraint to 15G. + +------------------------------------------------------------------- +Tue Jun 8 17:52:01 UTC 2021 - Antoine Belvire <antoine.belv...@opensuse.org> + +- Update to version 4.1.1: + * wxWidgets is now validating the flags passed when adding items + to a sizer, to ensure that they are the correct flags for the + type of the sizer. If the given flags do not make sense, for + example using horizontal alignment flags in a horizontal box + sizer, then a wxAssertionError error is raised. + * Fixed missing binder for wxEVT_STC_AUTOCOMP_SELECTION_CHANGE. + (PR#1613). + * DataViewModel.HasValue can be overridden and will inform the + DataViewCtrl whether or not an item and column has data. If + HasValue returns False, then GetValue for that item/col will + not be called. This allows a distinction between a truly empty + cell, and one that has a value even if it is an empty string. + (PR#1600) + * Added flag that allows blocking of item dragging in the + UltimateListControl class. (PR#1620) + * Add the column index to notification events in + UltimateListControl (PR#1630). + * Added orientation parameter to UltimateListControl.GetScrollPos. + (PR#1632) + * wx.lib.agw.aui.AuiNotebook RemovePage() now hides the removed + page, so it needs to be shown again if it is reused in another + place. (PR#1668) + * Fixed issue that could modify bytes objects under Python. + (PR#1680) + * Added wx.lib.agw.aui.EVT_AUI_PANE_CLOSE event which is sent when + a AUI (the agw version) Pane has been closed (after it has been + closed, not when it is about to be closed, which is when + EVT_AUI_PANE_CLOSE is sent.) (PR#1628) + * Exposed the wx.DC methods GetGraphicsContext and + SetGraphicsContext. Depending on the platform and the type of + the DC, there may be a wx.GraphicsContext used for the + implementation of the DC. If so, the GetGraphicsContext method + enables access to it. Be sure to check that the return value is + not None before trying to use it. + * Simplified the implementation of the wx.App.InitLocale method. + See the MigrationGuide for more information. + * Added wx.lib.agw.aui.AUI_DOCKART_HINT_WINDOW_BORDER_COLOUR + constant so the hint window border color can be themed as well. + * The wx.lib.mixins.listCtrl.CheckListCtrlMixin is now obsolete + because wx.ListCtrl has new functionality which does pretty much + the same thing. In fact there is some overlap in method names + which may trip up some use cases. It is advised to drop the use + of CheckListCtrlMixin and just use the wx.ListBox functionality. + You will need to call EnableCheckBoxes to turn it on, and you + may need to change some event handlers or overloaded methods. + * wx.html2.WebView is now able to use Microsoft's Edge browser + component as its backend renderer. This should improve the + capabilities of the WebView widget on Windows, and be more + consistent with the WebViews on the other platforms, compared to + the original IE 11 backend. Using this backed requires that a + new-ish version of the Edge browser is installed on the end + user's computer. + * Added the wx.Image.ConvertToRegion method. This lets you create + a wx.Region from an image and a specified color or the mask if + the image has one. This was done to workaround a bug in wxMac, + but it seems worthwhile enough to keep it around even after the + bug was fixed. + * Added the missing context manager methods for wx.LogNull. + (PR#1842) + * Refactored ScrolledThumbnail out of agw.ThumbnailCtrl so as to + be usable outside of ThumbnailCtrl. +- Add wxPython-4.1.1-fix-overrides.patch: Fix build with wxWidgets + 3.1.5 (gh#wxWidgets/Phoenix#1909). +- Remove patches merged upstream: + * 0001-Fix-conversion-of-variant-list-members.patch + * 0001-Fix-wxUIActionSimulator-Text-parameter-documentation.patch + * 0003-Use-explicit-wxString-c_str-conversion-for-sipFindTy.patch +- Increase required disk space to 15GB: Fix build failures due to + disk space exhaustion. + +------------------------------------------------------------------- Old: ---- 0001-Fix-conversion-of-variant-list-members.patch 0001-Fix-wxUIActionSimulator-Text-parameter-documentation.patch 0003-Use-explicit-wxString-c_str-conversion-for-sipFindTy.patch wxPython-4.1.0.tar.gz New: ---- wxPython-4.1.1-fix-overrides.patch wxPython-4.1.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-wxPython.spec ++++++ --- /var/tmp/diff_new_pack.S6vtjW/_old 2021-06-16 20:33:23.842972378 +0200 +++ /var/tmp/diff_new_pack.S6vtjW/_new 2021-06-16 20:33:23.842972378 +0200 @@ -32,7 +32,7 @@ %define skip_python36 1 %endif Name: python-wxPython -Version: 4.1.0 +Version: 4.1.1 Release: 0 Summary: The "Phoenix" variant of the wxWidgets Python bindings License: GPL-2.0-or-later @@ -44,12 +44,8 @@ Patch0: fix_no_return_in_nonvoid.patch # PATCH-FIX-OPENSUSE Patch1: use_stl_build.patch -# PATCH-FIX-UPSTREAM -- patch for bundled wxWidgets -Patch2: 0001-Fix-conversion-of-variant-list-members.patch -# PATCH-FIX-UPSTREAM -Patch3: 0001-Fix-wxUIActionSimulator-Text-parameter-documentation.patch -# PATCH-FIX-UPSTREAM -Patch4: 0003-Use-explicit-wxString-c_str-conversion-for-sipFindTy.patch +# PATCH-FIX-UPSTREAM wxPython-4.1.1-fix-overrides.patch -- Fix build with wxWidgets 3.1.5 (gh#wxWidgets/Phoenix#1909) +Patch2: wxPython-4.1.1-fix-overrides.patch BuildRequires: %{python_module devel} BuildRequires: %{python_module requests} BuildRequires: %{python_module setuptools} ++++++ _constraints ++++++ --- /var/tmp/diff_new_pack.S6vtjW/_old 2021-06-16 20:33:23.874972433 +0200 +++ /var/tmp/diff_new_pack.S6vtjW/_new 2021-06-16 20:33:23.878972440 +0200 @@ -1,7 +1,7 @@ <constraints> <hardware> <disk> - <size unit="G">10</size> + <size unit="G">15</size> </disk> </hardware> </constraints> ++++++ wxPython-4.1.1-fix-overrides.patch ++++++ --- wxPython-4.1.1.orig/sip/cpp/sip_gridwxGridEvent.cpp 2020-11-21 20:10:38.000000000 +0100 +++ wxPython-4.1.1/sip/cpp/sip_gridwxGridEvent.cpp 2021-05-16 03:21:55.031555889 +0200 @@ -32,8 +32,8 @@ * this class. */ protected: - int GetRow() SIP_OVERRIDE; - int GetCol() SIP_OVERRIDE; + int GetRow(); + int GetCol(); ::wxEvent* Clone() const SIP_OVERRIDE; ::wxEventCategory GetEventCategory() const SIP_OVERRIDE; ++++++ wxPython-4.1.0.tar.gz -> wxPython-4.1.1.tar.gz ++++++ /work/SRC/openSUSE:Factory/python-wxPython/wxPython-4.1.0.tar.gz /work/SRC/openSUSE:Factory/.python-wxPython.new.32437/wxPython-4.1.1.tar.gz differ: char 5, line 1