*: add LDFLAGS overide that was previously in mk
This is a workaround and should be fixed properly per-package - they
should use the pkgsrc LDFLAGS, but this restores what happened
before the mk/ cleanup.
Fixes relro build for packages that do not honor LDFLAGS.
Package list provided by mef@, thanks!
Workaround commit requested by bsiegert on tech-pkg.
py-cffi: updated to 2.1.1
2.1.1
* Minimize internal Python API usage for interpreter and thread state sampling where possible.
Avoids breaking ABI change in Python >= 3.15.0b4.
tailscale: update to 1.102.1
- tailscaled_serve_outbound_bytes_total and
tailscaled_serve_inbound_bytes_total client metrics report bytes
sent to and received from peers on Tailscale Serve connections for
Tailscale Services.
- The tailscale get CLI command returns the current node's
preferences.
- The tailscale whoami CLI command displays information about the
current user and device.
- The tailscale service list CLI command displays Tailscale Services
visible to the current node.
- Node additions and removals are processed in constant time,
significantly reducing CPU usage on large tailnets.
- Tailscale Funnel domains use TLS-ALPN-01 for faster HTTPS
certificate renewals.
- Deprecated formats for 4via6 MagicDNS names are no longer available
to use.
- TLS certificates on idle servers proactively auto-renew in the
[48 lines not shown]
mlterm: pull upstream window handling fixes
Fix a 3.9.5 regression that sets window manager hints on child windows.
Also move input focus handling for multiple input windows from FocusIn
to WM_TAKE_FOCUS.
Bump PKGREVISION.
www/ruby-html-proofer: update to 5.2.2
5.2.2 (2026-07-28)
WHat's Changed
* fix: Read trailing slash from URL, not expanded path by @gjtorikian in
#877
* [skip test] Release v5.2.2 by @github-actions[bot] in #878
www/ruby-aws-sdk-s3: update to 1.228.2
1.228.2 (2026-07-30)
* Issue - S3 Encryption Client, encryptionV2 and encryptionV3, returns a
decryption error for a malformed material description.
www/ruby-aws-partitions: update to 1.277.0
1.1277.0 (2026-07-31)
* Feature - Updated the partitions source data that determines the AWS
service regions and endpoints.
1.1276.0 (2026-07-30)
* Feature - Added support for enumerating regions for
Aws::PricingPlanManager.
1.1275.0 (2026-07-29)
* Feature - Updated the partitions source data that determines the AWS
service regions and endpoints.
1.1274.0 (2026-07-27)
[2 lines not shown]
textproc/ruby-haml: update to 7.2.2
7.2.1 (2026-07-28)
What's Changed
* Do not rely on Ripper quirk in parsing old-style Haml attributes by
@andrykonchin in #1212
New Contributors
* @andrykonchin made their first contribution in #1212
7.2.2 (2026-07-29)
What's Changed
* Remove obsolete TruffleRuby compatibility skips by @ollym in #1210
[4 lines not shown]
net/ruby-ruby_smb: update to 3.3.22
3.3.22 (2026-07-31)
* Merge pull request #302 from Isleynorth/bug/301/smb1-session-setup-uid;
Use the final SessionSetup UID in SMB1 NTLMSSP authentication (fixes Tree
Connect against Samba)
graphics/ruby-RMagick: update to 7.1.0
7.1.0 (2026-07-27)
Important
Draw#annotate and Draw#get_type_metrics no longer interpret the text they
are given. A %[...] or %x escape is now drawn as written instead of being
replaced.
Build the string in Ruby instead — everything those escapes provided has a
direct accessor:
# before
img.annotate(gc, 0, 0, 10, 20, '%wx%h')
# after
img.annotate(gc, 0, 0, 10, 20, "#{img.columns}x#{img.rows}")
[76 lines not shown]
devel/ruby-zeitwerk: update to 2.8.3
2.8.3 (2026-08-01)
* 2.8.0 introduced a regression: Collapsed directories that were also
configured as eager load exclusions were eager loaded. The exclusion was
not honored. This has been fixed.