FreeBSD/ports be0cbb6www/agate Makefile

www/agate: Bump PORTREVISION to propagate rc script fix

MFH:       2026Q3
(cherry picked from commit 44951873574f4a0e829819ea8b6c5b275d23aa27)
DeltaFile
+1-0www/agate/Makefile
+1-01 files

FreeBSD/ports 4495187www/agate Makefile

www/agate: Bump PORTREVISION to propagate rc script fix

MFH:       2026Q3
DeltaFile
+1-0www/agate/Makefile
+1-01 files

OPNSense/core c960604src/opnsense/service/templates/OPNsense/Trust openssl.cnf

system: fips goes to provider_sect
DeltaFile
+5-5src/opnsense/service/templates/OPNsense/Trust/openssl.cnf
+5-51 files

FreeBSD/ports 2399144www/agate/files agate.in

www/agate: Fix rc script

MFH:       2026Q3
(cherry picked from commit 072641d726b74d2249ee7d575cdcba73e9f7bb92)
DeltaFile
+1-1www/agate/files/agate.in
+1-11 files

FreeBSD/ports f9167fcwww/tailwindcss4 pkg-descr distinfo

www/tailwindcss4: Update to v4.3.3 and add aarch64

- remove daisyui plugin
- add more instructions for maintainer to handle updates
- add aaarch64 support

Sponsored by:   SkunkWerks, GmbH
DeltaFile
+0-2,289www/tailwindcss4/pkg-plist
+503-0www/tailwindcss4/pkg-plist.amd64
+500-0www/tailwindcss4/pkg-plist.aarch64
+215-39www/tailwindcss4/Makefile
+9-3www/tailwindcss4/distinfo
+1-7www/tailwindcss4/pkg-descr
+1,228-2,3386 files

FreeBSD/ports b379f19net-mgmt/simplomon Makefile, net-mgmt/simplomon/files patch-notifiers.hh patch-sol_sol.hpp

net-mgmt/simplomon: Fix build on 16-CURRENT
DeltaFile
+18-0net-mgmt/simplomon/files/patch-sol_sol.hpp
+0-8net-mgmt/simplomon/files/patch-notifiers.hh
+5-3net-mgmt/simplomon/Makefile
+23-113 files

FreeBSD/ports a4bd7a2net/amqpcat Makefile, net/amqpcat/files patch-deps_amq-protocol.cr_src_amq_protocol_table.cr

net/amqpcat: Fix pkg-fallout after lang/crystal bump

Sponsored by:       SkunkWerks, GmbH
DeltaFile
+37-0net/amqpcat/files/patch-deps_amq-protocol.cr_src_amq_protocol_table.cr
+2-2net/amqpcat/Makefile
+39-22 files

FreeBSD/ports 3a71205filesystems/versitygw Makefile distinfo

filesystems/versitygw: Update to 1.7.0

- https://github.com/versity/versitygw/releases/tag/v1.7.0

Sponsored by: SkunkWerks, Gmbh
DeltaFile
+5-5filesystems/versitygw/distinfo
+1-2filesystems/versitygw/Makefile
+6-72 files

FreeBSD/ports f894c21sysutils/smart Makefile distinfo

sysutils/smart: Update to 1.0.3

- https://github.com/ctuffli/smart/releases/tag/1.0.3

Sponsored by:   SkunkWerks, GmbH
Approved by:    chuck
DeltaFile
+3-3sysutils/smart/distinfo
+1-1sysutils/smart/Makefile
+4-42 files

NetBSD/pkgsrc 34ibkncdevel/py-dulwich cargo-depends.mk Makefile

   py-dulwich: updated to 1.2.14

   1.2.14  2026-08-28

   * Collapse consecutive `**` segments in wildmatch translation, matching
     git's behavior and avoiding catastrophic regex backtracking on patterns
     like `a/**/**/**/z` from untrusted repositories. (netliomax25-code)

   1.2.13  2026-08-24

   * Make concurrent ``Pack.get_raw`` calls thread-safe by synchronizing
     ``PackData``'s resolved-object offset cache.
     (Bojan Zivanovic)

   * Speed up cached `PackData.get_object_at` lookups by acquiring the
     offset-cache lock directly instead of through a `with` statement.
     (Bojan Zivanovic)

   * Bound fetch negotiation the way C Git's ``MAX_IN_VAIN`` does: give up

    [77 lines not shown]
VersionDeltaFile
1.83+7-7devel/py-dulwich/distinfo
1.43+4-1devel/py-dulwich/PLIST
1.88+2-2devel/py-dulwich/Makefile
1.20+1-1devel/py-dulwich/cargo-depends.mk
+14-114 files

FreeBSD/ports 072641dwww/agate/files agate.in

www/agate: Fix rc script

MFH:       2026Q3
DeltaFile
+1-1www/agate/files/agate.in
+1-11 files

LLVM/project 1504d80clang/docs ReleaseNotes.md, clang/lib/Sema SemaOverload.cpp

  [Clang] Fix wording of ref-qualifier overload diagnostic (#219905)

When a member function is redeclared with a conflicting ref-qualifier,
  the diagnostic described the new declaration before the previous
  declaration, which read in the opposite order from the source. For
  example,

    struct C { void f(); };
    void C::f() & {}

  previously produced:

cannot overload a member function with ref-qualifier '&' with a member
    function without a ref-qualifier

  Swap the two qualifier descriptions so the previous declaration is
  described first, matching source order:

cannot overload a member function without a ref-qualifier with a member

    [2 lines not shown]
DeltaFile
+3-3clang/test/CXX/over/over.load/p2-0x.cpp
+3-3clang/test/CXX/drs/cwg24xx.cpp
+2-2clang/test/CXX/drs/cwg5xx.cpp
+4-0clang/docs/ReleaseNotes.md
+1-1clang/test/SemaCXX/cxx1y-contextual-conversion-tweaks.cpp
+1-1clang/lib/Sema/SemaOverload.cpp
+14-106 files

LLVM/project 4f3e99allvm/include/llvm/IR Instructions.h, llvm/lib/AsmParser LLParser.cpp

[IR] `select` should reject token-like types

Target extension types with the IsTokenLike property are meant to behave like
tokens. The change in #154620 already rejected such types in phi nodes, function
arguments, function return types and call parameters. Added this missing check
in SelectInst::areInvalidOperands().

Also refactored PHINode to follow the same pattern, so that the token type is
checked in the constructor, LLParser and Verifier.

Some DirectX lit tests deliberately use token-like types in Phi or Select
instructions, while disabling the verifier. This change breaks all of them
because the check is in more places than just the verifier.

Assisted-By: AI Code Assistant

wip
DeltaFile
+9-1llvm/lib/IR/Instructions.cpp
+9-0llvm/test/Verifier/tokenlike2.ll
+5-0llvm/include/llvm/IR/Instructions.h
+2-1llvm/lib/IR/Verifier.cpp
+3-0llvm/lib/AsmParser/LLParser.cpp
+28-25 files

FreeBSD/ports 81001aa. MOVED, www Makefile

www/py-django42: Remove expired port

2026-08-31 www/py-django42: Django 4.2 is now in Extended Support, receives security fixes only and will reach End-Of-Life in April 2026. Upgrade to a later Django version. See https://www.djangoproject.com/download/
DeltaFile
+0-70www/py-django42/Makefile
+0-17www/py-django42/files/patch-pyproject.toml
+0-8www/py-django42/pkg-descr
+0-3www/py-django42/distinfo
+0-1www/Makefile
+1-0MOVED
+1-996 files

FreeBSD/ports 7f2ea36. MOVED, www Makefile

www/py-dj42-django-ranged-response: Remove expired port

2026-08-31 www/py-dj42-django-ranged-response: Serves as a transition only for www/seahub and requires Django 4.2, which has been end-of-life since April
DeltaFile
+0-27www/py-dj42-django-ranged-response/Makefile
+0-3www/py-dj42-django-ranged-response/pkg-descr
+0-3www/py-dj42-django-ranged-response/distinfo
+0-1www/Makefile
+1-0MOVED
+1-345 files

NetBSD/pkgsrc fm2wiwQdoc CHANGES-2026

   Updated devel/orc
VersionDeltaFile
1.5716+2-1doc/CHANGES-2026
+2-11 files

FreeBSD/ports 68641b2. MOVED, www Makefile

www/py-dj42-djangosaml2: Remove expired port

2026-08-31 www/py-dj42-djangosaml2: Serves as a transition only for www/seahub and requires Django 4.2, which has been end-of-life since April
DeltaFile
+0-29www/py-dj42-djangosaml2/Makefile
+0-4www/py-dj42-djangosaml2/pkg-descr
+0-3www/py-dj42-djangosaml2/distinfo
+0-1www/Makefile
+1-0MOVED
+1-375 files

NetBSD/pkgsrc I55F5qddevel/orc Makefile distinfo

   orc: updated to 0.4.43

   0.4.43

   - Add AVX512 support (Jorge Zapata)
   - neon: add divluw rule (used in GStreamer's compositor, videomixer, gaudieffects and alpha-blending code paths) (Jeongkeun Kim)
   - neon: add mulslq, mululq rules, shlq, shrsq, shruq (used in GStreamer's audio processing element) (Jeongkeun Kim)
   - orccodemem: Invalidate code chunks when recycling for QEMU (Jorge Zapata)
   - orcprogram-c: Allow negative constants (Carlos Falgueras García)
   - arm, neon: Split ARM and NEON logic into 32b and 64b (Carlos Falgueras García)
   - RISC-V: many fixes and enhancements, including some new rules (Felix Gong, Yao Zi, Brad Smith)
   - LoongArch: various fixes and enhancements (Jin Bo)
   - OpenBSD/FreeBSD improvements (Brad Smith)
   - Miscellaneous fixes (Brad Smith, Jorge Zapata)
   - ci fixes (Jorge Zapata, L. E. Segovia, Tim-Philipp Müller)
VersionDeltaFile
1.34+4-4devel/orc/distinfo
1.22+5-3devel/orc/PLIST
1.33+2-2devel/orc/Makefile
+11-93 files

FreeBSD/ports 2792267. MOVED, www Makefile

www/py-dj42-django-picklefield: Remove expired port

2026-08-31 www/py-dj42-django-picklefield: Serves as a transition only for www/seahub and requires Django 4.2, which has been end-of-life since April
DeltaFile
+0-30www/py-dj42-django-picklefield/Makefile
+0-6www/py-dj42-django-picklefield/pkg-descr
+0-3www/py-dj42-django-picklefield/distinfo
+0-1www/Makefile
+1-0MOVED
+1-405 files

FreeBSD/ports e4f2c55. MOVED, www Makefile

www/py-dj42-django-simple-captcha: Remove expired port

2026-08-31 www/py-dj42-django-simple-captcha: Serves as a transition only for www/seahub and requires Django 4.2, which has been end-of-life since April
DeltaFile
+0-31www/py-dj42-django-simple-captcha/Makefile
+0-3www/py-dj42-django-simple-captcha/distinfo
+0-2www/py-dj42-django-simple-captcha/pkg-descr
+0-1www/Makefile
+1-0MOVED
+1-375 files

FreeBSD/ports 472a6da. MOVED, www Makefile

www/py-dj42-django-webpack-loader: Remove expired port

2026-08-31 www/py-dj42-django-webpack-loader: Serves as a transition only for www/seahub and requires Django 4.2, which has been end-of-life since April
DeltaFile
+0-28www/py-dj42-django-webpack-loader/Makefile
+0-6www/py-dj42-django-webpack-loader/pkg-descr
+0-3www/py-dj42-django-webpack-loader/distinfo
+0-1www/Makefile
+1-0MOVED
+1-385 files

FreeBSD/ports e133d81. MOVED, www Makefile

www/py-dj42-django_statici18n: Remove expired port

2026-08-31 www/py-dj42-django_statici18n: Serves as a transition only for www/seahub and requires Django 4.2, which has been end-of-life since April
DeltaFile
+0-29www/py-dj42-django_statici18n/Makefile
+0-9www/py-dj42-django_statici18n/pkg-descr
+0-3www/py-dj42-django_statici18n/distinfo
+0-1www/Makefile
+1-0MOVED
+1-425 files

FreeBSD/ports 09d33cc. MOVED, www Makefile

www/py-dj42-djangorestframework: Remove expired port

2026-08-31 www/py-dj42-djangorestframework: Serves as a transition only for www/seahub and requires Django 4.2, which has been end-of-life since April
DeltaFile
+0-28www/py-dj42-djangorestframework/Makefile
+0-15www/py-dj42-djangorestframework/pkg-descr
+0-3www/py-dj42-djangorestframework/distinfo
+0-1www/Makefile
+1-0MOVED
+1-475 files

FreeBSD/ports 48dd231net-mgmt/seafile-server Makefile, net-mgmt/seafile-server/files patch-server_upload-file.c patch-controller_seafile-controller.c

net-mgmt/seafile-server: Remove expired port

2026-08-31 net-mgmt/seafile-server: The update to a newer version is more difficult than expected, and the current version of the web backend, www/seahub, only runs on Django 4.2
DeltaFile
+0-195net-mgmt/seafile-server/files/patch-lib_utils.c
+0-152net-mgmt/seafile-server/files/seafile.in
+0-124net-mgmt/seafile-server/Makefile
+0-116net-mgmt/seafile-server/files/patch-configure.ac
+0-114net-mgmt/seafile-server/files/patch-controller_seafile-controller.c
+0-71net-mgmt/seafile-server/files/patch-server_upload-file.c
+0-77215 files not shown
+1-98821 files

NetBSD/pkgsrc HvKbhZ0doc CHANGES-2026

   doc: Updated www/resterm to 1.5.1
VersionDeltaFile
1.5715+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc XN5et9lwww/resterm go-modules.mk Makefile

   resterm: Update to 1.5.1

   Fixed
   Failed streams keep their transcript
   Stream failures keep their original cause
   IPv6 redirects and limits

   Headless API note
VersionDeltaFile
1.38+3-3www/resterm/distinfo
1.42+1-1www/resterm/Makefile
1.29+0-0www/resterm/go-modules.mk
+4-43 files

FreeBSD/ports a1bd352security/node-sqlcipher Makefile distinfo

security/node-sqlcipher: Update to 4.0.3
DeltaFile
+5-5security/node-sqlcipher/distinfo
+1-1security/node-sqlcipher/Makefile
+6-62 files

FreeBSD/ports bf019e1net-im/libsignal-node Makefile Makefile.crates

net-im/libsignal-node: Update to 0.99.3
DeltaFile
+527-503net-im/libsignal-node/distinfo
+261-249net-im/libsignal-node/Makefile.crates
+1-1net-im/libsignal-node/Makefile
+789-7533 files

FreeBSD/ports a53c64bmultimedia/ringrtc Makefile distinfo, multimedia/ringrtc/files patch-build_config_compiler__cpu__abi.gn patch-third__party_abseil-cpp_absl_base_internal_sysinfo.cc

multimedia/ringrtc: Update to 2.70.2
DeltaFile
+63-60multimedia/ringrtc/files/patch-build_config_compiler_BUILD.gn
+47-47multimedia/ringrtc/distinfo
+81-2multimedia/ringrtc/files/patch-build_toolchain_gcc__toolchain.gni
+52-0multimedia/ringrtc/files/patch-third__party_abseil-cpp_absl_base_internal_sysinfo.cc
+22-19multimedia/ringrtc/Makefile
+38-0multimedia/ringrtc/files/patch-build_config_compiler__cpu__abi.gn
+303-12815 files not shown
+373-19521 files

FreeBSD/ports 8b24f54net-im/signal-desktop get_deps.sh distinfo, net-im/signal-desktop/files patch-pnpm-workspace.yaml pnpm-lock.yaml

net-im/signal-desktop: Update to 8.24.1
DeltaFile
+1,764-947net-im/signal-desktop/files/pnpm-lock.yaml
+6-7net-im/signal-desktop/Makefile
+5-5net-im/signal-desktop/distinfo
+2-2net-im/signal-desktop/files/patch-pnpm-workspace.yaml
+1-1net-im/signal-desktop/get_deps.sh
+1,778-9625 files