+ case "${usergroup_phase}" in + local run_cmd + run_cmd=run_su + shift + run_su /usr/pkg/bin/bmake all BATCH=1 DEPENDS_TARGET=/nonexistent PYTHON_VERSION_REQD=38 WRKLOG=/tmp/bulklog/py38-OpenGL-accelerate-3.1.5nb2/work.log + su pbulk -c '"$@"' make /usr/pkg/bin/bmake all BATCH=1 DEPENDS_TARGET=/nonexistent PYTHON_VERSION_REQD=38 WRKLOG=/tmp/bulklog/py38-OpenGL-accelerate-3.1.5nb2/work.log => Bootstrap dependency digest>=20211023: found digest-20220214 ===> Building for py38-OpenGL-accelerate-3.1.5nb2 cd /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src && for i in *.pyx; do cython-3.8 $i; done /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/arraydatatype.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded Array-handling accelerator module""" import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter ^ ------------------------------------------------------------ arraydatatype.pyx:6:0: 'OpenGL_accelerate/wrapper.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded Array-handling accelerator module""" import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter ^ ------------------------------------------------------------ arraydatatype.pyx:6:0: 'OpenGL_accelerate/wrapper/cArgConverter.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded Array-handling accelerator module""" import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter ^ ------------------------------------------------------------ arraydatatype.pyx:6:0: 'OpenGL_accelerate/wrapper/pyArgConverter.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded Array-handling accelerator module""" import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter ^ ------------------------------------------------------------ arraydatatype.pyx:6:0: 'OpenGL_accelerate/wrapper/returnConverter.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ arraydatatype.pyx:7:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... import ctypes import OpenGL from OpenGL._null import NULL as _NULL from OpenGL import plugins from OpenGL_accelerate.wrapper cimport cArgConverter, pyArgConverter, returnConverter from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ arraydatatype.pyx:7:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... ) return handler.arrayByteCount( value ) # Now some array helper functions... cdef class Output(cArgConverter): ^ ------------------------------------------------------------ arraydatatype.pyx:261:18: First base of 'Output' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... if pyArgs[index] is not DO_OUTPUT[0] and pyArgs[index] is not DO_OUTPUT[1]: return self.arrayType.asArray( pyArgs[index] ) return self.arrayType.c_zeros( self.c_getSize(pyArgs), self.arrayType.typeConstant ) cdef class AsArrayOfType(pyArgConverter): ^ ------------------------------------------------------------ arraydatatype.pyx:358:25: First base of 'AsArrayOfType' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... self.typeIndex = wrapper.pyArgIndex( self.typeName ) cdef object c_call( self, object incoming, object function, tuple arguments ): """Get the arg as an array of the appropriate type""" return self.arrayType.asArray( incoming, arguments[ self.typeIndex ] ) cdef class AsArrayTyped(pyArgConverter): ^ ------------------------------------------------------------ arraydatatype.pyx:384:24: First base of 'AsArrayTyped' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... ), incoming, ) return result cdef class AsArrayTypedSize(cArgConverter): ^ ------------------------------------------------------------ arraydatatype.pyx:428:28: First base of 'AsArrayTypedSize' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... return self.handler.c_lookup( value ) def from_param( self, object value, object typeConstant=None ): """Given a value in a known data-pointer type, convert to a ctypes pointer""" handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:137:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... def from_param( self, object value, object typeConstant=None ): """Given a value in a known data-pointer type, convert to a ctypes pointer""" handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_from_param( ^ ------------------------------------------------------------ arraydatatype.pyx:138:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... return self.from_param( value ) def dataPointer( self, value ): """Given a value in a known data-pointer type, return long for pointer""" handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:150:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... def dataPointer( self, value ): """Given a value in a known data-pointer type, return long for pointer""" handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_dataPointer( ^ ------------------------------------------------------------ arraydatatype.pyx:151:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... def asArray( self, value, typeCode=None ): """Given a value, convert to preferred array representation""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:173:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """Given a value, convert to preferred array representation""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_asArray( ^ ------------------------------------------------------------ arraydatatype.pyx:174:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... def arraySize( self, value, typeCode = None ): """Given a data-value, calculate dimensions for the array (number-of-units)""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:192:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """Given a data-value, calculate dimensions for the array (number-of-units)""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_arraySize( ^ ------------------------------------------------------------ arraydatatype.pyx:193:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... Uses our local type if defined, otherwise asks the handler to guess... """ if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:207:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """ if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_unitSize( ^ ------------------------------------------------------------ arraydatatype.pyx:208:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... cdef c_zeros( self, dims, typeCode ): """C-level function to create empty array""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_get_output_handler( ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:225:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """C-level function to create empty array""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_get_output_handler( ) if isinstance( handler, FormatHandler ): return (handler).c_zeros( ^ ------------------------------------------------------------ arraydatatype.pyx:226:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... def dimensions( self, value, typeCode=None ): """Given a data-value, get the dimensions (assumes full structure info)""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:239:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """Given a data-value, get the dimensions (assumes full structure info)""" if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_dimensions( ^ ------------------------------------------------------------ arraydatatype.pyx:240:21: 'FormatHandler' is not a type identifier Error compiling Cython file: ------------------------------------------------------------ ... For most data-types this is arraySize() * atomic-unit-size """ if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): ^ ------------------------------------------------------------ arraydatatype.pyx:253:32: 'FormatHandler' is not a constant, variable or function identifier Error compiling Cython file: ------------------------------------------------------------ ... """ if typeCode is None: typeCode = self.typeConstant handler = self.handler.c_lookup( value ) if isinstance( handler, FormatHandler ): return (handler).c_arrayByteCount( ^ ------------------------------------------------------------ arraydatatype.pyx:254:21: 'FormatHandler' is not a type identifier /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/buffers_formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Cython memoryview implementation of buffer-api format handler""" from ctypes import c_void_p from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ buffers_formathandler.pyx:3:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython memoryview implementation of buffer-api format handler""" from ctypes import c_void_p from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ buffers_formathandler.pyx:3:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... object PyMemoryView_GetContiguous(object obj, int buffertype, char order) bint PyMemoryView_Check(object obj) Py_buffer *PyMemoryView_GET_BUFFER(object obj) cdef class MemoryviewHandler(FormatHandler): ^ ------------------------------------------------------------ buffers_formathandler.pyx:50:29: First base of 'MemoryviewHandler' is not an extension type /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/errorchecker.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/latebind.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/nones_formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for None-as-an-array format handler operations""" from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ nones_formathandler.pyx:2:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for None-as-an-array format handler operations""" from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ nones_formathandler.pyx:2:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for None-as-an-array format handler operations""" from OpenGL_accelerate.formathandler cimport FormatHandler cdef class NoneHandler(FormatHandler): ^ ------------------------------------------------------------ nones_formathandler.pyx:4:23: First base of 'NoneHandler' is not an extension type /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/numpy_formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for numpy format handler operations""" from ctypes import c_void_p import numpy as np cimport numpy as np from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ numpy_formathandler.pyx:5:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Accelerator for numpy format handler operations""" from ctypes import c_void_p import numpy as np cimport numpy as np from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ numpy_formathandler.pyx:5:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Wrap PyArray_DESCR and incref to deal with the "borrowed" reference""" cdef np.dtype desc = PyArray_DESCR( array ) Py_INCREF( desc) return desc cdef class NumpyHandler(FormatHandler): ^ ------------------------------------------------------------ numpy_formathandler.pyx:39:24: First base of 'NumpyHandler' is not an extension type /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/vbo.pyx tree = Parsing.p_module(s, pxd, full_module_name) Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded VBO implementation""" import ctypes, weakref from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ vbo.pyx:3:0: 'OpenGL_accelerate/formathandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... """Cython-coded VBO implementation""" import ctypes, weakref from OpenGL_accelerate.formathandler cimport FormatHandler ^ ------------------------------------------------------------ vbo.pyx:3:0: 'OpenGL_accelerate/formathandler/FormatHandler.pxd' not found Error compiling Cython file: ------------------------------------------------------------ ... if self.vbo is not None: return self.vbo.check_live() else: raise RuntimeError( """Attempting to use offset into deleted VBO""" ) cdef class VBOHandler(FormatHandler): ^ ------------------------------------------------------------ vbo.pyx:290:22: First base of 'VBOHandler' is not an extension type Error compiling Cython file: ------------------------------------------------------------ ... cdef c_dimensions( self, object instance ): """Retrieve full set of dimensions for the array as tuple""" (instance).check_live() return self.arrayType.dimensions( (instance).data ) cdef class VBOOffsetHandler(FormatHandler): ^ ------------------------------------------------------------ vbo.pyx:332:28: First base of 'VBOOffsetHandler' is not an extension type /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/wrapper.pyx tree = Parsing.p_module(s, pxd, full_module_name) (cd /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/ && /bin/env USETOOLS=no PTHREAD_CFLAGS=\ -pthread\ PTHREAD_LDFLAGS=\ -pthread PTHREAD_LIBS=-lpthread\ -lrt PTHREADBASE=/usr DL_CFLAGS= DL_LDFLAGS= DL_LIBS= NPY_BLAS_LIBS=-lblas NPY_LAPACK_LIBS=-llapack\ -lblas NPY_CBLAS_LIBS=-lcblas\ -lblas PYTHON=/usr/pkg/bin/python3.8 CC=cc CFLAGS=-pipe\ -O2\ -pipe\ -O2\ -D_FORTIFY_SOURCE=2\ -I/usr/include\ -I/usr/pkg/include/python3.8\ -I/usr/pkg/include CPPFLAGS=-I/usr/pkg/include/netlib\ -I/usr/include\ -I/usr/pkg/include/python3.8\ -I/usr/pkg/include CXX=c++ CXXFLAGS=-pipe\ -O2\ -pipe\ -O2\ -D_FORTIFY_SOURCE=2\ -I/usr/include\ -I/usr/pkg/include/python3.8\ -I/usr/pkg/include COMPILER_RPATH_FLAG=-Wl,-R F77=f77 FC=f77 FFLAGS=-O LANG=C LC_ALL=C LC_COLLATE=C LC_CTYPE=C LC_MESSAGES=C LC_MONETARY=C LC_NUMERIC=C LC_TIME=C LDFLAGS=-Wl,-zrelro\ -L/usr/lib64\ -Wl,-R/usr/lib64\ -L/usr/pkg/lib\ -Wl,-R/usr/pkg/lib LINKER_RPATH_FLAG=-R PATH=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.cwrapper/bin:/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.buildlink/bin:/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.gcc/bin:/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.tools/bin:/usr/pkg/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/pkg/bin:/usr/pkg/bin PREFIX=/usr/pkg MAKELEVEL=0 CONFIG_SITE= PKG_SYSCONFDIR=/usr/pkg/etc CXXCPP=cpp HOME=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.home CWRAPPERS_CONFIG_DIR=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.cwrapper/config CPP=cpp LOCALBASE=/usr/pkg X11BASE=/usr/pkg PKGMANDIR=man PKGINFODIR=info PKGGNUDIR=gnu/ MAKECONF=/dev/null OBJECT_FMT=ELF USETOOLS=no BSD_INSTALL_PROGRAM=/bin/install\ -c\ -s\ -o\ pbulk\ -g\ pbulk\ -m\ 755 BSD_INSTALL_SCRIPT=/bin/install\ -c\ -o\ pbulk\ -g\ pbulk\ -m\ 755 BSD_INSTALL_LIB=/bin/install\ -c\ -o\ pbulk\ -g\ pbulk\ -m\ 755 BSD_INSTALL_DATA=/bin/install\ -c\ -o\ pbulk\ -g\ pbulk\ -m\ 644 BSD_INSTALL_MAN=/bin/install\ -c\ -o\ pbulk\ -g\ pbulk\ -m\ 644 BSD_INSTALL=/bin/install BSD_INSTALL_PROGRAM_DIR=/bin/install\ -d\ -o\ pbulk\ -g\ pbulk\ -m\ 755 BSD_INSTALL_SCRIPT_DIR=/bin/install\ -d\ -o\ pbulk\ -g\ pbulk\ -m\ 755 BSD_INSTALL_LIB_DIR=/bin/install\ -d\ -o\ pbulk\ -g\ pbulk\ -m\ 755 BSD_INSTALL_DATA_DIR=/bin/install\ -d\ -o\ pbulk\ -g\ pbulk\ -m\ 755 BSD_INSTALL_MAN_DIR=/bin/install\ -d\ -o\ pbulk\ -g\ pbulk\ -m\ 755 BSD_INSTALL_GAME=/bin/install\ -c\ -s\ -o\ pbulk\ -g\ pbulk\ -m\ 2555 BSD_INSTALL_GAME_DATA=/bin/install\ -c\ -o\ pbulk\ -g\ pbulk\ -m\ 664 BSD_INSTALL_GAME_DIR=/bin/install\ -d\ -o\ pbulk\ -g\ pbulk\ -m\ 775 INSTALL_INFO= MAKEINFO=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.tools/bin/makeinfo FLEX= BISON= ITSTOOL=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.tools/bin/itstool GDBUS_CODEGEN=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.tools/bin/gdbus-codegen PKG_CONFIG=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.tools/bin/pkg-config PKG_CONFIG_LIBDIR=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.buildlink/lib64/pkgconfig:/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.buildlink/lib/pkgconfig:/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.buildlink/share/pkgconfig PKG_CONFIG_LOG=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.pkg-config.log PKG_CONFIG_PATH= CWRAPPERS_CONFIG_DIR=/home/pbulk/build/graphics/py-OpenGL-accelerate/work/.cwrapper/config /usr/pkg/bin/python3.8 setup.py build -j2) running build running build_py creating build creating build/lib.linux-x86_64-cpython-38 creating build/lib.linux-x86_64-cpython-38/OpenGL_accelerate copying OpenGL_accelerate/__init__.py -> build/lib.linux-x86_64-cpython-38/OpenGL_accelerate running build_ext skipping 'src/wrapper.c' Cython extension (up-to-date) building 'OpenGL_accelerate.wrapper' extension creating build/temp.linux-x86_64-cpython-38 creating build/temp.linux-x86_64-cpython-38/src cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -fPIC -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/.. -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5 -I/usr/pkg/include/python3.8 -c src/wrapper.c -o build/temp.linux-x86_64-cpython-38/src/wrapper.o cc -shared -L. -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include build/temp.linux-x86_64-cpython-38/src/wrapper.o -L/usr/pkg/lib -o build/lib.linux-x86_64-cpython-38/OpenGL_accelerate/wrapper.so skipping 'src/formathandler.c' Cython extension (up-to-date) building 'OpenGL_accelerate.formathandler' extension cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -fPIC -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/.. -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5 -I/usr/pkg/include/python3.8 -c src/formathandler.c -o build/temp.linux-x86_64-cpython-38/src/formathandler.o cc -shared -L. -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include build/temp.linux-x86_64-cpython-38/src/formathandler.o -L/usr/pkg/lib -o build/lib.linux-x86_64-cpython-38/OpenGL_accelerate/formathandler.so cythoning src/arraydatatype.pyx to src/arraydatatype.c building 'OpenGL_accelerate.arraydatatype' extension cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -fPIC -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/.. -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5 -I/usr/pkg/include/python3.8 -c src/arraydatatype.c -o build/temp.linux-x86_64-cpython-38/src/arraydatatype.o cc -shared -L. -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include build/temp.linux-x86_64-cpython-38/src/arraydatatype.o -L/usr/pkg/lib -o build/lib.linux-x86_64-cpython-38/OpenGL_accelerate/arraydatatype.so skipping 'src/errorchecker.c' Cython extension (up-to-date) building 'OpenGL_accelerate.errorchecker' extension cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -fPIC -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/.. -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5 -I/usr/pkg/include/python3.8 -c src/errorchecker.c -o build/temp.linux-x86_64-cpython-38/src/errorchecker.o cc -shared -L. -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include build/temp.linux-x86_64-cpython-38/src/errorchecker.o -L/usr/pkg/lib -o build/lib.linux-x86_64-cpython-38/OpenGL_accelerate/errorchecker.so cythoning src/vbo.pyx to src/vbo.c building 'OpenGL_accelerate.vbo' extension cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -fPIC -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/.. -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5 -I/usr/pkg/include/python3.8 -c src/vbo.c -o build/temp.linux-x86_64-cpython-38/src/vbo.o cc -shared -L. -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include build/temp.linux-x86_64-cpython-38/src/vbo.o -L/usr/pkg/lib -o build/lib.linux-x86_64-cpython-38/OpenGL_accelerate/vbo.so cythoning src/nones_formathandler.pyx to src/nones_formathandler.c building 'OpenGL_accelerate.nones_formathandler' extension cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -fPIC -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/.. -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5 -I/usr/pkg/include/python3.8 -c src/nones_formathandler.c -o build/temp.linux-x86_64-cpython-38/src/nones_formathandler.o cc -shared -L. -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include build/temp.linux-x86_64-cpython-38/src/nones_formathandler.o -L/usr/pkg/lib -o build/lib.linux-x86_64-cpython-38/OpenGL_accelerate/nones_formathandler.so skipping 'src/latebind.c' Cython extension (up-to-date) building 'OpenGL_accelerate.latebind' extension cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -fPIC -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/.. -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5 -I/usr/pkg/include/python3.8 -c src/latebind.c -o build/temp.linux-x86_64-cpython-38/src/latebind.o cc -shared -L. -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include build/temp.linux-x86_64-cpython-38/src/latebind.o -L/usr/pkg/lib -o build/lib.linux-x86_64-cpython-38/OpenGL_accelerate/latebind.so cythoning src/buffers_formathandler.pyx to src/buffers_formathandler.c building 'OpenGL_accelerate.buffers_formathandler' extension cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include -I/usr/pkg/include/ncurses -I/usr/pkg/include/db4 -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -fPIC -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/.. -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src -I/home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5 -I/usr/pkg/include/python3.8 -c src/buffers_formathandler.c -o build/temp.linux-x86_64-cpython-38/src/buffers_formathandler.o cc -shared -L. -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -Wl,-zrelro -L/usr/lib64 -Wl,-R/usr/lib64 -L/usr/pkg/lib -Wl,-R/usr/pkg/lib -pipe -O2 -pipe -O2 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include -I/usr/pkg/include/netlib -I/usr/include -I/usr/pkg/include/python3.8 -I/usr/pkg/include build/temp.linux-x86_64-cpython-38/src/buffers_formathandler.o -L/usr/pkg/lib -o build/lib.linux-x86_64-cpython-38/OpenGL_accelerate/buffers_formathandler.so Unable to import numpy, skipping numpy extension building /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/arraydatatype.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/vbo.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/nones_formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name) /usr/pkg/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/pbulk/build/graphics/py-OpenGL-accelerate/work/PyOpenGL-accelerate-3.1.5/src/buffers_formathandler.pyx tree = Parsing.p_module(s, pxd, full_module_name)