[AArch64][PAC] Emit `!dbg` locations in `*_vfpthunk_` functions
In absence of `!dbg` metadata, it is possible for indirect
authenticated call to be replaced with a direct call instruction
without `!dbg` metadata. This may result in an error reported by
LLVM IR verifier ("inlinable function call in a function with
debug info must have a !dbg location") or an assertion triggered
after inlining this call ("!dbg attachment points at wrong
subprogram for function").
[mlir][tosa] Prevent creation of `tosa.concat_shape` for scalar shape values (#176120)
Updates `tosa.concat_shape` inline with the following specification
change: https://github.com/arm/tosa-specification/pull/30.
www/angie-module-jwt: update 3.4.3 => 3.4.4
No actual changes/updates to the code, but we keep the module version
up-to-date anyways.
Changes:
- Add GutHub Sponsors username to FUNDING.yml
- docs: add pre-buildt Ubuntu/Debian package installation instructions
- Update README.md
- Update nginx to 1.28.1-alpine3.23 (docker)
https://github.com/max-lt/nginx-jwt-module/compare/v3.4.3...v3.4.4
PR: 292925
[clang][analyzer] Add OpaqueSTLFunctionsModeling (#178910)
This modeling checker forces conservative evaluation for `std::sort`,
`std::stable_sort`, and `std::inplace_merge` to prevent false positives
caused by complex STL internals that cannot be adequately modeled by the
engine.
Using `evalCall` to avoid emitting false positives is more efficient than
suppressing them after analysis in `BugReporterVisitor`s.
Related to #177804
graphics/py-fotokilof: Update to 5.2.3
- Add two new run dependencies
- Fix syntax of metadata (license) in pyproject.toml that is not
compatible with the current version of setuptools
ChangeLog: https://github.com/TeaM-TL/FotoKilof/releases/tag/5.2.3
Reported by: portscout!
devel/py-pyperclipimg: Add new port
This Python module provides copy() and paste() clipboard functions
for images on Windows, macOS, Linux and FreeBSD.
https://pypi.org/project/pyperclipimg/
devel/py-darkdetect: Add new port
The main application of this Python package is to detect the Dark mode from
your GUI Python application (Tkinter/wx/pyqt/qt for python (pyside)/...) and
apply the needed adjustments to your interface. Darkdetect is particularly
useful if your GUI library does not provide a public API for this detection.
In addition, this package does not depend on other modules or packages that are
not already included in standard Python distributions.
https://pypi.org/project/darkdetect/
[SystemZ][GOFF] Implement lowerConstant (#179394)
Implement lowerConstants for SystemZ and handle special cases where
entries need to be created in the ADA for static functions or VCon for
externals.
---------
Co-authored-by: Tony Tao <tonytao at ca.ibm.com>
[clang][NFC] Use full diagnostic text in C++ DR tests (#179674)
This is the first of two patches that apply various fixes to C++ DR
tests based on new tooling I developed. This patch is almost entirely
about incomplete diagnostic text in `expected` directives, which was
intended to be complete, but I failed to notice that during reviews.
There is also a couple of fixes for `expected-note` directives that were
not correctly indented relative to the error they attach to. Then there
is couple of fixes when `expected` directives where not placed correctly
(didn't use `@-1` way).