py-vcs-versioning: updated to 2.1.2
2.1.2 (2026-06-23)
Fixed
- Fix MetadataWorkdir crash when using custom `tag_regex` — stored tags are already parsed version strings and no longer re-parsed through the tag regex.
2.1.1 (2026-06-23)
Fixed
- Fix spurious ``DeprecationWarning`` for ``tag_regex`` when using default value via ``get_version()``.
loader/efi: pre-allocate memory map buffer before ExitBootServices
Move the memory map allocation before the ExitBootServices retry
loop to ensure no boot service calls occur between GetMemoryMap
and ExitBootServices. This simplifies the control flow by removing
the inner sizing loop and matches the strategy used by the Linux
EFI stub.
Identified while investigating an ExitBootServices hang on
AMD AGESA 1.3.0.0a firmware (Gigabyte B650 GAMING X AX V2).
Signed-off-by: Christos Longros <chris.longros at gmail.com>
Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D56249
graphics/p5-Chart: add patch files to remove obsolete usage.
lang/perl as of at least 5.36 objects to the usage "use Chart::Base
'2.4.10'". Make these usages modern.
PR: ports/296174
Approved by: mat@
devel/bugzilla52: bump PORTREVISION.
3 new patches have been added to files/ . Bump PORTREVISION to force
a package build to pick these up.
While here, update p5-Template-Toolkit dependency as already required
in upstream 5.2.1 (not yet released).
devel/bugzilla52: add a new patch.
Newer versions of perl (post 5.38) object to a line in Bug.pm
as being ambiguous. Change the logic to do what the line was
originally intended to do.
devel/bugzilla52: add two patches.
These two patches had been found on production over a year
ago. They were copied to development but somehow never to
the actual port itself.
[flang][OpenMP] Lower target in_reduction for host fallback
Enable host-fallback lowering for target in_reduction in Flang and MLIR OpenMP translation.
Model target in_reduction through the matching map entry, force address-preserving implicit mapping for Flang in_reduction list items, and emit the host-side task-reduction lookup with __kmpc_task_reduction_get_th_data. The runtime entry point takes and returns a generic, default-address-space pointer, so normalize a non-default-address-space captured pointer to the generic address space before the call and cast the returned private pointer back to the map block argument's address space, mirroring the in_reduction handling on omp.taskloop. Unsupported device/offload-entry and richer reduction forms remain diagnosed.
Add Flang lowering, MLIR verifier/translation, and LLVM IR tests for the supported host-fallback path, including a non-default-address-space case, and the remaining unsupported cases.
[libc][NFC] Remove a compiler warning for MPCommon (#205264)
Local build on Linux platform reports a compiler warning:
llvm-project/libc/utils/MPFRWrapper/MPCommon.cpp:546:15: warning:
implicit conversion loses integer precision: 'long' to 'int'
[-Wshorten-64-to-32]
546 | int mod = mpfr_get_si(value_ret_exact.value, MPFR_RNDN);
| ~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
Signed-off-by: jinge90 <ge.jin at intel.com>
[clang][AST] Refactor `EvaluatedStmt` accessors in `VarDecl` (#205033)
1) Return the evaluated APValue as a const pointer since it
may not be modified by callers.
2) Only return a non-nullptr from `getEvaluatedValue()` if
the APValue not absent.
Reapply [AA] Improve precision for monotonic atomic load/stor… (#195015)
Reverts https://github.com/llvm/llvm-project/pull/173135 and and add two
new IR tests to demonstrate the impact of different atomic orderings on
Dead Store Elimination(DSE).
This reverts commit c8941df6a1e4ed5e1ba3287985a60e1d7512c250.
Co-authored-by: Aiden Grossman <aidengrossman at google.com>
libadwaita: update to 1.9.1.
=============
Version 1.9.1
=============
- Use G_PARAM_STATIC_STRINGS where it wasn't used
- Fix a build error in the example
- AdwAboutDialog/AdwAboutWindow
- Speed up adding legal sections
- Speed up adding credit sections
- AdwAlertDialog
- Fix a crash when chaining up in response()
- Fix the Since annotation on get_prefer_wide_layout()
- AdwButtonRow
- Fix availability annotation
- AdwClampScrollable
- Implement GtkScrollable.get_border()
- AdwEntryRow
[187 lines not shown]
[Instrumentor] Add runtime examples: [2/N] A FP precision analysis
Second example:
Check all floating point operations and track if they could be done at
lower precision.
Partially developped by Claude (AI), tested and verified by me.
write: some small cleanup
- pledge on start, restricting to stdio later on
- annotate done as __dead and remove unreachable return in main
- use common code to remove the /dev/ prefix from a device name
- wrap the PUTC macro into do {} while (0) to avoid extra empty statement
- use strftime() instead of using an offset into the ctime() string
- pass ttyl as size_t not int in search_utmp() to match the variable
From espie@