[AArch64] recognise zip1/zip2 with flipped operands (#167235)
Currently, the following two snippets get treated very differently from
each other (https://godbolt.org/z/rYGj9TGz6):
```LLVM
define <8 x i8> @foo(<8 x i8> %x, <8 x i8> %y) local_unnamed_addr #0 {
entry:
%0 = shufflevector <8 x i8> %x, <8 x i8> %y, <8 x i32>
<i32 0, i32 8, i32 1, i32 9, i32 2, i32 10, i32 3, i32 11>
ret <8 x i8> %0
}
define <8 x i8> @bar(<8 x i8> %x, <8 x i8> %y) local_unnamed_addr #0 {
entry:
%0 = shufflevector <8 x i8> %x, <8 x i8> %y, <8 x i32>
<i32 8, i32 0, i32 9, i32 1, i32 10, i32 2, i32 11, i32 3>
ret <8 x i8> %0
}
```
[39 lines not shown]
py-dotenv: updated to 1.2.1
1.2.1
- Move more config to `pyproject.toml`, removed `setup.cfg`
- Add support for reading `.env` from FIFOs (Unix)
1.2.0
- Upgrade build system to use PEP 517 & PEP 518 to use `build` and `pyproject.toml`
- Add support for Python 3.14
- Add support for disabling of `load_dotenv()` using `PYTHON_DOTENV_DISABLED` env var.
libnice: updated to 0.1.23
libnice 0.1.23 (2025-11-26)
===========================
API: Added option NICE_AGENT_OPTION_CLOSE_FORCED to not wait for TURN when
closing asynchronous
Reject invalid remote candidates with priority=0
Add missing mutex in tcp-bsd socket
Add buffer list support to nicesrc
Avoid dropping packing in nicesink, retry instead
Only create a new NiceCandidate if a socket can be opened, as it is
a somewhat costly operation.
Many new tests
Fix leaks
Fix various test flakiness
[libc][darwin] add syscall numbers from macos sdk (#166354)
This PR adds support to include syscall.h from MacOS sdk by explicitly including the path to the sdk via `xcrun`.
net-mgmt/wifimgr: Update 1.25 => 1.26
Changelog:
- Updated man page to note that wifimgr is not part of FreeBSD but
that it appeared at the time of FreeBSD-8.0.
- Added Ukrainian translation, thanks to Dmitry Luhtionov
<dmitryluhtionov at gmail.com>.
https://opal.com/src/wifimgr/
Remove unused dependencies, fix warning from portclippy.
PR: 291215 287173