From owner-freebsd-python@freebsd.org Sun Dec 20 23:44:07 2015 Return-Path: Delivered-To: freebsd-python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98912A4ECF3 for ; Sun, 20 Dec 2015 23:44:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 873F81FB3 for ; Sun, 20 Dec 2015 23:44:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 86850A4ECF2; Sun, 20 Dec 2015 23:44:07 +0000 (UTC) Delivered-To: python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86229A4ECF1 for ; Sun, 20 Dec 2015 23:44:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6205D1FB2 for ; Sun, 20 Dec 2015 23:44:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id tBKNi7r0022108 for ; Sun, 20 Dec 2015 23:44:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: maintainer-feedback requested: [Bug 205472] [PATCH] graphics/py-opengl: update to 3.1.0 Date: Sun, 20 Dec 2015 23:44:07 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2015 23:44:07 -0000 matthew@reztek.cz has reassigned Bugzilla Automation 's request for maintainer-feedback to FreeBSD Python : Bug 205472: [PATCH] graphics/py-opengl: update to 3.1.0 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205472 --- Description --- Created attachment 164437 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=164437&action=edit update py-opengl and py-opengl-accelerate to 3.1.0 The version of PyOpenGL currently in ports (3.0.1) seems broken, it blows up when something merely tries to import it. Traceback (most recent call last): File "/usr/local/lib/python2.7/site-packages/xpra/client/gl/gl_check.py", line 528, in sys.exit(main()) File "/usr/local/lib/python2.7/site-packages/xpra/client/gl/gl_check.py", line 509, in main props = check_support(True, verbose) File "/usr/local/lib/python2.7/site-packages/xpra/client/gl/gl_check.py", line 468, in check_support gl_props = check_GL_support(glarea, force_enable) File "/usr/local/lib/python2.7/site-packages/xpra/client/gl/gl_check.py", line 163, in check_GL_support return do_check_GL_support(force_enable) File "/usr/local/lib/python2.7/site-packages/xpra/client/gl/gl_check.py", line 185, in do_check_GL_support from OpenGL.GL import GL_VERSION, GL_EXTENSIONS File "/usr/local/lib/python2.7/site-packages/OpenGL/GL/__init__.py", line 17, in from OpenGL.GL.VERSION.GL_3_0 import * File "/usr/local/lib/python2.7/site-packages/OpenGL/GL/VERSION/GL_3_0.py", line 14, in from OpenGL.raw.GL.VERSION.GL_3_0 import * File "/usr/local/lib/python2.7/site-packages/OpenGL/raw/GL/VERSION/GL_3_0.py", line 690, in deprecated=_DEPRECATED, File "/usr/local/lib/python2.7/site-packages/OpenGL/platform/baseplatform.py", line 188, in createBaseFunction extension = extension, File "/usr/local/lib/python2.7/site-packages/OpenGL/platform/baseplatform.py", line 126, in constructFunction *argTypes File "/usr/local/lib/python2.7/ctypes/__init__.py", line 104, in CFUNCTYPE class CFunctionType(_CFuncPtr): TypeError: Error when calling the metaclass bases _restype_ must be a type, a callable, or None Updating PyOpenGL to the current version (3.1.0) resolves the problem. The attached port updated both py-opengl and py-opengl-accelerate to 3.1.0.