FreeBSD/ports dfe5dd6www/gohugo distinfo Makefile

www/gohugo: Update to 0.162.1

ChangeLog: https://github.com/gohugoio/hugo/releases/tag/v0.162.1

 * modules/npm: Fix false stale warning after npm pack
 * Revert "tpl/collections: Make dict return nil when no values are provided"
 * tpl/time: Fix locale-specific month abbreviations

Approved by:    doceng@ (implicit)
DeltaFile
+5-5www/gohugo/distinfo
+1-1www/gohugo/Makefile
+6-62 files

NetBSD/pkgsrc g9QdynPdoc CHANGES-2026

   doc: Updated converters/dos2unix to 7.5.6
VersionDeltaFile
1.3350+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc tkTwRE1converters/dos2unix distinfo Makefile

   converters/dos2unix: Update to 7.5.6

   * Update HOMEPAGE.

   Changelog:
   2026-05-28: Version 7.5.6

    * New homepage https://waterlander.net/dos2unix/
    * Updated translations of the manual.
VersionDeltaFile
1.30+4-4converters/dos2unix/distinfo
1.43+3-3converters/dos2unix/Makefile
+7-72 files

FreeBSD/ports c57f29fdevel/pcsc-lite distinfo pkg-plist

devel/pcsc-lite: Update 2.4.0 => 2.4.1

Differential Revision: https://reviews.freebsd.org/D57315
DeltaFile
+3-3devel/pcsc-lite/distinfo
+4-1devel/pcsc-lite/pkg-plist
+3-2devel/pcsc-lite/Makefile
+10-63 files

NetBSD/pkgsrc 6lQbr5Edoc CHANGES-2026

   doc: Updated databases/influxdb to 1.8.10
VersionDeltaFile
1.3349+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc BixL7eJdatabases/influxdb distinfo go-modules.mk, databases/influxdb/patches patch-go.sum patch-go.mod

   databases/influxdb: Update to 1.8.10

   * It seems that 1.8.10 is the last version to build like before.

   Changelog:
   v1.8.10 [2021-10-11]
   -------------------

   - [#22076](https://github.com/influxdata/influxdb/pull/22076): fix: systemd service -- handle 40x and block indefinitely
   - [#22253](https://github.com/influxdata/influxdb/pull/22253): fix: influxdb packages should depend on curl
   - [#22427](https://github.com/influxdata/influxdb/pull/22427): fix(snapshotter): properly read payload
   - [#22561](https://github.com/influxdata/influxdb/pull/22561): fix(restore): parameter validation, Windows temp file deletion
   - [#22616](https://github.com/influxdata/influxdb/pull/22616): fix: better error for no data from snapshots

   v1.8.9 [2021-08-04]
   -------------------

   v1.8.8 [unreleased]
   -------------------

    [46 lines not shown]
VersionDeltaFile
1.6+228-65databases/influxdb/distinfo
1.2+74-19databases/influxdb/go-modules.mk
1.2+29-23databases/influxdb/patches/patch-go.sum
1.2+5-19databases/influxdb/patches/patch-go.mod
1.77+3-4databases/influxdb/Makefile
1.3+1-3databases/influxdb/PLIST
+340-1336 files

FreeBSD/src eda74felib/libc/stdlib rand.3

rand(3): Normalize function ordering

Align ordering between NAME & SYNOPSIS sections.

Obtained from:  https://github.com/apple-oss-distributions/libc
Sponsored by:   Klara, Inc.
DeltaFile
+5-5lib/libc/stdlib/rand.3
+5-51 files

NetBSD/pkgsrc glMzmcjsecurity Makefile

   security: Enable zauth
VersionDeltaFile
1.1010+2-1security/Makefile
+2-11 files

NetBSD/pkgsrc r3XhLNmdoc CHANGES-2026

   doc: Added security/zauth version 0.0.0pre20230628
VersionDeltaFile
1.3348+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc wLRG8oFsecurity/zauth distinfo go-modules.mk

   security/zauth: import zauth-0.0.0pre20230628

   zauth is a 2FA (Two-Factor Authentication) application for terminal
   written in Go.

   Features
     * Supports both TOTP and HOTP codes.
     * Add new entries directly from CLI.
         * support setting custom digits (default: 6)
         * support setting a custom period (TOTP) (default: 30)
         * support SHA1, SHA256 and SHA512 algorithms (TOTP)
     * Import/Export andOTP backups (encrypted files supported).
VersionDeltaFile
1.1+116-0security/zauth/distinfo
1.1+39-0security/zauth/go-modules.mk
1.1+20-0security/zauth/Makefile
1.1+10-0security/zauth/DESCR
1.1+2-0security/zauth/PLIST
+187-05 files

FreeBSD/ports 6d79433devel/gamin Makefile

devel/gamin: Fix build with LIBINOTIFY enabled on FreeBSD 15+
DeltaFile
+2-1devel/gamin/Makefile
+2-11 files

NetBSD/pkgsrc zwkDh2Zwww/curl options.mk

   www/curl: Add http3 option
VersionDeltaFile
1.28+13-2www/curl/options.mk
+13-21 files

NetBSD/pkgsrc 9G4wFVHdoc CHANGES-2026

   doc: Updated net/ngtcp2 to 1.22.1nb1
VersionDeltaFile
1.3347+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc rWux6hsnet/ngtcp2 PLIST Makefile

   net/ngtcp2: Enable openssl and nghttp3 for http3 support of www/curl

   * Bump PKGREVISION.
VersionDeltaFile
1.33+8-1net/ngtcp2/PLIST
1.37+4-4net/ngtcp2/Makefile
+12-52 files

LLVM/project 1f10f1cllvm/include/llvm/ADT DenseMap.h, llvm/lib/IR Value.cpp

[DenseMap] Replace tombstone deletion with TAOCP 6.4 Algorithm R (#200595)

DenseMap uses quadratic probing with lazy deletion: an erased entry
becomes a tombstone, a third bucket state alongside empty and live that
every find/insert must inspect.

Switch to linear probing with backward-shift deletion (Knuth TAOCP 6.4
Algorithm R), similar to the SmallPtrSet change #197637. This removes
the tombstone state entirely.

In exchange, erase now relocates the following live entries to close the
hole, so it invalidates iterators and references other than the erased
one. For callers that cache pointers into the bucket array,
erase(Key, OnMoved) and erase(iterator, OnMoved) fire a callback once
per
shifted bucket, so fix-ups cost O(cluster) rather than O(NumEntries).
ValueHandleBase::RemoveFromUseList uses this to refresh each moved
handle's PrevPtr.


    [17 lines not shown]
DeltaFile
+91-119llvm/include/llvm/ADT/DenseMap.h
+4-1llvm/lib/IR/Value.cpp
+1-2llvm/unittests/ADT/BitVectorTest.cpp
+96-1223 files

FreeBSD/ports e9bc5c8emulators/ares Makefile distinfo, emulators/ares/files patch-thirdparty_CMakeLists.txt

emulators/ares: Update 147 => 148

Release Notes:
https://ares-emu.net/news/ares-v148-released

PR:             295728
Sponsored by:   UNIS Labs
DeltaFile
+25-29emulators/ares/files/patch-thirdparty_CMakeLists.txt
+1-7emulators/ares/Makefile
+3-5emulators/ares/distinfo
+29-413 files

FreeBSD/doc 6ac4980documentation/content/en/articles/freebsd-releng _index.adoc

articles/releng: fix man links

Approved by: doceng (implicit)
Differential Revision: https://reviews.freebsd.org/D57367
DeltaFile
+7-7documentation/content/en/articles/freebsd-releng/_index.adoc
+7-71 files

NetBSD/pkgsrc bty1aFkwww/firefox mozilla-common.mk

   firefox: 151.0.x requires nss>=3.123.1
VersionDeltaFile
1.312+2-2www/firefox/mozilla-common.mk
+2-21 files

FreeBSD/ports 2819d13www/freenginx-devel Makefile.extmod distinfo

www/freenginx-devel: add third-party auth_jwt module (+)

The binary form of the auth_jwt module has exactly the same name
as the binary form of the http_auth_jwt module, so let's guarded
both modules with the PREVENTS* knobs.

Bump PORTREVISION.

Sponsored by:   tipi.work
DeltaFile
+15-4www/freenginx-devel/Makefile.extmod
+7-1www/freenginx-devel/distinfo
+6-1www/freenginx-devel/Makefile
+1-0www/freenginx-devel/Makefile.options.desc
+1-0www/freenginx-devel/pkg-plist
+30-65 files

LLVM/project 9077984llvm/lib/Transforms/Utils LowerInvoke.cpp, llvm/test/Transforms/LowerInvoke lowerinvoke.ll

[LowerInvoke] Use createCallMatchingInvoke instead of rolling it ourselves (#200536)

Using createCallMatchingInvoke ensures we copy metadata from the invoke
onto the call.

This bug was found by a large run of Opus 4.7 looking for bugs in LLVM.
DeltaFile
+21-0llvm/test/Transforms/LowerInvoke/lowerinvoke.ll
+3-11llvm/lib/Transforms/Utils/LowerInvoke.cpp
+24-112 files

NetBSD/pkgsrc 15JwkB7doc CHANGES-2026

   doc: Updated net/sayaka to 3.8.7
VersionDeltaFile
1.3346+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc M6GljBmnet/sayaka distinfo Makefile

   sayaka: update to 3.8.7

   Upstream changes:
    https://github.com/isaki68k/sayaka

   3.8.7 (2026/05/30)
   * improve Misskey rendering
VersionDeltaFile
1.43+4-4net/sayaka/distinfo
1.61+2-2net/sayaka/Makefile
+6-62 files

FreeBSD/ports 3c568acdatabases/pgbouncer Makefile pkg-plist

databases/pgbouncer: Add default option MANPAGES

Port depends on hs-pandoc to build its manpages, that adds a dependency
on lang/ghc, which takes hours to build.
MANPAGES option save lots of build time for users who build their own
ports without MANPAGES.

While here fix build with custom USER/GROUP not from UIDs/GIDs.

PR:             295239
Approved by:    Dmitry Wagin <dmitry.wagin at ya.ru> (maintainer, timeout 2 weeks)
Sponsored by:   UNIS Labs
DeltaFile
+16-6databases/pgbouncer/Makefile
+2-2databases/pgbouncer/pkg-plist
+18-82 files

pkgng/pkgng b13e85clibpkg pkgsign_ecc.c

libpkg: fix a typo in the ECC signer

secp512r1 -> secp521r1, which does mean that these keys wouldn't have
worked quite right if someone did have the 'pkgkey' format pubkey that
describe it, but we don't write those for ECDSA anymore.  Thus, this
yields no functional change.
DeltaFile
+1-1libpkg/pkgsign_ecc.c
+1-11 files

FreeBSD/ports 07f8208net/mgen Makefile distinfo, net/mgen/files patch-common_mgenSocketList.cpp patch-unix_Makefile.freebsd

net/mgen: Update 4.2b6 => 5.1.1, take maintainership

Changelog:
https://github.com/USNavalResearchLaboratory/mgen/blob/915e88a/VERSION.TXT

Project moved to:
https://www.nrl.navy.mil/Our-Work/Areas-of-Research/Information-Technology/NCS/MGEN/
https://github.com/USNavalResearchLaboratory/mgen/

Improve port:
- Unbreak build on 64bit ARCHes.
- Add LICENSE.
- Fix warnings from portclippy.
- Optimize install DOCS.

PR:             295246
Sponsored by:   UNIS Labs
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
MFH:            2026Q2

    [2 lines not shown]
DeltaFile
+24-21net/mgen/Makefile
+0-15net/mgen/files/patch-common_mgenSocketList.cpp
+0-14net/mgen/files/patch-unix_Makefile.freebsd
+0-14net/mgen/files/patch-protolib_unix_Makefile.freebsd
+0-11net/mgen/files/patch-protolib_unix_bsdRouteMgr.cpp
+3-2net/mgen/distinfo
+27-776 files

LLVM/project 56a9bballvm/include/llvm/IR Value.h FMF.h, llvm/lib/Transforms/InstCombine InstructionCombining.cpp

[IR] SubclassOptionalData is only optional for Instruction (#200419)

BasicBlock currently uses this for HasAddressTaken. ConstantExpr uses
this for flags and it should not be possible to modify constant
expressions after they have been created.

Therefore, update the documentation accordingly and remove the unsafe
clearSubclassOptionalData.

Remove hasSameSubclassOptionalData, as it is unused.
DeltaFile
+14-25llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+4-14llvm/include/llvm/IR/Value.h
+1-4llvm/include/llvm/IR/FMF.h
+1-3llvm/lib/Transforms/Scalar/Reassociate.cpp
+2-0llvm/include/llvm/IR/Operator.h
+1-1llvm/lib/Transforms/Utils/Local.cpp
+23-476 files

LLVM/project 61e66a3llvm/include/llvm/IR IRBuilder.h, llvm/lib/Transforms/InstCombine InstructionCombining.cpp

[spr] initial version

Created using spr 1.3.8-wip
DeltaFile
+34-33llvm/include/llvm/IR/IRBuilder.h
+1-2llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+35-352 files

FreeBSD/ports 6b5823bnet/mgen Makefile distinfo, net/mgen/files patch-common_mgenSocketList.cpp patch-protolib_unix_Makefile.freebsd

net/mgen: Update 4.2b6 => 5.1.1, take maintainership

Changelog:
https://github.com/USNavalResearchLaboratory/mgen/blob/915e88a/VERSION.TXT

Project moved to:
https://www.nrl.navy.mil/Our-Work/Areas-of-Research/Information-Technology/NCS/MGEN/
https://github.com/USNavalResearchLaboratory/mgen/

Improve port:
- Unbreak build on 64bit ARCHes.
- Add LICENSE.
- Fix warnings from portclippy.
- Optimize install DOCS.

PR:             295246
Sponsored by:   UNIS Labs
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
MFH:            2026Q2
DeltaFile
+24-21net/mgen/Makefile
+0-15net/mgen/files/patch-common_mgenSocketList.cpp
+0-14net/mgen/files/patch-protolib_unix_Makefile.freebsd
+0-14net/mgen/files/patch-unix_Makefile.freebsd
+0-11net/mgen/files/patch-protolib_unix_bsdRouteMgr.cpp
+3-2net/mgen/distinfo
+27-776 files

OpenBSD/ports U8c9Xv4security/aide Makefile

   Building with the newer nettle, aide now also needs stdalign.h

   Move to ports-gcc on sparc64 to fix the build
VersionDeltaFile
1.34+4-0security/aide/Makefile
+4-01 files

FreeBSD/ports 1bac8bfdatabases/pgloader3 Makefile, devel/cl-alexandria Makefile

*/*: Bump PORTREVISION on *-sbcl ports after lang/sbcl upgrade.
DeltaFile
+1-1x11/cl-clx-sbcl/Makefile
+1-1databases/pgloader3/Makefile
+1-1devel/cl-alexandria-sbcl/Makefile
+1-1devel/cl-alexandria/Makefile
+1-1devel/cl-asdf-sbcl/Makefile
+1-1devel/cl-flexi-streams-sbcl/Makefile
+6-614 files not shown
+20-1920 files