Hello community, here is the log from the commit of package python-pygame for openSUSE:Factory checked in at 2019-06-18 14:58:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pygame (Old) and /work/SRC/openSUSE:Factory/.python-pygame.new.4811 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pygame" Tue Jun 18 14:58:11 2019 rev:28 rq:710330 version:1.9.6 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pygame/python-pygame.changes 2018-09-11 17:20:05.687153018 +0200 +++ /work/SRC/openSUSE:Factory/.python-pygame.new.4811/python-pygame.changes 2019-06-18 14:58:21.849330571 +0200 @@ -1,0 +2,11 @@ +Mon May 20 08:46:49 UTC 2019 - [email protected] + +- version update to 1.9.6 + * mixer thread deadlock issue when controlling it from different + threads. + * pygame.version.vernum now has major, minor, and patch attributes. +- added patches + Do not test mp3 format. + + python-pygame-test-no-mp3.patch + +------------------------------------------------------------------- Old: ---- pygame-1.9.4.tar.gz New: ---- pygame-1.9.6.tar.gz python-pygame-test-no-mp3.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pygame.spec ++++++ --- /var/tmp/diff_new_pack.IfBTQJ/_old 2019-06-18 14:58:22.429330238 +0200 +++ /var/tmp/diff_new_pack.IfBTQJ/_new 2019-06-18 14:58:22.433330236 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-pygame # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,19 +12,21 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-pygame -Version: 1.9.4 +Version: 1.9.6 Release: 0 Summary: A Python Module for Interfacing with the SDL Multimedia Library License: LGPL-2.1-or-later Group: Development/Libraries/Python URL: https://github.com/pygame/pygame Source0: https://files.pythonhosted.org/packages/source/p/pygame/pygame-%{version}.tar.gz +# Do not test mp3 format; whe have that support disabled in SDL1 +Patch0: python-pygame-test-no-mp3.patch BuildRequires: %{python_module devel} BuildRequires: %{python_module numpy} BuildRequires: %{python_module setuptools} @@ -87,6 +89,7 @@ %prep %setup -q -n pygame-%{version} +%patch0 -p1 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 # Fix wrong-script-interpreter @@ -126,13 +129,13 @@ } %files %{python_files} -%doc WHATSNEW readme.html README.rst -%license LGPL +%doc README.rst +%license docs/LGPL %{python_sitearch}/pygame/ %{python_sitearch}/pygame-%{version}-py*.egg-info %files %{python_files devel} -%license LGPL +%license docs/LGPL %{python_sysconfig_var INCLUDEPY}/pygame/ %files -n %{name}-doc ++++++ pygame-1.9.4.tar.gz -> pygame-1.9.6.tar.gz ++++++ ++++ 338712 lines of diff (skipped) ++++++ python-pygame-test-no-mp3.patch ++++++ Index: pygame-1.9.6/test/mixer_music_test.py =================================================================== --- pygame-1.9.6.orig/test/mixer_music_test.py 2019-04-25 08:14:48.000000000 +0200 +++ pygame-1.9.6/test/mixer_music_test.py 2019-05-20 10:36:59.969907416 +0200 @@ -33,7 +33,7 @@ class MixerMusicModuleTest(unittest.Test # Load a music file for playback data_fname = example_path('data') - formats = ['mp3', 'ogg', 'wav'] + formats = ['ogg', 'wav'] for f in formats: path = os.path.join(data_fname, 'house_lo.%s' % f)
