Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-glfw for openSUSE:Factory checked in at 2025-09-29 16:37:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-glfw (Old) and /work/SRC/openSUSE:Factory/.python-glfw.new.11973 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-glfw" Mon Sep 29 16:37:31 2025 rev:17 rq:1307755 version:2.10.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-glfw/python-glfw.changes 2025-05-30 17:25:35.299911586 +0200 +++ /work/SRC/openSUSE:Factory/.python-glfw.new.11973/python-glfw.changes 2025-09-29 16:37:44.804316046 +0200 @@ -1,0 +2,6 @@ +Mon Sep 29 11:13:08 UTC 2025 - Dirk Müller <[email protected]> + +- update to 2.10.0: + * Added type stubs + +------------------------------------------------------------------- Old: ---- glfw-2.9.0.tar.gz New: ---- glfw-2.10.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-glfw.spec ++++++ --- /var/tmp/diff_new_pack.YsFZBp/_old 2025-09-29 16:37:45.548347219 +0200 +++ /var/tmp/diff_new_pack.YsFZBp/_new 2025-09-29 16:37:45.552347387 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-glfw # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-glfw -Version: 2.9.0 +Version: 2.10.0 Release: 0 Summary: A ctypes-based wrapper for GLFW3 License: MIT ++++++ glfw-2.9.0.tar.gz -> glfw-2.10.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glfw-2.9.0/CHANGELOG.md new/glfw-2.10.0/CHANGELOG.md --- old/glfw-2.9.0/CHANGELOG.md 2025-04-15 17:35:55.000000000 +0200 +++ new/glfw-2.10.0/CHANGELOG.md 2025-09-12 10:51:30.000000000 +0200 @@ -4,6 +4,9 @@ For information on changes in GLFW itself, see the [GLFW version history](https://www.glfw.org/changelog.html). +## [2.10.0] - 2025-09-12 +- Added type stubs + ## [2.9.0] - 2025-04-15 - Added library search paths for various architectures diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glfw-2.9.0/PKG-INFO new/glfw-2.10.0/PKG-INFO --- old/glfw-2.9.0/PKG-INFO 2025-04-15 17:36:12.096129700 +0200 +++ new/glfw-2.10.0/PKG-INFO 2025-09-12 10:51:44.435143200 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: glfw -Version: 2.9.0 +Version: 2.10.0 Summary: A ctypes-based wrapper for GLFW3. Home-page: https://github.com/FlorianRhiem/pyGLFW Author: Florian Rhiem diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glfw-2.9.0/glfw/GLFW.py new/glfw-2.10.0/glfw/GLFW.py --- old/glfw-2.9.0/glfw/GLFW.py 2025-04-15 17:35:55.000000000 +0200 +++ new/glfw-2.10.0/glfw/GLFW.py 2025-09-12 10:51:30.000000000 +0200 @@ -1,6 +1,6 @@ """ Automatically generated C-style module for pyGLFW """ +from .library import glfw as _glfw from . import ( - _glfw, ACCUM_ALPHA_BITS as GLFW_ACCUM_ALPHA_BITS, ACCUM_BLUE_BITS as GLFW_ACCUM_BLUE_BITS, ACCUM_GREEN_BITS as GLFW_ACCUM_GREEN_BITS, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glfw-2.9.0/glfw/__init__.py new/glfw-2.10.0/glfw/__init__.py --- old/glfw-2.9.0/glfw/__init__.py 2025-04-15 17:35:55.000000000 +0200 +++ new/glfw-2.10.0/glfw/__init__.py 2025-09-12 10:51:30.000000000 +0200 @@ -9,7 +9,7 @@ __author__ = 'Florian Rhiem ([email protected])' __copyright__ = 'Copyright (c) 2013-2024 Florian Rhiem' __license__ = 'MIT' -__version__ = '2.9.0' +__version__ = '2.10.0' # By default, GLFW errors will be handled by a pre-defined error callback. # Depending on the value of ERROR_REPORTING, this callback will: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glfw-2.9.0/glfw/library.py new/glfw-2.10.0/glfw/library.py --- old/glfw-2.9.0/glfw/library.py 2025-04-15 17:35:55.000000000 +0200 +++ new/glfw-2.10.0/glfw/library.py 2025-09-12 10:51:30.000000000 +0200 @@ -227,7 +227,7 @@ if os.environ.get('PYGLFW_LIBRARY', ''): try: - glfw = ctypes.CDLL(os.environ['PYGLFW_LIBRARY']) + glfw = ctypes.CDLL(os.environ['PYGLFW_LIBRARY']) # type: ctypes.CDLL | None except OSError: glfw = None elif sys.platform == 'win32': diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glfw-2.9.0/glfw.egg-info/PKG-INFO new/glfw-2.10.0/glfw.egg-info/PKG-INFO --- old/glfw-2.9.0/glfw.egg-info/PKG-INFO 2025-04-15 17:36:12.000000000 +0200 +++ new/glfw-2.10.0/glfw.egg-info/PKG-INFO 2025-09-12 10:51:44.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: glfw -Version: 2.9.0 +Version: 2.10.0 Summary: A ctypes-based wrapper for GLFW3. Home-page: https://github.com/FlorianRhiem/pyGLFW Author: Florian Rhiem diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/glfw-2.9.0/setup.py new/glfw-2.10.0/setup.py --- old/glfw-2.9.0/setup.py 2025-04-15 17:35:55.000000000 +0200 +++ new/glfw-2.10.0/setup.py 2025-09-12 10:51:30.000000000 +0200 @@ -8,7 +8,7 @@ setup( name='glfw', - version='2.9.0', + version='2.10.0', description='A ctypes-based wrapper for GLFW3.', long_description=long_description, url='https://github.com/FlorianRhiem/pyGLFW',
