FreeBSD/ports fdf19a0ports-mgmt/pkg distinfo Makefile

ports-mgmt/pkg: update to 2.7.2

Changes:
- multiple fixes on per package triggers
- fetch now normalize the URLs
- ease porting to downstream OS
DeltaFile
+3-3ports-mgmt/pkg/distinfo
+1-1ports-mgmt/pkg/Makefile
+4-42 files

pkgng/pkgng 60ef37c. NEWS auto.def

Release 2.7.2
DeltaFile
+5-0NEWS
+1-1auto.def
+6-12 files

pkgng/pkgng 5c33913external/libfetch fetch.c

fetch: respect RFC 3986
DeltaFile
+77-0external/libfetch/fetch.c
+77-01 files

pkgng/pkgng a5c9490libpkg pkg_abi.c

pkg_abi.c: mostly centralize OS bits

Convert os_string_table into an OS table with things previously handled
by functions with case statements.  This should be must more downstream
friendly.
DeltaFile
+18-55libpkg/pkg_abi.c
+18-551 files

pkgng/pkgng 5bad72dlibpkg pkg_abi.c

pkg_abi.c: simplify os_string_table

Make it an array with pkg_os indexes eliminating the need to search for
the pkg_os and returning the index when searching by string.
DeltaFile
+12-17libpkg/pkg_abi.c
+12-171 files

pkgng/pkgng 8b33e13libpkg pkg_abi.c

pkg_abi.c: simplify arch_string_table

Make it an array with pkg_arch indexes eliminating the need to search
for the pkg_arch and returning the index when searching by string.
DeltaFile
+17-23libpkg/pkg_abi.c
+17-231 files

pkgng/pkgng a06a68elibpkg pkg_abi.c

pkg_abi.c: simplify architecture translation

Use the array size instead of a NULL sentinal to terminate iteration.
Remove the named type since we're only using the array twice in a single
loop.
DeltaFile
+9-11libpkg/pkg_abi.c
+9-111 files

pkgng/pkgng e84383elibpkg pkg_abi.c

pkg_abi.c: tidy arch_trans definition

One per line with blank lines between groups.  Remove trite comments.
DeltaFile
+29-15libpkg/pkg_abi.c
+29-151 files

pkgng/pkgng 4baaaeelibpkg pkg_delete.c pkg_add.c, libpkg/private pkg.h

triggers: fix execution of per packages triggers on pkg add/register
DeltaFile
+4-6libpkg/pkg_delete.c
+2-4libpkg/pkg_add.c
+6-0libpkg/pkg_ports.c
+1-4libpkg/triggers.c
+1-1libpkg/private/pkg.h
+14-155 files

pkgng/pkgng 4dacc9clibpkg triggers.c, tests/frontend triggers.sh

triggers: make the perpackage trigger per file instead of per directory
DeltaFile
+53-1tests/frontend/triggers.sh
+8-7libpkg/triggers.c
+61-82 files

LLVM/project 2acf879llvm/lib/DebugInfo/DWARF DWARFContext.cpp

[llvm][DebugInfo] formatv in DWARFContext (#191983)

This relates to #35980.

Co-authored-by: Sergei Barannikov <barannikov88 at gmail.com>
DeltaFile
+11-9llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
+11-91 files

pkgng/pkgng 692d9fbexternal/fetch fetch.c

fetch: respect RFC 3986
DeltaFile
+77-0external/fetch/fetch.c
+77-01 files

LLVM/project 63febe0llvm/lib/CodeGen/GlobalISel CallLowering.cpp

[GISel][CallLowering] Improve arg flags setting compile-time (#191761)

addFlagsUsingAttrFn is hot and showing up in compile-time profiles via
llvm::CallLowering::lowerCall. The culprit is std::function callback.
Switching to set flags based on AttributeSet directly is a -0.25%
compile-time improvement on CTMark AArch64 O0.

https://llvm-compile-time-tracker.com/compare.php?from=d35cd21a3757ab6028024f0b47bc9d802d06eae6&to=e717c7017faf2cb386f0d02715fb55d252b3ae42&stat=instructions%3Au
DeltaFile
+26-26llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
+26-261 files

NetBSD/pkgsrc yhcaGlTwww/py-uvicorn distinfo Makefile

   py-uvicorn: updated to 0.44.0

   0.44.0

   Implement websocket keepalive pings for websockets-sansio
VersionDeltaFile
1.52+4-4www/py-uvicorn/distinfo
1.60+2-2www/py-uvicorn/Makefile
+6-62 files

NetBSD/pkgsrc QrigIaHdevel/cargo-outdated distinfo cargo-depends.mk

   cargo-outdated: updated to 0.19.0

   0.19.0 (2026-04-14)

   Changes

   * MSRV is now 1.88.0

   Maintenance

   * Publish ARM & x64 binaries on all platforms
   * chore(deps): bump rand from 0.9.0 to 0.9.4
   * chore(deps): bump bytes from 1.9.0 to 1.11.1
   * chore(deps): bump tar from 0.4.43 to 0.4.45
   * fix(registry): handle Poll::Pending from sparse registry source queries
   * bump to cargo 0.91, MSRV 1.88, edition 2024
VersionDeltaFile
1.8+976-859devel/cargo-outdated/distinfo
1.8+324-285devel/cargo-outdated/cargo-depends.mk
1.13+6-6devel/cargo-outdated/Makefile
+1,306-1,1503 files

FreeBSD/ports 3bba4c2devel/php-composer distinfo Makefile

devel/php-composer: Update to 2.9.7

PR:             294528
Approved by:    Naram Qashat <cyberbotx at cyberbotx.com> (maintainer)
MFH:            2026Q2
Security:       7a7a17b2-381c-11f1-a663-10ffe07f9334

(cherry picked from commit 27f8a9c06133623bed65499cd673a95bfc7e8671)
DeltaFile
+3-3devel/php-composer/distinfo
+1-1devel/php-composer/Makefile
+4-42 files

LLVM/project 4720d95clang-tools-extra/clang-tidy/bugprone UncheckedOptionalAccessCheck.cpp, clang-tools-extra/test/clang-tidy/checkers/bugprone unchecked-optional-access.cpp

Fix registered matcher for bugprone-unchecked-optional-access (recent changes to libcxx) (#191681)

Further fix for #187788. Previous attempt in PR #188044 only updated the
model and model tests, but forgot to update the registered matcher.
DeltaFile
+28-11clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/unchecked-optional-access/std/types/optional.h
+28-6clang-tools-extra/test/clang-tidy/checkers/bugprone/unchecked-optional-access.cpp
+8-3clang/lib/Analysis/FlowSensitive/Models/UncheckedOptionalAccessModel.cpp
+3-2clang/include/clang/Analysis/FlowSensitive/Models/UncheckedOptionalAccessModel.h
+3-2clang-tools-extra/clang-tidy/bugprone/UncheckedOptionalAccessCheck.cpp
+70-245 files

FreeBSD/ports 26ed33bsysutils/fluent-bit distinfo Makefile

sysutils/fluent-bit: Update to 5.0.3

Release notes:  https://github.com/fluent/fluent-bit/releases/tag/v5.0.3
DeltaFile
+3-3sysutils/fluent-bit/distinfo
+1-1sysutils/fluent-bit/Makefile
+4-42 files

NetBSD/pkgsrc nW42V1ydoc CHANGES-2026

   Updated devel/buf, devel/py-test-mypy-plugins
VersionDeltaFile
1.2324+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc TpWYyMudevel/py-test-mypy-plugins distinfo Makefile

   py-test-mypy-plugins: updated to 4.0.1

   4.0.1
   Fixed sqlite3 mypy's cache contamination
VersionDeltaFile
1.8+4-4devel/py-test-mypy-plugins/distinfo
1.13+2-2devel/py-test-mypy-plugins/Makefile
+6-62 files

FreeBSD/ports 27f8a9cdevel/php-composer distinfo Makefile

devel/php-composer: Update to 2.9.7

PR:             294528
Approved by:    Naram Qashat <cyberbotx at cyberbotx.com> (maintainer)
MFH:            2026Q2
Security:       7a7a17b2-381c-11f1-a663-10ffe07f9334
DeltaFile
+3-3devel/php-composer/distinfo
+1-1devel/php-composer/Makefile
+4-42 files

NetBSD/pkgsrc L7ybQw8devel/buf distinfo go-modules.mk

   buf: updated to 1.68.1

   1.68.1 - 2026-04-14

   - Revert the use of the new compiler report format and properly ungate Editions 2024 features.
   - Fix absolute imports (leading-dot) marked unused in diagnostics.

   v1.68.0 - 2026-04-14

   - Use new compiler for build process and support Editions 2024 features.
   - Add LSP document links for `buf.yaml` deps, `buf.gen.yaml` remote plugins and input modules, `buf.policy.yaml` name and BSR plugins, and `buf.lock` dep names, making each a clickable link to its BSR page.
   - Add LSP code lenses for `buf.yaml` files to update all dependencies (`buf.dep.updateAll`) or check for available updates (`buf.dep.checkUpdates`).
   - Improve shell completions for `buf` flags with fixed value sets and file/directory arguments.
   - Add `buf curl` URL path shell completions (service and method names) via
     server reflection, `--schema`, or the local buf module.
   - Add support for Edition 2024 syntax to `buf format`.
   - Fix `buf generate --clean` deleting files from nested plugin output directories.
VersionDeltaFile
1.3+160-157devel/buf/distinfo
1.3+52-51devel/buf/go-modules.mk
1.10+2-2devel/buf/Makefile
+214-2103 files

OpenBSD/ports rPzRexfdevel/jenkins/stable distinfo Makefile

   Update jenkins to 2.541.3
VersionDeltaFile
1.68+2-2devel/jenkins/stable/distinfo
1.94+1-1devel/jenkins/stable/Makefile
+3-32 files

pkgng/pkgng f2c8cf4libpkg pkg_abi.c

pkg_abi.c: simplify os_string_table

Make it an array with pkg_os indexes eliminating the need to search for
the pkg_os and returning the index when searching by string.
DeltaFile
+12-17libpkg/pkg_abi.c
+12-171 files

pkgng/pkgng 3adfda1libpkg pkg_abi.c

pkg_abi.c: mostly centralize OS bits

Convert os_string_table into an OS table with things previously handled
by functions with case statements.  This should be must more downstream
friendly.
DeltaFile
+18-55libpkg/pkg_abi.c
+18-551 files

pkgng/pkgng d6a674flibpkg pkg_abi.c

pkg_abi.c: simplify arch_string_table

Make it an array with pkg_arch indexes eliminating the need to search
for the pkg_arch and returning the index when searching by string.
DeltaFile
+17-23libpkg/pkg_abi.c
+17-231 files

pkgng/pkgng c0d9d70libpkg pkg_abi.c

pkg_abi.c: tidy arch_trans definition

One per line with blank lines between groups.  Remove trite comments.
DeltaFile
+29-15libpkg/pkg_abi.c
+29-151 files

pkgng/pkgng 936c518libpkg pkg_abi.c

pkg_abi.c: simplify architecture translation

Use the array size instead of a NULL sentinal to terminate iteration.
Remove the named type since we're only using the array twice in a single
loop.
DeltaFile
+9-11libpkg/pkg_abi.c
+9-111 files

OpenBSD/ports CGIpZBNdevel/jenkins/devel distinfo Makefile

   Update jenkins to 2.559
VersionDeltaFile
1.193+2-2devel/jenkins/devel/distinfo
1.220+1-1devel/jenkins/devel/Makefile
+3-32 files

LLVM/project 3ecf872clang/lib/Format Format.cpp, clang/unittests/Format FormatTest.cpp

[clang-format] Detect language for file templates (#191502)

Fixes #191295.
DeltaFile
+9-1clang/lib/Format/Format.cpp
+4-0clang/unittests/Format/FormatTest.cpp
+13-12 files