py-testfixtures: updated to 10.0.0
10.0.0 (29 Oct 2025)
- Fixed a bug in the warning issued when a :class:`Replacer` is deleted with replacements still
in place.
- Reworked :func:`compare` options so that typos and the like will now result
in an exception being raised. This ended up being a breaking change if you use custom comparers
that take options as this now has a :ref:`different API <custom-comparer-options>`.
- Reworked the :doc:`compare documentation <comparing>` to explain why you should be using it
as well as updating the examples and explaining more fully how to configure and customise it.
[VPlan] Support extends and truncs in getSCEVExprForVPValue. (NFCI)
Handle extends and truncates in getSCEVExprForVPValue. This enables
computing SCEVs in more cases in the VPlan-based cost-model, but should
compute the matching costs in all cases.
tools/netbsd-base-system-import.sh: Suppress unwanted expansion of $NetBSD$.
Before this change, instances of the literal string '$NetBSD$' within
this script were expanded by NetBSD's CVS if this script was imported
into NetBSD's sources and then checked out. When subsequently used,
the script would then copy the expanded string into the locations
in the files being imported where the literal string '$NetBSD$'
was desired.
Although harmless (as CVS would eventually use the correct expansion
when the imported files were checked out later), the use of the
expanded value for '$NetBSD$' caused confusing diffs prior to check-in.
With this change, the literal string '$NetBSD$' should be placed in
the desired locations as-is.
xfce4-clipman-plugin: update to 1.7.0
1.7.0 (2025-05-19)
=====
Meson has been added as a build system in this release, and the
associated archive has been generated by 'meson dist'. Although
autotools has been retained for the time being and can still be used
via 'autogen.sh', meson is now the preferred build system, and
autotools will be removed in a future release.
- Update README after switchover to meson
- build: Automate copyright year management
- build: Replace xdt-csource with glib-compile-resources
- meson-build: Use shared_module()
- Replace deprecated exo with libxfce4ui 4.21.0
- Use HTTPS for action URLs
- history: Add missing sanity checks
- history: Update size when max values change at runtime
- history: Fix truncation when max_images changes
[7 lines not shown]
[MemProf] Fix reporting with -memprof-matching-cold-threshold (#173327)
With the -memprof-matching-cold-threshold option, we hint as cold
allocations where the fraction of cold bytes is at least the given
threshold. However, we were incorrectly reporting all of the
allocation's contexts and bytes as hinted cold.
Fix this to report the non-cold contexts as ignored. To do this,
refactor out some existing reporting, and also keep track of the
original allocation type for each context in the Trie along with its
ContextTotalSize information. Most of the changes are the change to this
array's type and name.
fennel: update to 1.6.0
* Support `extra-compiler-env` in options table when compiling.
* Accept `path` in options table of `fennel.install`.
* Improve printing of large integers in Lua 5.3+.
* Allow disk reads from compiler sandbox.
* Add `--to-be-closed` option for better stack traces in `with-open`
on Lua 5.4.
* Stack traces from macro errors shouldn't contain compiler
internals.
* Look for macros in `.fnlm` files in addition to `.fnl` files.
* Support `extra-env` in compiler API when evaluating in compiler
scope.
* Allow `--compile-binary` to work on `.lua` and `.luac` files.
* Add `--lambda-as-fn` option to remove overhead from arg checking.
* Fix a bug where `,find` repl command didn't work on files with long
names.
* Some 3-decimal string escapes ignored the 3rd digit;
e.g. `\x7f` -> `\127` -> `\f7`.
[2 lines not shown]
x11/kde: reduce payload in attempt to fit release DVD
Depend on Plasma components directly rather than on x11/plasma6
meta port that pulls KF5/Qt5 packages,
do not install GTK related components and legacy Oxygen theme.
PR: 291095
py-lupa: updated to 2.6
2.6 (2025-10-24)
* The bundled LuaJIT versions were updated to the latest git branches.
* Built with Cython 3.1.6.
2.5 (2025-06-15)
* Lua uses ``dlopen()`` again, which was lost in Lupa 2.3.
Patch by Philipp Krones.
* The bundled Lua 5.4 was updated to 5.4.8.
* The bundled LuaJIT versions were updated to the latest git branches.
* Built with Cython 3.1.2.
Merge tag 'block-6.19-20251226' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux
Pull block fixes from Jens Axboe:
- Fix for a signedness issue introduced in this kernel release for rnbd
- Fix up user copy references for ublk when the server exits
* tag 'block-6.19-20251226' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux:
block: rnbd-clt: Fix signedness bug in init_dev()
ublk: clean up user copy references on ublk server exit
[lldb-dap] Migrate stackTrace request to structured types (#173226)
This patch finishes migration to structured types and removes
`LegacyRequestHandler`.