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 2024-02-01 18:06:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-glfw (Old)
 and      /work/SRC/openSUSE:Factory/.python-glfw.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-glfw"

Thu Feb  1 18:06:02 2024 rev:13 rq:1143282 version:2.6.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-glfw/python-glfw.changes  2023-12-21 
23:38:36.742535388 +0100
+++ /work/SRC/openSUSE:Factory/.python-glfw.new.1815/python-glfw.changes        
2024-02-01 18:07:05.074783126 +0100
@@ -1,0 +2,6 @@
+Thu Feb  1 10:14:12 UTC 2024 - Dirk Müller <dmuel...@suse.com>
+
+- update to 2.6.5:
+  * Fixed Python version check
+
+-------------------------------------------------------------------

Old:
----
  glfw-2.6.4.tar.gz

New:
----
  glfw-2.6.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-glfw.spec ++++++
--- /var/tmp/diff_new_pack.nJwmA8/_old  2024-02-01 18:07:05.590801946 +0100
+++ /var/tmp/diff_new_pack.nJwmA8/_new  2024-02-01 18:07:05.590801946 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-glfw
 #
-# 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
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-glfw
-Version:        2.6.4
+Version:        2.6.5
 Release:        0
 Summary:        A ctypes-based wrapper for GLFW3
 License:        MIT

++++++ glfw-2.6.4.tar.gz -> glfw-2.6.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glfw-2.6.4/CHANGELOG.md new/glfw-2.6.5/CHANGELOG.md
--- old/glfw-2.6.4/CHANGELOG.md 2023-12-16 08:29:05.000000000 +0100
+++ new/glfw-2.6.5/CHANGELOG.md 2024-01-24 16:22:26.000000000 +0100
@@ -5,6 +5,9 @@
 For information on changes in GLFW itself, see the [GLFW version 
history](https://www.glfw.org/changelog.html).
 
 
+## [2.6.5] - 2024-01-24
+- Fixed Python version check
+
 ## [2.6.4] - 2023-12-16
 - Updated to GLFW 3.3.9
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glfw-2.6.4/PKG-INFO new/glfw-2.6.5/PKG-INFO
--- old/glfw-2.6.4/PKG-INFO     2023-12-16 08:29:20.837761600 +0100
+++ new/glfw-2.6.5/PKG-INFO     2024-01-24 16:22:37.584504000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: glfw
-Version: 2.6.4
+Version: 2.6.5
 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.6.4/glfw/__init__.py 
new/glfw-2.6.5/glfw/__init__.py
--- old/glfw-2.6.4/glfw/__init__.py     2023-12-16 08:29:05.000000000 +0100
+++ new/glfw-2.6.5/glfw/__init__.py     2024-01-24 16:22:26.000000000 +0100
@@ -7,9 +7,9 @@
 from __future__ import unicode_literals
 
 __author__ = 'Florian Rhiem (florian.rh...@gmail.com)'
-__copyright__ = 'Copyright (c) 2013-2023 Florian Rhiem'
+__copyright__ = 'Copyright (c) 2013-2024 Florian Rhiem'
 __license__ = 'MIT'
-__version__ = '2.6.4'
+__version__ = '2.6.5'
 
 # 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.6.4/glfw/library.py 
new/glfw-2.6.5/glfw/library.py
--- old/glfw-2.6.4/glfw/library.py      2023-12-16 08:29:05.000000000 +0100
+++ new/glfw-2.6.5/glfw/library.py      2024-01-24 16:22:26.000000000 +0100
@@ -129,9 +129,9 @@
             else:
                 return None
 
-        try:
+        if sys.version_info[0] == 2:
             input_func = raw_input
-        except NameError:
+        else:
             input_func = input
         filename = input_func().strip()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glfw-2.6.4/glfw.egg-info/PKG-INFO 
new/glfw-2.6.5/glfw.egg-info/PKG-INFO
--- old/glfw-2.6.4/glfw.egg-info/PKG-INFO       2023-12-16 08:29:20.000000000 
+0100
+++ new/glfw-2.6.5/glfw.egg-info/PKG-INFO       2024-01-24 16:22:37.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: glfw
-Version: 2.6.4
+Version: 2.6.5
 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.6.4/setup.py new/glfw-2.6.5/setup.py
--- old/glfw-2.6.4/setup.py     2023-12-16 08:29:05.000000000 +0100
+++ new/glfw-2.6.5/setup.py     2024-01-24 16:22:26.000000000 +0100
@@ -8,7 +8,7 @@
 
 setup(
     name='glfw',
-    version='2.6.4',
+    version='2.6.5',
     description='A ctypes-based wrapper for GLFW3.',
     long_description=long_description,
     url='https://github.com/FlorianRhiem/pyGLFW',

Reply via email to