Package: python-pyglfw / 2.8.0+dfsg-2

Metadata

Package Version Patches format
python-pyglfw 2.8.0+dfsg-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
supplemental architectures.patch | (download)

glfw/library.py | 8 8 + 0 - 0 !
1 file changed, 8 insertions(+)

 fix library dynamic loading for a range of architectures.
 This patch fixes the following issue when attempting to load the glfw
 Python module on an unhandled architecture:
 .
        Traceback (most recent call last):
          File "/build/reproducible-path/python-pyglfw-2.8.0+dfsg/debian/tests/example.py", line 6, in <module>
            import glfw
          File "/build/reproducible-path/python-pyglfw-2.8.0+dfsg/.pybuild/cpython3_3.13/build/glfw/__init__.py", line 43, in <module>
            raise ImportError("Failed to load GLFW3 shared library.")
        ImportError: Failed to load GLFW3 shared library.
 .
 Sure it might be cleaner to parse /etc/ld.so.conf, but it might be more
 delicate to implement as well.