kubectl: update to 1.36.3
Bug or Regression
* Fixes a 1.36 regression in server side apply where patching a container
type (list or map) could result in 422 required errors for apply requests
that previously succeeded. [SIG API Machinery, Architecture, Auth, CLI,
Cloud Provider, Cluster Lifecycle, Network, Node, Scheduling and Storage]
iosevka-*: update to 34.8.0
* Add diagonal-tailed variants for Lower Eszet (ß).
* Add Characters:
* LATIN CAPITAL LETTER VISIGOTHIC Z (U+A762).
* LATIN SMALL LETTER VISIGOTHIC Z (U+A763).
* Refine shape of the following characters:
* LATIN CAPITAL LETTER A WITH BREVE (U+0102).
* LATIN SMALL LETTER A WITH BREVE (U+0103).
* LATIN CAPITAL LETTER E WITH BREVE (U+0114).
* LATIN SMALL LETTER E WITH BREVE (U+0115).
* LATIN CAPITAL LETTER G WITH BREVE (U+011E).
* LATIN SMALL LETTER G WITH BREVE (U+011F).
* LATIN CAPITAL LETTER I WITH BREVE (U+012C).
* LATIN SMALL LETTER I WITH BREVE (U+021D).
* LATIN CAPITAL LETTER ENG (U+014A).
* LATIN CAPITAL LETTER O WITH BREVE (U+014E).
* LATIN SMALL LETTER O WITH BREVE (U+014F).
* LATIN CAPITAL LETTER U WITH BREVE (U+016C).
[55 lines not shown]
[ORC] Generalize rt::Proxy result mapping to Error / Expected<T> callees (#215181)
Previously a Proxy's callee return type RetT mapped to the client-facing
result (ErrorRetT) as: void -> Error, everything else -> Expected<RetT>.
That could not represent a callee whose own result is fallible: an
Error-returning callee became Expected<Error>, and an Expected<T> callee
became Expected<Expected<T>>.
Generalize the mapping to:
void -> Error
Error -> Error
T -> Expected<T>
Expected<T> -> Expected<T> (flattened, not nested)
so a dispatch failure and the callee's own error collapse into a single
Error/Expected<T>. The SPS ProxySpec dispatch handles the new cases,
forwarding an Error/Expected callee's own result and, on a dispatch
failure, discarding the (unproduced) placeholder result before reporting
the error.
[5 lines not shown]
[flang][OpenMP] Support for compare fail (#214179)
Support for fail clause in "!omp atomic compare fail".
This also Fixes
[#214176](https://github.com/llvm/llvm-project/issues/214176)
Co-authored-by: Sunil Kuravinakop
graphics/geeqie-gtk3: import geeqie-gtk3-2.9
Geeqie is a lightweight Gtk+ based image viewer for Unix like
operating systems.
Geeqie has been forked from gqview project, because it was not possible
to contact gqview author and the only maintainer. Geeqie projects goal is
to move the development forward and also integrate the existing patches.
This package contains the old GTK3-based version.
[C++20] [Modules] Don't set clang module as named module for module duplication check (#215184)
Close https://github.com/llvm/llvm-project/issues/204632
Note that the error message is already diagnosed. So we don't need to do
additional thing here.
databases/openldap27-server: fix patch target for ldap.map.in
In OpenLDAP 2.7.0, ldap.map was changed to a template (ldap.map.in)
that is processed during configure. Update the post-patch sed target
accordingly to fix build failure when DEBUG option is disabled.
Reported by: sunpoet
mvc: ArrayField support nested fields in record sets
Flatten nested container fields for export and resolve them again on import, limited to the same one-level nesting supported by ArrayField::add().
feat: add PKG_EVENT_RC_SCRIPT for rc.d script actions
Introduce a dedicated event for rc script start/stop/restart, with
display in src/event.c and pipe JSON in libpkg/pkg_event.c.
Renamed internal PKG_RC_START/STOP to PKG_RC_ATTR_START/STOP to avoid
conflict with the new public pkg_rc_action_t enum.