[libc] Address sincosf size bloat (#179004)
The recent refactoring in #177523 marked some functions as static which
increased the size of sinf/cosf functions. Removing the static storage
for these functions to remove the bloat which is especially problematic
in size constrained baremetal target builds.
[ELF,test] Improve error message checks with proper format
Update tests to use the canonical error message format with `error:`
prefix and file:section information. Add `--implicit-check-not=error:`
to ensure no unexpected errors are produced.
This commit focuses on "out of range" and "not aligned" errors.
py-wcwidth: update to 0.5.3.
0.5.3
Add Virama conjunct for the Brahmic scripts by @jquast in #204
0.5.2
Do not distribute any data files by @jquast in #199
Update specs and zero-width tables regarding Mc by @jquast in #200
Standalone emoji support by @jquast in #202
0.5.1
Updated generated zero and wide code tables to length of 1 to complete the previously announced removal of historical wide and zero tables. #196
0.5.0
Drop Support of many historical versions of wide and zero unicode tables. Only the latest Unicode version (17.0.0) is now shipped. The related unicode_version='auto' keyword of the wcwidth()-family of functions are ignored. list_versions() always returns a tuple of only a single element of the only unicode version supported. #195
[10 lines not shown]
py-pygls: update to 2.0.1.
What's Changed
docs: drop pre-release banner by @alcarney in #580
docs: use correct lsprotocol version by @alcarney in #581
docs: fix broken link for pygls playground by @perrinjerome in #582
docs: describe arguments unpacking for server commands in v2 by @perrinjerome in #583
Add Aeon Programming Language to implementations list by @alcides in #584
Fix spelling mistakes in v2 migration documentation by @maxchaston in #585
fix: prevent exception handling for cancelled futures in JsonRPCProtocol by @austin3dickey in #588
build: v2.0.1 by @tombh in #589
py-pdm_backend: update to 2.4.7.
🚀 Features
Allow user to override wheel with multiple plat tags - by @trim21 in #298 (263a5)
💻 Chores
Switch dev-dependencies to dependency-groups - by @frostming (9572d)
py-confuse: update to 2.2.0.
What's Changed
Drop support for Python 3.9.
Ship inline type information via a py.typed marker for type checkers.
Tighten and extend type hints across the public API, templates, and sources.
Add strict mypy configuration and align tests/examples with the new typing.
Include docs and tests directory in source distributions.
sysutils/bareos24-server: Revert "Replace BROKEN to IGNORE_i386"
This reverts commit 6b84ea6ad1955a2bc13f17ddd3e0da66161f6506.
On platforms where ssize_t is 32 bits wide, the comparison will be made
unsigned (ssize_t converted to an unsigned value);
on platforms where ssize_t is wider than uint32_t, the comparison will
be made signed (uint32_t converted to the wider signed ssize_t).
That also has repercussions in that bytes_left a few lines down
will be negative if and only if the passed in size_t count argument is
greater than INT**_MAX, with ** being whatever size the "size_t count"
is.
If you don't see a compiler error on that line, that does not imply the
code is right or the bug is away, but that the compiler warning did not
trigger in that situation due to a warning bug. The upstream maintainer
did want the code break compile in that case.
[3 lines not shown]
ice(4): Handle allmulti flag in ice_if_promisc_set function
In the ice_if_promisc_set function, the driver currently disables the
IFF_ALLMULTI flag, thereby preventing the activation of multicast mode.
To address this issue, implement appropriate handling to ensure the
flag is managed correctly.
Signed-off-by: Yogesh Bhosale <yogesh.bhosale at intel.com>
Tested by: Gowthamkumar K S <gowtham.kumar.ks at intel.com>
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D54186
smartpqi: Avoid declaring extern inline functions
Each C file is compiled separately so these functions can't be inlined
except in the file where they are defined. Since these functions aren't
used outside smartpqi_request.c, just do the simple thing and make them
private to that file.
Reported by: gcc
Reviewed by: jrhall
Fixes: c558eca47970 ("smartpqi: update to version 4660.0.2002")
Differential Revision: https://reviews.freebsd.org/D54732
(cherry picked from commit 75c591b26723711d7a38f2a5df7aecc28198cd83)
Remove example tests when MK_EXAMPLES=no
This change cleans up example tests for atf, googletest, plain, and TAP
when MK_EXAMPLES=no. Not having this in results
`kyua test -k /usr/tests/share/examples/Kyuafile` being broken on a host
where the content in that directory tree is stale. I ran into that case
because at some point in time in the past I had specified
`MK_GOOGLETEST=no` one of my dev instances.
MFC after: 1 week