Start wiring up MPC5200B support into ofppc port.
Interrupt controller peculiarities, properly gating legacy code under kernel
appropriate options, PSC console support (kludge).
bhyve: Add CPU pinning diagnostic message
When pinning a vcpu to a hostcpu fails, print out a diagnostic message
to stderr indicating the failing CPU pair.
MFC after: 1 month
Reviewed by: bnovkov
Differential Revision: https://reviews.freebsd.org/D57619
security/wolfssl: Bump PORTREVISION of dependent ports for shlib change (followup of ebd1ab3805d31a82613a1db818e6dc2bf5cdf75d)
wolfssl was updated to 5.9.2 in ebd1ab3805d31a82613a1db818e6dc2bf5cdf75d which
updates from libwolfssl.so.44 to libwolfssl.so.45. Therefore, PORTREVISION bump
is required. ftp/curl and net/libngtcp2-wolfssl are skipped because both ports
have version updates after ebd1ab3805d31a82613a1db818e6dc2bf5cdf75d.
% readelf -d /usr/local/lib/libwolfssl.so | grep SONAME
0x000000000000000e (SONAME) Library soname: [libwolfssl.so.45]
lang/python-tools: Fix build with Python 3.12+
- While I'm here:
- Reorder knobs
- Sort USE_PYTHON
- Remove WRKSRC_SUBDIR
- Cosmetic change
These scripts have been removed from python 3.12+ repository [1][2][3].
===> Patching for py312-python-tools-3.12.13_1
find: byteyears.py: No such file or directory
find: copytime.py: No such file or directory
find: crlf.py: No such file or directory
find: dutree.py: No such file or directory
find: lfcr.py: No such file or directory
find: ptags.py: No such file or directory
find: untabify.py: No such file or directory
*** Error code 1
[5 lines not shown]
devel/py-freebsd: Fix build with Python 3.12+
cc -fno-strict-overflow -Wsign-compare -Wunreachable-code -DNDEBUG -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -fPIC -I/usr/local/include/python3.12 -c src/freebsdmodule.c -o build/temp.freebsd-15.0-RELEASE-p10-amd64-cpython-312/src/freebsdmodule.o
In file included from src/freebsdmodule.c:172:
In file included from src/.sources.def:7:
src/kqueue.c:248:2: error: incompatible pointer to integer conversion initializing 'Py_ssize_t' (aka 'long') with an expression of type 'void *' [-Wint-conversion]
248 | PyObject_HEAD_INIT(NULL)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/python3.12/object.h:142:9: note: expanded from macro 'PyObject_HEAD_INIT'
142 | (type) \
| ^~~~~~
In file included from src/freebsdmodule.c:172:
In file included from src/.sources.def:7:
src/kqueue.c:556:2: error: incompatible pointer to integer conversion initializing 'Py_ssize_t' (aka 'long') with an expression of type 'void *' [-Wint-conversion]
556 | PyObject_HEAD_INIT(NULL)
| ^~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/include/python3.12/object.h:142:9: note: expanded from macro 'PyObject_HEAD_INIT'
142 | (type) \
| ^~~~~~
[7 lines not shown]
textproc/py-mistune0: Fix build with Python 3.12+
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/usr/local/lib/python3.12/site-packages/installer/__main__.py", line 115, in <module>
_main(sys.argv[1:], "python -m installer")
File "/usr/local/lib/python3.12/site-packages/installer/__main__.py", line 100, in _main
with WheelFile.open(wheel) as source:
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/contextlib.py", line 137, in __enter__
return next(self.gen)
^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/installer/sources.py", line 179, in open
with zipfile.ZipFile(path) as f:
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/zipfile/__init__.py", line 1352, in __init__
self.fp = io.open(file, filemode)
^^^^^^^^^^^^^^^^^^^^^^^
[4 lines not shown]