Changelog: https://landley.net/toybox/news.html#08-04-2024
- New toys: dd, fold, nbd-server, su, ts, tsort, uname
- Bugfix: df now works
- passwd is temporarily removed waiting on an infrastructure rewrite
Changes to the port itself:
- I reworked the install portion to stay closer to upstream's way of
doing it. This reduces the amount of clutter in the Makefile and makes
it easier to update the port in the future.
- The port patches[1][2] have been sent upstream.
[1] Enabling shuf and uname
[2] Fixing the portability shim to use the correct parameters with
getmntinfo():
7d9ee89d3c
PR: 278481
Full changelog: https://download.samba.org/pub/rsync/NEWS#3.3.0
Major changes:
* Several bugfixes around -sparse --inplace,
buffer overflow in the checksum2,
string-comparison issue in the internal handling of --progress,
ensure local transfer marks the sender side as trusted,
changes the argv handling to work with a newer popt library,
a problem in the daemon auth for older protocols,
old stats bug that counted devices as symlinks
* Many enhancements:
rrsync with the -no-overwrite option,
manpages formating,
mapfrom & mapto perl scripts into a single python script,
mnt-excl perl script into a python script
PR: 278208
Reported by: vvd
Django 3.2 reached its End-of-Life on 1st April 2024 and Django 4.2 is
the new LTS (= Long Term Support) release which will be supported until
April 2026.
* Switch most ports that use www/py-django32 to www/py-django42.
* Ports that are not compatible with Django 3.2 have already been set
with an expiration date were not taken into account.
* Bump PORTREVISION due dependency change where necessary.
PR: 276319
Reviewed by: dvl, grembo, ultima
Approved by: bofh (implicit), dvl, grembo, Kevin Golding, sunpoet,
ultima, maintainer timeout (remaining maintainers)
Differential Revision: https://reviews.freebsd.org/D44637
src/main.cpp:218:24: error: no member named 'format' in namespace 'std'
HEADER += std::format("enum {} : uint32_t {{\n", en.name);
~~~~~^
src/main.cpp:220:28: error: no member named 'format' in namespace 'std'
HEADER += std::format(" {} = {},\n", k, v);
~~~~~^
src/main.cpp:228:24: error: no member named 'format' in namespace 'std'
HEADER += std::format("\nclass {};", IFACE_CLASS_NAME_CAMEL);
~~~~~^
src/main.cpp:237:24: error: no member named 'format' in namespace 'std'
HEADER += std::format("extern const wl_interface {};\n", IFACE_WL_NAME, IFACE_WL_NAME_CAMEL, IFACE_WL_NAME);
~~~~~^
src/main.cpp:247:24: error: no member named 'format' in namespace 'std'
HEADER += std::format(R"#(
~~~~~^
src/main.cpp:289:28: error: no member named 'format' in namespace 'std'
HEADER += std::format(" void {}(F<void({}*{})> handler);\n", camelize("set_" + rq.name), IFACE_CLASS_NAME_CAMEL, args);
~~~~~^
src/main.cpp:307:28: error: no member named 'format' in namespace 'std'
HEADER += std::format(" void {}({});\n", camelize("send_" + ev.name), args);
~~~~~^
src/main.cpp:330:28: error: no member named 'format' in namespace 'std'
HEADER += std::format(" F<void({}*{})> {};\n", IFACE_CLASS_NAME_CAMEL, args, camelize(rq.name));
~~~~~^
src/main.cpp:337:24: error: no member named 'format' in namespace 'std'
HEADER += std::format(R"#(
~~~~~^
src/main.cpp:356:20: error: no member named 'format' in namespace 'std'
SOURCE += std::format(R"#(#define private public
~~~~~^
src/main.cpp:385:24: error: no member named 'format' in namespace 'std'
SOURCE += std::format("extern const wl_interface {};\n", IFACE_WL_NAME, IFACE_WL_NAME_CAMEL, IFACE_WL_NAME);
~~~~~^
src/main.cpp:399:36: error: no member named 'format' in namespace 'std'
SOURCE += std::format("extern const wl_interface {};\n", IFACE_WL_NAME2, IFACE_WL_NAME_CAMEL2, IFACE_WL_NAME2);
~~~~~^
src/main.cpp:414:36: error: no member named 'format' in namespace 'std'
SOURCE += std::format("extern const wl_interface {};\n", IFACE_WL_NAME2, IFACE_WL_NAME_CAMEL2, IFACE_WL_NAME2);
~~~~~^
src/main.cpp:452:28: error: no member named 'format' in namespace 'std'
SOURCE += std::format(R"#(
~~~~~^
src/main.cpp:463:24: error: no member named 'format' in namespace 'std'
SOURCE += std::format(R"#(
~~~~~^
src/main.cpp:475:24: error: no member named 'format' in namespace 'std'
SOURCE += std::format(R"#(
~~~~~^
src/main.cpp:482:28: error: no member named 'format' in namespace 'std'
SOURCE += std::format(" (void*){},\n", REQUEST_NAME);
~~~~~^
src/main.cpp:514:28: error: no member named 'format' in namespace 'std'
SOURCE += std::format(R"#(
~~~~~^
src/main.cpp:532:28: error: no member named 'format' in namespace 'std'
SOURCE += std::format("static const wl_interface* {}[] = {{\n", TYPE_TABLE_NAME);
~~~~~^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
Reported by: pkg-fallout