Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pygame for openSUSE:Factory checked in at 2022-12-13 18:55:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pygame (Old) and /work/SRC/openSUSE:Factory/.python-pygame.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pygame" Tue Dec 13 18:55:14 2022 rev:34 rq:1042426 version:2.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pygame/python-pygame.changes 2022-08-15 20:00:43.145478165 +0200 +++ /work/SRC/openSUSE:Factory/.python-pygame.new.1835/python-pygame.changes 2022-12-13 18:55:28.811207386 +0100 @@ -1,0 +2,6 @@ +Mon Dec 12 16:41:18 UTC 2022 - Daniel Garcia <daniel.gar...@suse.com> + +- Add adjust-surface-mask.patch gh#pygame/pygame#3577, to fix tests with SDL + 2.26.0. + +------------------------------------------------------------------- New: ---- adjust-surface-mask.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pygame.spec ++++++ --- /var/tmp/diff_new_pack.xbbLYy/_old 2022-12-13 18:55:29.507211101 +0100 +++ /var/tmp/diff_new_pack.xbbLYy/_new 2022-12-13 18:55:29.515211144 +0100 @@ -16,7 +16,6 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python36 1 Name: python-pygame Version: 2.1.2 @@ -25,6 +24,8 @@ License: LGPL-2.1-or-later URL: https://github.com/pygame/pygame Source0: https://files.pythonhosted.org/packages/source/p/pygame/pygame-%{version}.tar.gz +# PATCH-FIX-UPSTREAM adjust-surface-mask.patch gh#pygame/pygame#3577 +Patch0: adjust-surface-mask.patch BuildRequires: %{python_module devel} BuildRequires: %{python_module numpy} BuildRequires: %{python_module setuptools} @@ -89,8 +90,7 @@ This package contains documentation and example programs for Pygame. %prep -%setup -q -n pygame-%{version} -%autopatch -p1 +%autosetup -p1 -n pygame-%{version} sed -i 's/\r$//' docs/reST/ref/code_examples/draw_module_example.py sed -i 's/\r$//' docs/reST/ref/code_examples/joystick_calls.py ++++++ adjust-surface-mask.patch ++++++ >From 420c1a73416a607cf9157520e86c8b21e778576d Mon Sep 17 00:00:00 2001 From: Starbuck5 <46412508+starbu...@users.noreply.github.com> Date: Sat, 19 Nov 2022 21:17:32 -0800 Subject: [PATCH] Adjust surface masks to create a proper 24 bit Surface The SDL 2.26.0 pre-release rejects a 24 bit Surface created with this mask, which is the right call, as it needs 32 bits of space. Older SDL went ahead and created a 32 bit surface anyway, which it probably shouldn't have. --- test/surface_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/surface_test.py b/test/surface_test.py index 1c2369b366..51e2bc822f 100644 --- a/test/surface_test.py +++ b/test/surface_test.py @@ -2023,7 +2023,7 @@ def test_get_losses(self): mask8 = (224, 28, 3, 0) mask15 = (31744, 992, 31, 0) mask16 = (63488, 2016, 31, 0) - mask24 = (4278190080, 16711680, 65280, 0) + mask24 = (16711680, 65280, 255, 0) mask32 = (4278190080, 16711680, 65280, 255) # Surfaces with standard depths and masks