0.14 09 Jul 2023 10:19:37
    |
Po-Chuan Hsieh (sunpoet)  |
graphics/py-pygeos: Fix build with Clang 16 and remove the workaround
src/ufuncs.c:166:47: error: incompatible function pointer types initializing
'PyUFuncGenericFunction' (aka 'void (*)(char **, const long *, const long *,
void *)') with an expression of type 'void (*)(char **, npy_intp *, npy_intp *,
void *)' (aka 'void (*)(char **, long *, long *, void *)')
[-Wincompatible-function-pointer-types]
static PyUFuncGenericFunction Y_b_funcs[1] = {&Y_b_func};
^~~~~~~~~
src/ufuncs.c:198:47: error: incompatible function pointer types initializing
'PyUFuncGenericFunction' (aka 'void (*)(char **, const long *, const long *,
void *)') with an expression of type 'void (*)(char **, npy_intp *, npy_intp *,
void *)' (aka 'void (*)(char **, long *, long *, void *)')
[-Wincompatible-function-pointer-types]
static PyUFuncGenericFunction O_b_funcs[1] = {&O_b_func};
^~~~~~~~~
src/ufuncs.c:239:48: error: incompatible function pointer types initializing
'PyUFuncGenericFunction' (aka 'void (*)(char **, const long *, const long *,
void *)') with an expression of type 'void (*)(char **, npy_intp *, npy_intp *,
void *)' (aka 'void (*)(char **, long *, long *, void *)')
[-Wincompatible-function-pointer-types]
static PyUFuncGenericFunction YY_b_funcs[1] = {&YY_b_func};
^~~~~~~~~~
src/ufuncs.c:320:50: error: incompatible function pointer types initializing
'PyUFuncGenericFunction' (aka 'void (*)(char **, const long *, const long *,
void *)') with an expression of type 'void (*)(char **, npy_intp *, npy_intp *,
void *)' (aka 'void (*)(char **, long *, long *, void *)')
[-Wincompatible-function-pointer-types]
static PyUFuncGenericFunction YY_b_p_funcs[1] = {&YY_b_p_func};
^~~~~~~~~~~~
src/ufuncs.c:341:55: error: incompatible function pointer types initializing
'PyUFuncGenericFunction' (aka 'void (*)(char **, const long *, const long *,
void *)') with an expression of type 'void (*)(char **, npy_intp *, npy_intp *,
void *)' (aka 'void (*)(char **, long *, long *, void *)')
[-Wincompatible-function-pointer-types] (Only the first 15 lines of the commit message are shown above ) |
0.12.0 07 Sep 2022 21:10:59
    |
Stefan Eßer (se)  |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |