forked from pool/python-opengl
Compare commits
5 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 059b21092f | |||
| ba76b7ba56 | |||
| ea0d537dcd | |||
| cc29f9928d | |||
| 3418cf207e |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:eef31a3888e6984fd4d8e6c9961b184c9813ca82604d37fe3da80eb000a76c86
|
|
||||||
size 1896446
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
From b49af26c615236ebc29cf125a8315091482a4a2a Mon Sep 17 00:00:00 2001
|
|
||||||
From: Scott Talbert <swt@techie.net>
|
|
||||||
Date: Tue, 18 Jul 2023 10:12:29 -0400
|
|
||||||
Subject: [PATCH] Fix ctypes FormatHandler for Python 3.12+
|
|
||||||
|
|
||||||
In Python 3.12, CArgObject moved from builtins to _ctypes it seems.
|
|
||||||
|
|
||||||
Fixes #99.
|
|
||||||
---
|
|
||||||
OpenGL/__init__.py | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/OpenGL/__init__.py b/OpenGL/__init__.py
|
|
||||||
index f9cc6bfc..77dc8c0b 100644
|
|
||||||
--- a/OpenGL/__init__.py
|
|
||||||
+++ b/OpenGL/__init__.py
|
|
||||||
@@ -308,7 +308,7 @@ def setPlatform(key):
|
|
||||||
"ctypesparameter",
|
|
||||||
"OpenGL.arrays.ctypesparameters.CtypesParameterHandler",
|
|
||||||
[
|
|
||||||
- _bi + ".CArgObject",
|
|
||||||
+ ("_ctypes" if sys.version_info[:2] >= (3,12) else _bi) + ".CArgObject",
|
|
||||||
"ctypes.c_uint",
|
|
||||||
"ctypes.c_int",
|
|
||||||
"ctypes.c_float",
|
|
||||||
3
pyopengl-3.1.9.tar.gz
Normal file
3
pyopengl-3.1.9.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:28ebd82c5f4491a418aeca9672dffb3adbe7d33b39eada4548a5b4e8c03f60c8
|
||||||
|
size 1913642
|
||||||
@@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 16 11:42:21 UTC 2025 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Drop pkgconfig(osmesa) BuildRequires: OSMesa was dropped with
|
||||||
|
Mesa 25.1.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 28 15:25:23 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- update to 3.1.9
|
||||||
|
* Reduce the number of iterations in memory leak test to avoid JIT
|
||||||
|
triggering
|
||||||
|
* Cleanup formatting in a few modules
|
||||||
|
* Don't bomb out during egl test when there's no egl devices
|
||||||
|
* Regenerated C wrappers with latest Cython
|
||||||
|
* Numpy intp type for latest numpy
|
||||||
|
* Fix ctypes FormatHandler for Python 3.12+
|
||||||
|
* More changes, see upstream commits
|
||||||
|
- Drop merged PyOpenGL-pr100-py312.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 19 08:55:23 UTC 2024 - Ben Greiner <code@bnavigator.de>
|
Tue Mar 19 08:55:23 UTC 2024 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-opengl
|
# spec file for package python-opengl
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -25,18 +25,16 @@
|
|||||||
%bcond_with test
|
%bcond_with test
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%define tarname PyOpenGL
|
%define tarname pyopengl
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-opengl%{psuffix}
|
Name: python-opengl%{psuffix}
|
||||||
Version: 3.1.7
|
Version: 3.1.9
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: OpenGL bindings for Python
|
Summary: OpenGL bindings for Python
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
URL: https://github.com/mcfletch/pyopengl
|
URL: https://github.com/mcfletch/pyopengl
|
||||||
Source0: https://files.pythonhosted.org/packages/source/P/%{tarname}/%{tarname}-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/source/p/%{tarname}/%{tarname}-%{version}.tar.gz
|
||||||
# PATCH-FIX-UPSTREAM PyOpenGL-pr100-py312.patch gh#mcfletch/pyopengl#100
|
|
||||||
Patch0: PyOpenGL-pr100-py312.patch
|
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
@@ -58,6 +56,7 @@ BuildRequires: %{python_module psutil}
|
|||||||
BuildRequires: %{python_module pygame}
|
BuildRequires: %{python_module pygame}
|
||||||
BuildRequires: %{python_module pytest-xvfb}
|
BuildRequires: %{python_module pytest-xvfb}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
|
BuildRequires: %{python_module python-xlib}
|
||||||
BuildRequires: Mesa-dri
|
BuildRequires: Mesa-dri
|
||||||
BuildRequires: freeglut-devel
|
BuildRequires: freeglut-devel
|
||||||
BuildRequires: libdrm-devel
|
BuildRequires: libdrm-devel
|
||||||
@@ -93,14 +92,15 @@ sed -e '1{/^#/d}' -i OpenGL/arrays/_buffers.py OpenGL/arrays/buffers.py
|
|||||||
|
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
%check
|
%check
|
||||||
%pytest tests
|
# some tests reported in https://github.com/mcfletch/pyopengl/issues/141 fail in our environment too
|
||||||
|
%pytest tests -k "not (test_glCallLists_twice2 or test_check_egl_es2 or test_egl_ext_enumerate)"
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if !%{with test}
|
%if !%{with test}
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license license.txt
|
%license license.txt
|
||||||
%{python_sitelib}/OpenGL/
|
%{python_sitelib}/OpenGL/
|
||||||
%{python_sitelib}/PyOpenGL-%{version}.dist-info
|
%{python_sitelib}/[Pp]y[Oo]pen[Gg][Ll]-%{version}.dist-info
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user