[mlir][vscode] Add angle bracket support to MLIR language configuration (#176602)
Add angle brackets (<>) to brackets, autoClosingPairs, and
surroundingPairs for better editing of types like tensor<3xf32>. Also
add colorizedBracketPairs for visual distinction between nested bracket
types.
[mlir][vscode] Fix PDLL grammar character class regex (#176601)
The character class [aA-zZ_0-9] incorrectly matches characters between
ASCII 90-97 (Z-a range), which includes: [ \ ] ^ _ `. This should be
[a-zA-Z_0-9] for proper identifier matching.
w3m: update to 0.5.5.
w3m 0.5.5 - 2025-08-20
* new feature
- Use gettext everywhere, allow for more localization
* bug fixes
- Prevent segfault when user aborts session store command
- Fix cookie sync logic
w3m 0.5.4 - 2025-08-03
* deprecated
- option -H Users should use -o high-intensity=true instead
- ChangeLog file, use the git log for all the details
* new features
- Add command to save the history (SAVE_HISTORY)
[49 lines not shown]
[Clang][AMDGPU] Handle `wavefrontsize32` and `wavefrontsize64` features more robustly
We should also not allow `-wavefrontsize32` and `-wavefrontsize64` to be specified at the same time.
gnumeric112: remove py-gobject3 dependency
This package is only needed when introspection actively enabled,
and this would need a gobject-introspection dependency as well.
Bump PKGREVISION.
prune previous libLLVM; OK jca deraadt
Reclaiming ~10% of that gigabyte sysupgrade now wants in /usr/ seems nice:
octeon -r--r--r-- 1 root bin 106M Apr 14 2025 /usr/lib/libLLVM.so.8.0
amd64 -r--r--r-- 1 root bin 82.6M Jun 10 2025 /usr/lib/libLLVM.so.8.0
distrib/sets/lists/base/md.* shows macppc as last arch to switch to 9.0
(even bigger) on 01.08.25, so nothing should use old libs anymore by now.
gtk3: only use gtk-doc when 'doc' option is enabled
Add libxslt and docbook-xsl dependencies, needed even when 'doc'
option is disabled.
Bump PKGREVISION.
pulseaudio: make consolekit a default-off option
Support for it was already disabled on Linux and Darwin, and
I wouldn't bet on the *BSD support in consolekit.
Bump PKGREVISION.
[WebAssembly] Mark extract.last.active as having invalid cost.
Currently the WebAssembly backend crashes when trying to lower some
extract.last.active intrinsic calls. Mark their cost as invalid
temporarily, to avoid them being introduced by the loop
vectorizer after 2abd6d6d7ac (#158088).
Check absoloute free space rather than usage percentage
10% on big (single filesystem) disks can still be plenty enough;
on the flip side, e.g. 10% of 3G /usr is often still too tight.
So instead of ">= 90% used", use "< 1G free" to bail out early.
Input OK sthen
sort.1: tweak formatting of the synopsis.
- Use an ellipsis to signal that the -k option can be repeated.
- Correct a misplaced display of [-t char].
PR standards/59647