finance/p5-Business-OnlinePayment-SurePay: Mark DEPRECATED
- Backend for the defunct Pure Payments/iMALL SurePay gateway
(surepay.com, active ~1999-2003)
- Sole CPAN release from 2002 has always been UNAUTHORIZED on PAUSE
- No consumers in the tree
- Switch to DISTVERSION while I am here
- Set EXPIRATION_DATE 2026-10-23
- Pet portclippy
(cherry picked from commit b929f72366265a1a660cec005a5757e1f9b6adbc)
finance/p5-Business-OnlinePayment-Network1Financial: Mark DEPRECATED
- Switch to DISTVERSION while I am here
- Backend for the defunct Network1Financial payment gateway (eftsecure.com)
- Upstream CPAN dist has had no release since 2002
- The documented API endpoint is no longer live
- Set EXPIRATION_DATE 2026-10-23
- No consumers in the tree
- Fix fetch
(cherry picked from commit c0130177a146307155ccf7cc55f72356cb5742c0)
finance/p5-Business-WorldPay-Junior: Mark DEPRECATED
- Switch to DISTVERSION while I am here
- Set EXPIRATION_DATE 2026-10-23
- Upstream module withdrawn by its author (Jason Clifford) on CPAN day
2024
- WorldPay Select Junior integration no longer exists
- See https://blogs.perl.org/users/jasonclifford/2024/08/goodbye-old-modules.html
finance/p5-Business-OnlinePayment-SurePay: Mark DEPRECATED
- Backend for the defunct Pure Payments/iMALL SurePay gateway
(surepay.com, active ~1999-2003)
- Sole CPAN release from 2002 has always been UNAUTHORIZED on PAUSE
- No consumers in the tree
- Switch to DISTVERSION while I am here
- Set EXPIRATION_DATE 2026-10-23
- Pet portclippy
finance/p5-Business-OnlinePayment-Network1Financial: Mark DEPRECATED
- Switch to DISTVERSION while I am here
- Backend for the defunct Network1Financial payment gateway (eftsecure.com)
- Upstream CPAN dist has had no release since 2002
- The documented API endpoint is no longer live
- Set EXPIRATION_DATE 2026-10-23
- No consumers in the tree
- Fix fetch
[lldb] Add Options to LINK_COMPONENTS (#225684)
This fixes shared library build of lldb:
```
/usr/bin/ld: lib/liblldbPluginPlatformMacOSX.a(PlatformDarwin.cpp.o): undefined reference to symbol '_ZNK4llvm3opt8OptTable9getOptionENS0_12OptSpecifierE'
/usr/bin/ld: /work/kparzysz/git/llvm.org/b/x86/lib/libLLVMOption.so.24.0git: error adding symbols: DSO missing from command line
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
```
And several other cases in unittests.
AMDGPU: Preserve dead carry-out when shrinking adds in SIFoldOperands
The VOP3 form of add/sub with carry out are sometimes shrunk to the VOPC
form when the carry out is dead. Preserve this information by setting the
dead flag on the new instruction. This alleviates some implicit dependence
on LiveVariables' later recomputation of dead flags.
Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
[clang] Widen SubstTemplateTypeParmType::PackIndex to 16 bits (#225584)
#132748 narrowed PackIndex to 15 bits when adding Final, leaving a bit
unused, so a type pack with 32768 or more elements stores a wrapped pack
index. The node then keys differently from its lookup, failing the
UniquingSet insert assertion. Restore the 16-bit width, matching
SubstPackType's 16-bit NumArgs.
Fix assertion failure https://godbolt.org/z/9r1jEqqob
Aided by Opus 5.5