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
Found this issue while taking care of PR271937 and didn't found MOVED
entry about rename.
PR: 271937
Approved by: portmgr (blanket)
Fixes: 74535ecc1: "devel/{kiwix-lib,libkiwix}: Update version ..."
Zelta is a suite of tools offering a streamlined approach to managing
ZFS snapshot replication across systems. It's built with the intention
of simplifying complex ZFS functions into safe and user-friendly
commands while also being the foundation for large-scale backup and
failover environments. It's easy and accessible while working with most
UNIX and UNIX-like base systems without additional packages. It's
optimized for environments with strict permission separation, and
integrates well into many types of existing ZFS workflows.
PR: 278582
Sponsored by: Bell Tower Integration
Sponsored by: Klara, Inc.
Co-authored-by: JT Pennington <jt.pennington@klarasystems.com>
- Update upstream web site
commit 54118dd983c714c442ae39867a34975417cddac0
Author: Eric Wheeler <xnec2c-git@z.ewheeler.org>
Date: Wed Apr 24 22:32:30 2024 -0700
Release v4.4.16
The primary purpose of this release is to fix building on sparc64.
Additionally, there have been several code cleanups. I would like the thank
Diane Bruce for inspiring the code cleanup and helping with pull requests;
also, a big thank-you to the Debian maintainer, Dave Hibberd (@Hibby), who
helped troubleshoot and provide guidance in solving the sparc64 build issue.
fix set but not used warnings
bugfix: only calculate the first frequency once
When rc_config.main_loop_start==true, the first frequency is calculated
twice:
Once when the program loads, and once when the loop starts.
This commit fixes that behavior.
clang: fix vectorization warning:
Update protoypes for functions with (void) that replaced ()
Release v4.4.15
commit 1ca3b61fcc81c72a1e3c15d51ddf952015300ce5
Author: Eric Wheeler <xnec2c-git@z.ewheeler.org>
Date: Tue Apr 16 16:36:46 2024 -0700
glade: fix GTK crash related to menuitem icon
Release v4.4.14
This release fixes a hang when the frequency plots window is too small
for the number of plots being rendered. Thanks to Tom DL1JBE who
reported the issue.
prevent hang when freq plot window is too small
show min/max values, now they do.
Release v4.4.13
This is a large bug-fix release and includes a few minor features and
documentation updates. Thank you to the many contributors who helped
with new features and bug fixes!
- Add a pre-test stage that adds a [tool.setuptools_scm] section to
project.toml, so that tests can detect the version.
Otherwise 5 tests fail with an error similar to
________________________________________________________________________________________________________________________ test_fail_no_traceback ________________________________________________________________________________________________________________________
raise_on_session_done = <function raise_on_session_done.<locals>._func at 0x3f63e7392c10>, tmp_path = PosixPath(/tmp/pytest-of-root/pytest-5/test_fail_no_traceback0), capsys = <_pytest.capture.CaptureFixture object at 0x3f63e5c0aca0>
def test_fail_no_traceback(raise_on_session_done, tmp_path, capsys):
raise_on_session_done(ProcessCallFailedError(code=2, out="out\n", err="err\n", cmd=["something"]))
with pytest.raises(SystemExit) as context:
run_with_catch([str(tmp_path)])
assert context.value.code == 2
out, err = capsys.readouterr()
assert out == f"subprocess call failed for [{something!r}] with code 2\nout\nSystemExit: 2\n"
> assert err == "err\n"
E AssertionError: assert ... nerrn == errn
E + WARNING pyproject.toml does not contain a setuptools.py:119
E + tool.setuptools_scm section
E err
tests/unit/config/test___main__.py:52: AssertionError
See also https://github.com/pypa/setuptools_scm/issues/1011
Release changes: https://github.com/pypa/virtualenv/releases/tag/20.26.0
Reported by: Bernát Gábor <notifications@github.com>