LLVM/project d794e04clang/include/clang/Basic BuiltinsPPC.def, clang/lib/CodeGen/TargetBuiltins PPC.cpp

[Clang][PowerPC] Add DMF crypto builtins for extended mnemonics (#185961)

This commit adds new Clang builtins for the crypto extended mnemonics: 
void __builtin_dmsha256hash (__dmr1024 *, __dmr1024 *)
void __builtin_dmsha512hash (__dmr1024 *, __dmr1024 *)
void __builtin_dmsha3dw (__dmr2048 *)
void __builtin_dmcryshash (__dmr2048 *)
void __builtin_dmxxsha3512pad (__dmr1024 *, vec_t, uint1)
void __builtin_dmxxsha3384pad (__dmr1024 *, vec_t, uint1)
void __builtin_dmxxsha3256pad (__dmr1024 *, vec_t, uint1)
void __builtin_dmxxsha3224pad (__dmr1024 *, vec_t, uint1)
void __builtin_dmxxshake256pad (__dmr1024 *, vec_t, uint1)
void __builtin_dmxxshake128pad (__dmr1024 *, vec_t, uint1)
void __builtin_dmxxsha384512pad (__dmr1024 *, vec_t)
void __builtin_dmxxsha224256pad (__dmr1024 *, vec_t)
DeltaFile
+536-0llvm/test/CodeGen/PowerPC/mmaplus-crypto.ll
+336-66clang/test/CodeGen/PowerPC/builtins-ppc-dmf.c
+69-5clang/lib/CodeGen/TargetBuiltins/PPC.cpp
+30-0clang/test/Sema/builtins-ppc-crypto.c
+24-0clang/include/clang/Basic/BuiltinsPPC.def
+24-0clang/test/CodeGen/PowerPC/ppc-dmf-mma-builtin-err.c
+1,019-716 files

LLVM/project 06b85c8clang/include/clang/ScalableStaticAnalysisFramework SSAFBuiltinForceLinker.h, clang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel EntityPointerLevel.h

[SSAF][UnsafeBufferUsage] Make UnsafeBufferUsageExtractor a registered ASTConsumer (#191931)

- Removed UnsafeBufferUsageExtractor.h
- Registered UnsafeBufferUsageExtractor
- Changed unit tests to enable the extractor with
`HandleTranslationUnit`
- Fixed bugs in `UnsafeBufferUsageExtractor::HandleTranslationUnit`

---------

Co-authored-by: Balázs Benics <benicsbalazs at gmail.com>
DeltaFile
+156-132clang/unittests/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageTest.cpp
+47-45clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
+0-35clang/include/clang/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.h
+9-0clang/include/clang/ScalableStaticAnalysisFramework/SSAFBuiltinForceLinker.h
+3-3clang/include/clang/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel/EntityPointerLevel.h
+1-1clang/lib/ScalableStaticAnalysisFramework/Analyses/EntityPointerLevel/EntityPointerLevel.cpp
+216-2166 files

LLVM/project 849de61clang/docs ReleaseNotes.rst, clang/include/clang/APINotes Types.h

[APINotes][unsafe-buffer-usage] Add [[clang::unsafe_buffer_usage]] support in APINotes (#189775)

Support the ``[[clang::unsafe_buffer_usage]]`` attribute in APINotes,
e.g.,
```
    Functions:
      - Name: myUnsafeFunction
        UnsafeBufferUsage: true
```

rdar://171859135
DeltaFile
+54-0clang/test/APINotes/unsafe-buffer-usage.cpp
+10-0clang/test/APINotes/Inputs/Headers/UnsafeBufferUsage.apinotes
+9-0clang/docs/ReleaseNotes.rst
+8-0clang/lib/Sema/SemaAPINotes.cpp
+6-1clang/include/clang/APINotes/Types.h
+5-0clang/test/APINotes/Inputs/Headers/module.modulemap
+92-16 files not shown
+106-212 files

LLVM/project 0d45876mlir/include/mlir/Dialect/LLVMIR ROCDLOps.td, mlir/test/Dialect/LLVMIR rocdl.mlir

[ROCDL] Add dot intrinsics to rocdl (#193129)

This patch adds dot intrinsic support to the rocdl dialect. Having these
(inc. follow up `amdgpu` wrapper) as first class citizens in MLIR will
allow us to lower thread local reductions involving `<=16bit` data more
effectively. This is in line with the spirit of `dot` intrinsic support
wrt existing edge dialects (`x86`, `nvvm`, `spirv`).

Assisted by: Claude

---------

Signed-off-by: Eric Feng <Eric.Feng at amd.com>
DeltaFile
+119-0mlir/include/mlir/Dialect/LLVMIR/ROCDLOps.td
+101-0mlir/test/Dialect/LLVMIR/rocdl.mlir
+94-0mlir/test/Target/LLVMIR/rocdl.mlir
+314-03 files

LLVM/project 40fcd25lldb/packages/Python/lldbsuite/test lldbplatformutil.py dotest_args.py, lldb/packages/Python/lldbsuite/test/builders builder.py

[lldb][test] Add support for building Wasm test inferiors (#192872)

This PR adds support for building the test inferiors to WebAssembly.
Specifically, it allows you to configure a sysroot and resource dir
(pointing at the WASI SDK). The Wasm runtime can be configured through
the `LLDB_TEST_USER_ARGS`.

```
LLDB_TEST_TRIPLE:STRING=wasm32-wasip1
LLDB_TEST_SYSROOT:PATH=/path/to/wasi-sdk-32.0-arm64-macos/share/wasi-sysroot
LLDB_TEST_RESOURCE_DIR:PATH=/path/to/wasi-sdk-32.0-arm64-macos/lib/clang/22/
LLDB_TEST_USER_ARGS:STRING=--setting;platform.plugin.wasm.runtime-path=/path/to/iwasm;--setting;platform.plugin.wasm.runtime-args=--heap-size=1048576;--setting;platform.plugin.wasm.port-arg=-g=
```

With the configuration listed above I was able to confirm that I could
build and run a handful of C and C++ tests. To set expectations: lots of
tests are unsupported because they rely on things not available in Wasm
(e.g. shared libraries) or they use features currently unsupported in
LLDB (most notably: expression evaluation).
DeltaFile
+18-1lldb/packages/Python/lldbsuite/test/lldbplatformutil.py
+14-0lldb/packages/Python/lldbsuite/test/make/WASI.rules
+9-1lldb/packages/Python/lldbsuite/test/make/Makefile.rules
+9-1lldb/packages/Python/lldbsuite/test/builders/builder.py
+9-0lldb/packages/Python/lldbsuite/test/dotest_args.py
+3-0lldb/packages/Python/lldbsuite/test/configuration.py
+62-35 files not shown
+70-411 files

LLVM/project 8d21e4ellvm/lib/Target/AMDGPU AMDGPURegBankLegalizeHelper.cpp AMDGPURegBankLegalizeRules.cpp, llvm/test/CodeGen/AMDGPU llvm.amdgcn.intersect_ray.ll llvm.amdgcn.dual_intersect_ray.ll

AMDGPU/GlobalISel: RegBankLegalize rules for BVH intersect ray (#192583)
DeltaFile
+1,139-456llvm/test/CodeGen/AMDGPU/llvm.amdgcn.intersect_ray.ll
+144-2llvm/test/CodeGen/AMDGPU/llvm.amdgcn.dual_intersect_ray.ll
+141-1llvm/test/CodeGen/AMDGPU/llvm.amdgcn.bvh8_intersect_ray.ll
+29-19llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.cpp
+4-4llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.intersect_ray.ll
+6-0llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.cpp
+1,463-4822 files not shown
+1,465-4838 files

LLVM/project febd3declang/include/clang/Basic Module.h, clang/include/clang/Serialization ModuleCache.h ModuleManager.h

[clang] Get the directory identity from `ModuleCache` instead of `FileManager` (#193070)

Using `FileManager`'s caching and deduplication functionality for
assigning identity to the module cache is handy, but it relies on two
assumptions:
* the rest of the compiler consistently calls
`FileManager::getOptionalDirectoryRef()` with `/*CacheFailure=*/false`
for the module cache path,
* the VFS is not caching failed stats for the module cache path.

This PR implements this functionality in the `ModuleCache` interface,
which is conceptually the right place for it. This PR enables us to land
the VFS simplifications in
https://github.com/llvm/llvm-project/pull/190843.
DeltaFile
+9-18clang/include/clang/Basic/Module.h
+19-2clang/lib/Serialization/ModuleManager.cpp
+0-20clang/lib/Basic/Module.cpp
+20-0clang/include/clang/Serialization/ModuleCache.h
+17-0clang/lib/Serialization/ModuleCache.cpp
+6-0clang/include/clang/Serialization/ModuleManager.h
+71-401 files not shown
+74-417 files

LLVM/project c7eea85llvm/lib/Debuginfod BuildIDFetcher.cpp, llvm/lib/Object BuildID.cpp

Revert "[llvm-cov] Fix error propagation in CoverageMapping::load() (… (#193266)

…#193197)"

This reverts commit b7cfcfe03deb679befe821d0c7a9c302f8645763.

Revert "[llvm] Errorize DebuginfodFetcher for inspection at call-sites
(#191191)"

This reverts commit 337ad44a3e585f62bcf2e30b5766146cb8aacaca.

Reason for revert: Caused debuginfod tests failed in profile runtime:

https://luci-milo.appspot.com/ui/p/fuchsia/builders/toolchain.ci/clang-linux-x64/b8683917826498677969/overview
DeltaFile
+11-13llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
+9-11llvm/lib/Debuginfod/BuildIDFetcher.cpp
+3-9llvm/tools/llvm-objdump/llvm-objdump.cpp
+3-8llvm/lib/ProfileData/InstrProfCorrelator.cpp
+4-6llvm/tools/llvm-debuginfod-find/llvm-debuginfod-find.cpp
+2-6llvm/lib/Object/BuildID.cpp
+32-533 files not shown
+37-619 files

LLVM/project e268fb2clang/include/clang/AST ASTContext.h, clang/lib/AST ASTContext.cpp ItaniumMangle.cpp

[clang] implement CWG2064: ignore value dependence for decltype

The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.

This patch also implements what's neceessary to allow overloading
on pure differences in instantiation dependence, making `std::void_t`
usable for SFINAE purposes.

This also readds a few test cases from da98651, which was a previous attempt
at resolving CWG2064.

Fixes #8740
Fixes #61818
Fixes #190388
DeltaFile
+907-175clang/lib/AST/ASTContext.cpp
+312-12clang/test/SemaTemplate/instantiation-dependence.cpp
+143-88clang/lib/AST/ItaniumMangle.cpp
+76-68clang/lib/AST/Type.cpp
+76-48clang/lib/Sema/SemaTemplate.cpp
+95-16clang/include/clang/AST/ASTContext.h
+1,609-40783 files not shown
+2,374-77289 files

LLVM/project 981a9e5llvm/lib/Target/AMDGPU AMDGPURegBankLegalizeRules.cpp, llvm/test/CodeGen/AMDGPU/GlobalISel llvm.amdgcn.ballot.i64.ll llvm.amdgcn.ballot.i32.ll

AMDGPU/GlobalISel: RegBankLegalize rules for amdgcn_ballot (#193105)

Disabled tests involving ctpop and added FIXME to re-enable after ctpop
support.
DeltaFile
+111-119llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.ballot.i64.ll
+112-117llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.ballot.i32.ll
+12-12llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-amdgcn.ballot.i64.mir
+4-0llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.cpp
+239-2484 files

OpenBSD/src L9aleXiusr.sbin/rad frontend.c

   Fix PREF64 option corruption if DNSSL is also set

   On octeon (but not amd64) setting both a NAT64 prefix and a search domain
   causes the former ICMPv6 option to be corrupted due to how it is added last
   in the Router Advertisement packet, following too much zero padding.

   Bytes after the DNSSL option are zeroed up the next 8-byte boundary to
   align options inside the packet.

   Instead of checking alignment of the pointer address somewhere inside the
   packet buffer that lives on the stack, which is thus architecture specific,
   use their offset, i.e. see how many bytes were already written, in order to
   zero-fill what is left between last search domain and next 8-byte boundary.

   This makes RAs byte-identical between octeon and amd64 and prevents rad(8)
   from sending the kind of invalid packets that clients like slaacd(8) and
   gelatod(8) (from ports) need 029_v6daemons for.

   OK florian
VersionDeltaFile
1.58+2-2usr.sbin/rad/frontend.c
+2-21 files

LLVM/project 5f33bbeclang/docs ReleaseNotes.rst, clang/lib/AST CommentParser.cpp

[clang] Exclude trailing colons from param command names (#192598)

Doxygen accepts param names with trailing colons and they are omitted in
documentation. The comment parser includes the colon in the param name
thus including it in AST dumps. This patch removes a trailing colon and
adds a test for it.

Fixes #185378
DeltaFile
+4-0clang/test/AST/ast-dump-comment.cpp
+2-0clang/lib/AST/CommentParser.cpp
+2-0clang/docs/ReleaseNotes.rst
+8-03 files

LLVM/project 2b7e37cllvm/test/CodeGen/AMDGPU amdgcn.bitcast.1024bit.ll amdgcn.bitcast.512bit.ll, llvm/test/CodeGen/RISCV/rvv vfadd-vp.ll vitofp-sdnode.ll

Merge branch 'main' into users/kparzysz/r06-move-deprecation-check
DeltaFile
+4,805-4,811llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.1024bit.ll
+1,871-1,882llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.512bit.ll
+764-1,425llvm/test/CodeGen/RISCV/rvv/vfadd-vp.ll
+837-855llvm/test/CodeGen/AMDGPU/amdgcn.bitcast.256bit.ll
+878-428llvm/test/CodeGen/RISCV/rvv/vitofp-sdnode.ll
+862-426llvm/test/CodeGen/RISCV/rvv/vfptoi-sdnode.ll
+10,017-9,827645 files not shown
+34,975-19,423651 files

FreeBSD/ports ccdc2cex11/yalias Makefile

x11/yalias: deprecrate, no upstream development.
DeltaFile
+3-0x11/yalias/Makefile
+3-01 files

FreeBSD/ports b0bbce9www/py-azure-common Makefile distinfo

www/py-azure-common: Update to 1.1.28

- Update COMMENT
- Update WWW
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/Azure/azure-sdk-for-python/releases
                https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-common/CHANGELOG.md
DeltaFile
+11-6www/py-azure-common/Makefile
+3-3www/py-azure-common/distinfo
+3-2www/py-azure-common/pkg-descr
+17-113 files

FreeBSD/ports f6832dasysutils/py-azure-cli-core Makefile pkg-descr, sysutils/py-azure-cli-core/files patch-setup.py

sysutils/py-azure-cli-core: Update to 2.84.0

- Update WWW
- Add LICENSE_FILE
- Sort RUN_DEPENDS
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/Azure/azure-cli/releases
                https://github.com/Azure/azure-cli/blob/dev/src/azure-cli-core/HISTORY.rst
Security:       CVE-2023-3651,CVE-2024-2511,CVE-2024-4603,CVE-2024-4741,CVE-2024-5535,CVE-2024-6119,CVE-2024-6345,CVE-2024-9143,CVE-2024-12797,CVE-2024-13176,CVE-2024-34064,CVE-2024-35195,CVE-2024-37891,CVE-2024-39689,CVE-2024-47081,CVE-2024-50602,CVE-2025-4517,CVE-2025-50181,CVE-2025-50182
DeltaFile
+22-18sysutils/py-azure-cli-core/Makefile
+29-0sysutils/py-azure-cli-core/files/patch-setup.py
+6-4sysutils/py-azure-cli-core/pkg-descr
+3-3sysutils/py-azure-cli-core/distinfo
+60-254 files

FreeBSD/ports dc0165dsysutils/py-azure-cli-telemetry Makefile pkg-descr

sysutils/py-azure-cli-telemetry: Convert to USE_PYTHON=pep517

- Update WWW
- Add LICENSE_FILE
- Update pkg-descr
- Bump PORTREVISION for package change
DeltaFile
+8-4sysutils/py-azure-cli-telemetry/Makefile
+2-2sysutils/py-azure-cli-telemetry/pkg-descr
+10-62 files

FreeBSD/ports 18cd408devel/py-portalocker Makefile pkg-descr

devel/py-portalocker: Update to 2.10.1

- Update WWW
- Update LICENSE
- Convert to USE_PYTHON=pep517

Changes:        https://github.com/wolph/portalocker/releases
DeltaFile
+12-7devel/py-portalocker/Makefile
+5-5devel/py-portalocker/pkg-descr
+3-3devel/py-portalocker/distinfo
+20-153 files

FreeBSD/ports 15dfaecsysutils/py-azure-cli-acr Makefile pkg-descr, sysutils/py-azure-cli-acr/files patch-setup.py patch-setup.cfg

sysutils/py-azure-cli-acr: Convert to USE_PYTHON=pep517

- Update WWW
- Sort RUN_DEPENDS
- Reformat pkg-descr
- Bump PORTREVISION for package change
DeltaFile
+9-6sysutils/py-azure-cli-acr/Makefile
+15-0sysutils/py-azure-cli-acr/files/patch-setup.py
+9-0sysutils/py-azure-cli-acr/files/patch-setup.cfg
+3-3sysutils/py-azure-cli-acr/pkg-descr
+36-94 files

FreeBSD/ports 3f4f84asysutils/py-azure-cli Makefile pkg-descr, sysutils/py-azure-cli/files patch-setup.py patch-azcopy

sysutils/py-azure-cli: Update to 2.84.0

- Update WWW
- Update version requirement of RUN_DEPENDS
- Sort RUN_DEPENDS
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/Azure/azure-cli/releases
                https://github.com/Azure/azure-cli/blob/dev/src/azure-cli/HISTORY.rst
Security:       CVE-2023-3651,CVE-2024-2511,CVE-2024-4603,CVE-2024-4741,CVE-2024-5535,CVE-2024-6119,CVE-2024-6345,CVE-2024-9143,CVE-2024-12797,CVE-2024-13176,CVE-2024-34064,CVE-2024-35195,CVE-2024-37891,CVE-2024-39689,CVE-2024-47081,CVE-2024-50602,CVE-2025-4517,CVE-2025-9230,CVE-2025-9232,CVE-2025-12084,CVE-2025-50181,CVE-2025-50182,CVE-2025-66418,CVE-2025-66471,CVE-2025-69277,CVE-2026-21226,CVE-2026-21441
DeltaFile
+209-0sysutils/py-azure-cli/files/patch-setup.py
+84-75sysutils/py-azure-cli/Makefile
+20-0sysutils/py-azure-cli/files/patch-azcopy
+0-20sysutils/py-azure-cli/files/patch-azure_cli_command__modules_storage_azcopy_util.py
+6-6sysutils/py-azure-cli/pkg-descr
+3-3sysutils/py-azure-cli/distinfo
+322-1046 files

FreeBSD/ports 09f17e7devel/py-msal Makefile pkg-descr

devel/py-msal: Update to 1.35.0

- Update COMMENT
- Update WWW
- Add LICENSE_FILE
- Sort RUN_DEPENDS
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/AzureAD/microsoft-authentication-library-for-python/releases
DeltaFile
+11-8devel/py-msal/Makefile
+5-4devel/py-msal/pkg-descr
+3-3devel/py-msal/distinfo
+19-153 files

FreeBSD/ports 0dd05e6devel/py-msal-extensions Makefile pkg-descr

devel/py-msal-extensions: Update to 1.3.1

- Update COMMENT
- Update WWW
- Convert to USE_PYTHON=pep517
- Add PORTALOCKER option

Changes:        https://github.com/AzureAD/microsoft-authentication-extensions-for-python/releases
DeltaFile
+15-7devel/py-msal-extensions/Makefile
+3-3devel/py-msal-extensions/pkg-descr
+3-3devel/py-msal-extensions/distinfo
+21-133 files

FreeBSD/ports 5c65ba2devel/py-azure-synapse-spark Makefile pkg-descr

devel/py-azure-synapse-spark: Update to 0.7.0

- Update WWW
- Update version requirement of RUN_DEPENDS
- Sort RUN_DEPENDS
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/Azure/azure-sdk-for-python/releases
                https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/synapse/azure-synapse-spark/CHANGELOG.md
DeltaFile
+11-8devel/py-azure-synapse-spark/Makefile
+3-4devel/py-azure-synapse-spark/pkg-descr
+3-3devel/py-azure-synapse-spark/distinfo
+17-153 files

FreeBSD/ports ca0c796devel/py-knack pkg-descr Makefile

devel/py-knack: Update to 0.13.0

- Update COMMENT
- Update WWW
- Sort RUN_DEPENDS
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/microsoft/knack/releases
DeltaFile
+21-22devel/py-knack/pkg-descr
+12-10devel/py-knack/Makefile
+3-3devel/py-knack/distinfo
+36-353 files

FreeBSD/ports a12c66fdevel/py-azure-synapse-artifacts Makefile pkg-descr

devel/py-azure-synapse-artifacts: Update to 0.21.0

- Update WWW
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/Azure/azure-sdk-for-python/releases
                https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md
DeltaFile
+13-7devel/py-azure-synapse-artifacts/Makefile
+3-4devel/py-azure-synapse-artifacts/pkg-descr
+3-3devel/py-azure-synapse-artifacts/distinfo
+19-143 files

FreeBSD/ports 63c0a41devel/py-azure-synapse-managedprivateendpoints Makefile pkg-descr

devel/py-azure-synapse-managedprivateendpoints: Convert to USE_PYTHON=pep517

- Update WWW
- Update version requirement of RUN_DEPENDS
- Sort RUN_DEPENDS
- Update pkg-descr
- Bump PORTREVISION for package change
DeltaFile
+12-8devel/py-azure-synapse-managedprivateendpoints/Makefile
+2-3devel/py-azure-synapse-managedprivateendpoints/pkg-descr
+14-112 files

FreeBSD/ports af372b4devel/py-azure-storage-common Makefile pkg-descr

devel/py-azure-storage-common: Convert to USE_PYTHON=pep517

- Update WWW
- Add LICENSE_FILE
- Sort RUN_DEPENDS
- Update pkg-descr
- Bump PORTREVISION for package change
DeltaFile
+9-5devel/py-azure-storage-common/Makefile
+2-3devel/py-azure-storage-common/pkg-descr
+11-82 files

FreeBSD/ports 4fafb69devel/py-azure-synapse-accesscontrol Makefile pkg-descr

devel/py-azure-synapse-accesscontrol: Update to 0.7.0

- Update WWW
- Update version requirement of RUN_DEPENDS
- Sort RUN_DEPENDS
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/Azure/azure-sdk-for-python/releases
                https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/synapse/azure-synapse-accesscontrol/CHANGELOG.md
DeltaFile
+11-8devel/py-azure-synapse-accesscontrol/Makefile
+3-4devel/py-azure-synapse-accesscontrol/pkg-descr
+3-3devel/py-azure-synapse-accesscontrol/distinfo
+17-153 files

FreeBSD/ports 46098a0devel/py-azure-multiapi-storage Makefile pkg-descr

devel/py-azure-multiapi-storage: Update to 1.6.0

- Update COMMENT
- Update WWW
- Add LICENSE_FILE
- Sort RUN_DEPENDS
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/Azure/azure-multiapi-storage-python/releases
DeltaFile
+12-9devel/py-azure-multiapi-storage/Makefile
+5-3devel/py-azure-multiapi-storage/pkg-descr
+3-3devel/py-azure-multiapi-storage/distinfo
+20-153 files

FreeBSD/ports 17e3a27devel/py-azure-mgmt-trafficmanager Makefile pkg-descr

devel/py-azure-mgmt-trafficmanager: Update to 1.1.0

- Update COMMENT
- Update WWW
- Add LICENSE_FILE
- Update version requirement of RUN_DEPENDS
- Sort RUN_DEPENDS
- Convert to USE_PYTHON=pep517
- Update pkg-descr

Changes:        https://github.com/Azure/azure-sdk-for-python/releases
                https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/trafficmanager/azure-mgmt-trafficmanager/CHANGELOG.md
DeltaFile
+13-9devel/py-azure-mgmt-trafficmanager/Makefile
+3-4devel/py-azure-mgmt-trafficmanager/pkg-descr
+3-3devel/py-azure-mgmt-trafficmanager/distinfo
+19-163 files