From 3d4648eee52534a0ccede6e8894bf37525d0c568de7e7b44c7f047dedfb75fac Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 30 Dec 2023 17:31:38 +0000 Subject: [PATCH 1/2] - update to 2.5.2: * Added a gamepad mapping for the G-Shark GS-GP702 * Fixed touchpad events for the Razer Wolverine V2 Pro in PS5 mode * Fix white bar in docs * manylinux: Fix sdl version typo * include: rect: C API docs for Rect * draw: Fix arc width > 1 so it doesn't have gaps * setup: tox: Add 31 and 32 to list of pythons * docs: c_api/rect: Fix return code for pgRect_Check * setup: src_c: Require Cython to generate source files in dev * Added import information in camera and sdl2 controller modules docs * Fix: Grammatical Error in MoveIt.rst * examples: Fix music_drop_fade with type checker * stubs: Add pygame.__version__ to type stubs * gitignore: Add cython generated files to ignore list * examples/midi: Refactor to fix typing issues * display set_mode: Remove SDL_WINDOW_FULLSCREEN_DESKTOP * buildconfig/manylinux: Bump SDL 2.28.3 * docs: Fix READMEs with a good Sphinx version - update to 2.5.1: * Fixed crash at shutdown when using the D3D11 renderer * Fixed setting the viewport when using the D3D12 renderer * Fixed 8BitDo gamepad mapping when in XInput mode on Linux * Fixed controller lockup initializing some unofficial PS4 replica controllers * Fixed video initialization on headless Linux systems using VNC * Fixed large mouse jump when changing relative mouse mode on OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygame?expand=0&rev=50 --- pygame-2.5.0.tar.gz | 3 --- pygame-2.5.2.tar.gz | 3 +++ python-pygame.changes | 45 +++++++++++++++++++++++++++++++++++++++++-- python-pygame.spec | 4 ++-- 4 files changed, 48 insertions(+), 7 deletions(-) delete mode 100644 pygame-2.5.0.tar.gz create mode 100644 pygame-2.5.2.tar.gz diff --git a/pygame-2.5.0.tar.gz b/pygame-2.5.0.tar.gz deleted file mode 100644 index 14abeff..0000000 --- a/pygame-2.5.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:edd5745b79435976d92c0a7318aedcafcb7ac4567125ac6ba88aa473559ef9ab -size 15560194 diff --git a/pygame-2.5.2.tar.gz b/pygame-2.5.2.tar.gz new file mode 100644 index 0000000..0c80db2 --- /dev/null +++ b/pygame-2.5.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b89eb5d539e7ac5cf75513125fb5f2f0a2d918b1fd6e981f23bf0ac1b1c24a +size 15788328 diff --git a/python-pygame.changes b/python-pygame.changes index 76d21cb..6961dd1 100644 --- a/python-pygame.changes +++ b/python-pygame.changes @@ -1,3 +1,44 @@ +------------------------------------------------------------------- +Sat Dec 30 16:59:23 UTC 2023 - Dirk Müller + +- update to 2.5.2: + * Added a gamepad mapping for the G-Shark GS-GP702 + * Fixed touchpad events for the Razer Wolverine V2 Pro in PS5 + mode + * Fix white bar in docs + * manylinux: Fix sdl version typo + * include: rect: C API docs for Rect + * draw: Fix arc width > 1 so it doesn't have gaps + * setup: tox: Add 31 and 32 to list of pythons + * docs: c_api/rect: Fix return code for pgRect_Check + * setup: src_c: Require Cython to generate source files in dev + * Added import information in camera and sdl2 controller + modules docs + * Fix: Grammatical Error in MoveIt.rst + * examples: Fix music_drop_fade with type checker + * stubs: Add pygame.__version__ to type stubs + * gitignore: Add cython generated files to ignore list + * examples/midi: Refactor to fix typing issues + * display set_mode: Remove SDL_WINDOW_FULLSCREEN_DESKTOP + * buildconfig/manylinux: Bump SDL 2.28.3 + * docs: Fix READMEs with a good Sphinx version +- update to 2.5.1: + * Fixed crash at shutdown when using the D3D11 renderer + * Fixed setting the viewport when using the D3D12 renderer + * Fixed 8BitDo gamepad mapping when in XInput mode on Linux + * Fixed controller lockup initializing some unofficial PS4 + replica controllers + * Fixed video initialization on headless Linux systems using + VNC + * Fixed large mouse jump when changing relative mouse mode on + macOS + * Fixed hardware keyboard text input on iPadOS + * Added support for the Nintendo Online Famicom controllers + * Improved support for third-party Nintendo Switch controllers + * Fixed setting the player LED on Nintendo Switch controllers + * Added Linux controller mapping for the Logitech Chillstream + * Fixed appending to a file greater than 4GB in size on Windows + ------------------------------------------------------------------- Mon Sep 11 14:54:31 UTC 2023 - Lubos Kocman @@ -454,7 +495,7 @@ Fri Aug 12 19:46:06 UTC 2022 - Jaime Marquínez Ferrándiz -- fix portmidi configuration detection +- fix portmidi configuration detection ------------------------------------------------------------------- Wed Jan 5 06:49:40 UTC 2022 - Steve Kowalik @@ -471,7 +512,7 @@ Wed Jan 5 06:49:40 UTC 2022 - Steve Kowalik @MyreMylar in #2815 * Remove most SDL1/SDL2 compatibility c code by @Starbuck5 in #2823 * Ubuntu 18/20 SDL2 sdist CI, mac CI pp36 drop by @ankith26 in #2821 - * SDL1 buildconfig removal by @robertpfeiffer and @illume in #2824 + * SDL1 buildconfig removal by @robertpfeiffer and @illume in #2824 - Drop support-SDL2-2.0.16.patch. ------------------------------------------------------------------- diff --git a/python-pygame.spec b/python-pygame.spec index b87a709..cbd011e 100644 --- a/python-pygame.spec +++ b/python-pygame.spec @@ -16,9 +16,9 @@ # -%define skip_python36 1 +%{?sle15_python_module_pythons} Name: python-pygame -Version: 2.5.0 +Version: 2.5.2 Release: 0 Summary: A Python Module for Interfacing with the SDL Multimedia Library License: Apache-2.0 AND LGPL-2.1-or-later AND BSD-2-Clause AND BSD-3-Clause AND libpng-2.0 From d5abbc1f474a5df7d5acef5317f1d363ddf30313662721580a3e01a63e68e01d Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 3 Jan 2024 10:33:18 +0000 Subject: [PATCH 2/2] OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygame?expand=0&rev=51 --- python-pygame.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python-pygame.spec b/python-pygame.spec index cbd011e..7281198 100644 --- a/python-pygame.spec +++ b/python-pygame.spec @@ -1,7 +1,7 @@ # # spec file for package python-pygame # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -27,6 +27,7 @@ Source0: https://files.pythonhosted.org/packages/source/p/pygame/pygame-% BuildRequires: %{python_module devel} BuildRequires: %{python_module numpy} BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools} BuildRequires: %{python_module wheel} BuildRequires: bitstream-vera-fonts BuildRequires: fdupes