python-pyglfw 2.6.5+dfsg-1 source package in Ubuntu

Changelog

python-pyglfw (2.6.5+dfsg-1) unstable; urgency=medium

  * New upstream version
  * d/copyright: bump copyright years.

 -- Étienne Mollier <email address hidden>  Tue, 30 Jan 2024 21:06:41 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pyglfw_2.6.5+dfsg-1.dsc 2.3 KiB 6ccf27cb6df78f04cfeda2010cda5da7603f2e95f719da695a657eead48b9a8f
python-pyglfw_2.6.5+dfsg.orig.tar.xz 24.0 KiB 9f11d40b09a3986bdc47a3cf1311cf2e7e9d56b7ee2f0d05faf80933c27356a9
python-pyglfw_2.6.5+dfsg-1.debian.tar.xz 3.6 KiB 07829f3d0a51dedd3c76ec1adf649ac04a8e8b78f7f15b3bab157461552d0ff9

Available diffs

No changes file available.

Binary packages built by this source

python3-pyglfw: Python bindings for GLFW

 This module provides Python bindings for GLFW. It is a ctypes
 wrapper which keeps very close to the original GLFW API, except
 for:
 .
  * function names use the pythonic words_with_underscores
    notation instead of camelCase
  * GLFW_ and glfw prefixes have been removed, as their function
    is replaced by the module namespace
  * structs have been replaced with Python sequences and
    namedtuples
  * functions like glfwGetMonitors return a list instead of a
    pointer and an object count
  * Gamma ramps use floats between 0.0 and 1.0 instead of
    unsigned shorts
  * GLFW errors are reported as glfw.GLFWError warnings if no
    error callback is set
  * instead of a sequence for GLFWimage structs, PIL/pillow
    Image objects can be used