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-05-30 14:39:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-glfw (Old)
 and      /work/SRC/openSUSE:Factory/.python-glfw.new.25440 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-glfw"

Fri May 30 14:39:27 2025 rev:16 rq:1281298 version:2.9.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-glfw/python-glfw.changes  2025-01-16 
18:35:12.924634214 +0100
+++ /work/SRC/openSUSE:Factory/.python-glfw.new.25440/python-glfw.changes       
2025-05-30 17:25:35.299911586 +0200
@@ -1,0 +2,6 @@
+Fri May 30 07:30:11 UTC 2025 - John Paul Adrian Glaubitz 
<adrian.glaub...@suse.com>
+
+- Update to 2.9.0
+  * Added library search paths for various architectures
+
+-------------------------------------------------------------------

Old:
----
  glfw-2.8.0.tar.gz

New:
----
  glfw-2.9.0.tar.gz

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

Other differences:
------------------
++++++ python-glfw.spec ++++++
--- /var/tmp/diff_new_pack.4qxBye/_old  2025-05-30 17:25:36.663967721 +0200
+++ /var/tmp/diff_new_pack.4qxBye/_new  2025-05-30 17:25:36.683968544 +0200
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-glfw
-Version:        2.8.0
+Version:        2.9.0
 Release:        0
 Summary:        A ctypes-based wrapper for GLFW3
 License:        MIT

++++++ glfw-2.8.0.tar.gz -> glfw-2.9.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glfw-2.8.0/CHANGELOG.md new/glfw-2.9.0/CHANGELOG.md
--- old/glfw-2.8.0/CHANGELOG.md 2024-11-22 16:38:09.000000000 +0100
+++ new/glfw-2.9.0/CHANGELOG.md 2025-04-15 17:35:55.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.9.0] - 2025-04-15
+- Added library search paths for various architectures
+
 ## [2.8.0] - 2024-11-22
 - Update to GLFW 3.4
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glfw-2.8.0/PKG-INFO new/glfw-2.9.0/PKG-INFO
--- old/glfw-2.8.0/PKG-INFO     2024-11-22 16:38:24.667058700 +0100
+++ new/glfw-2.9.0/PKG-INFO     2025-04-15 17:36:12.096129700 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: glfw
-Version: 2.8.0
+Version: 2.9.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.8.0/glfw/__init__.py 
new/glfw-2.9.0/glfw/__init__.py
--- old/glfw-2.8.0/glfw/__init__.py     2024-11-22 16:38:09.000000000 +0100
+++ new/glfw-2.9.0/glfw/__init__.py     2025-04-15 17:35:55.000000000 +0200
@@ -9,7 +9,7 @@
 __author__ = 'Florian Rhiem (florian.rh...@gmail.com)'
 __copyright__ = 'Copyright (c) 2013-2024 Florian Rhiem'
 __license__ = 'MIT'
-__version__ = '2.8.0'
+__version__ = '2.9.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.8.0/glfw/library.py 
new/glfw-2.9.0/glfw/library.py
--- old/glfw-2.8.0/glfw/library.py      2024-11-22 16:38:09.000000000 +0100
+++ new/glfw-2.9.0/glfw/library.py      2025-04-15 17:35:55.000000000 +0200
@@ -173,6 +173,14 @@
         '/usr/lib/x86_64-linux-gnu/',
         '/usr/lib/aarch64-linux-gnu/',
         '/usr/lib/arm-linux-gnueabihf',
+        '/usr/lib/riscv64-linux-gnu',
+        '/usr/lib/powerpc64le-linux-gnu',
+        '/usr/lib/loongarch64-linux-gnu',
+        '/usr/lib/s390x-linux-gnu',
+        '/usr/lib/i386-linux-gnu',
+        '/usr/lib/arm-linux-gnueabi',
+        '/usr/lib/sparc64-linux-gnu',
+        '/usr/lib/mips64el-linux-gnuabi64',
     ]
 
     package_path_variant = _get_package_path_variant(package_path)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glfw-2.8.0/glfw.egg-info/PKG-INFO 
new/glfw-2.9.0/glfw.egg-info/PKG-INFO
--- old/glfw-2.8.0/glfw.egg-info/PKG-INFO       2024-11-22 16:38:24.000000000 
+0100
+++ new/glfw-2.9.0/glfw.egg-info/PKG-INFO       2025-04-15 17:36:12.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: glfw
-Version: 2.8.0
+Version: 2.9.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.8.0/setup.py new/glfw-2.9.0/setup.py
--- old/glfw-2.8.0/setup.py     2024-11-22 16:38:09.000000000 +0100
+++ new/glfw-2.9.0/setup.py     2025-04-15 17:35:55.000000000 +0200
@@ -8,7 +8,7 @@
 
 setup(
     name='glfw',
-    version='2.8.0',
+    version='2.9.0',
     description='A ctypes-based wrapper for GLFW3.',
     long_description=long_description,
     url='https://github.com/FlorianRhiem/pyGLFW',

Reply via email to