FreeBSD/ports 099a9a5devel/jenkins distinfo Makefile

devel/jenkins: Update to 2.560

Sponsored by:   The FreeBSD Foundation
DeltaFile
+3-3devel/jenkins/distinfo
+1-1devel/jenkins/Makefile
+4-42 files

FreeBSD/ports 7ab727ctextproc/goldendict-ng distinfo Makefile

textproc/goldendict-ng: Update to 26.5.1

ChangeLog:
https://github.com/xiaoyifang/goldendict-ng/releases/tag/v26.5.1-Release.9973c461
DeltaFile
+3-3textproc/goldendict-ng/distinfo
+2-3textproc/goldendict-ng/Makefile
+5-62 files

FreeBSD/ports 4af2752shells/xonsh distinfo Makefile, shells/xonsh/files patch-xonsh_platform.py

shells/xonsh: Update to 0.23.0

- Remove unneeded patch

ChangeLog: https://github.com/xonsh/xonsh/releases/tag/0.23.0
DeltaFile
+0-11shells/xonsh/files/patch-xonsh_platform.py
+3-3shells/xonsh/distinfo
+4-2shells/xonsh/Makefile
+7-163 files

FreeBSD/ports bed9094lang/gcc15-devel distinfo Makefile

lang/gcc15-devel: Update to 15.2.1.s20260418
DeltaFile
+3-3lang/gcc15-devel/distinfo
+1-1lang/gcc15-devel/Makefile
+4-42 files

FreeBSD/ports b13cf2clang/gcc16-devel distinfo Makefile

lang/gcc16-devel: Update to 16.0.1.s20260419
DeltaFile
+3-3lang/gcc16-devel/distinfo
+1-1lang/gcc16-devel/Makefile
+4-42 files

FreeBSD/ports 78ddc6clang/gcc14-devel distinfo Makefile

lang/gcc14-devel: Update to 14.3.1.s20260417
DeltaFile
+3-3lang/gcc14-devel/distinfo
+1-1lang/gcc14-devel/Makefile
+4-42 files

FreeBSD/ports 1f199d7lang/gcc13-devel distinfo Makefile

lang/gcc13-devel: Update to 13.4.1.s20260416
DeltaFile
+3-3lang/gcc13-devel/distinfo
+1-1lang/gcc13-devel/Makefile
+4-42 files

FreeBSD/src adb16cdsys/contrib/dev/rtw89 core.c

rtw89: fix mismerge

Due to FreeBSD-specific code it seems a code update was not applied
to the FreeBSD part during the v6.17 driver update.
Add the missing lines.

Sponsored by:   The FreeBSD Foundation
MFC after:      3 days
Fixes:          b35044b38f74c
DeltaFile
+2-0sys/contrib/dev/rtw89/core.c
+2-01 files

FreeBSD/src c1df496share/examples Makefile, share/examples/sound mmap.c

sound examples: Add mmap example

This example opens separate OSS capture and playback channels in mmap
mode, places them into a sync group, and starts them together so both
ring buffers advance on the same device timeline. It then monitors the
capture mmap pointer with SNDCTL_DSP_GETIPTR, converts that pointer into
monotonic absolute progress using the reported block count, and copies
newly recorded audio from the input ring to the matching region of the
output ring.

The main loop is driven by an absolute monotonic frame clock rather than
a fixed relative usleep delay. Wakeups are scheduled from the sample
rate using a small frame step similar to the SOSSO timing model, while
the audio path itself stays intentionally simple: just copy input to
output, with no explicit xrun recovery or processing beyond ring
wraparound handling.

MFC after:      1 week
Reviewed by:    christos

    [3 lines not shown]
DeltaFile
+297-0share/examples/sound/mmap.c
+1-0share/examples/Makefile
+298-02 files

FreeBSD/src c8cd633sys/dev/dpaa2 dpaa2_ni.c dpaa2_rc.c

dpaa2: ni: add more stats and link information

In addition to the locally generated statistics counters, dpaa2 ni
provides a larger set of counters than we currently export via
sysctl.  Add (most of) the missing counters and descriptions.
Around Page 3/4 there are some things left to do if we want.
Also the manual was not clear on the descriptions of 3/0 and 3/1.

The second half of the change adds another sysctl note which exports
the link-state, speed, and capabilities set as a text-blob.  This is
especially interesting in case the "ni" stops passing packets.
From what I have found in that case the (internal) link state of the
ni goes DOWN but we do not see an interrupt for a link-state change.

Being able to diagnose the state helps to (manually) fix it for now
by changing the media status to 10BaseT or none and then back to auto.
That usually brings the internal link state back UP.

MFC after:      3 days

    [3 lines not shown]
DeltaFile
+113-16sys/dev/dpaa2/dpaa2_ni.c
+5-4sys/dev/dpaa2/dpaa2_rc.c
+2-3sys/dev/dpaa2/dpaa2_ni.h
+120-233 files

FreeBSD/ports f2b7d8cnet-mgmt/telegraf distinfo Makefile

net-mgmt/telegraf: Update to 1.38.3

Release notes:  https://github.com/influxdata/telegraf/releases/tag/v1.38.3
DeltaFile
+5-5net-mgmt/telegraf/distinfo
+1-2net-mgmt/telegraf/Makefile
+6-72 files

FreeBSD/src 4029e76usr.sbin/bsdinstall bsdinstall.8

bsdinstall.8: Document DISTRIBUTIONS defaults correctly

Some targets override the default value of DISTRIBUTIONS.
Document that in the manual page.

Reported by:    Nia Alarie <nia at NetBSD.org>
Reviewed by:    jlduran
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D56528
DeltaFile
+22-2usr.sbin/bsdinstall/bsdinstall.8
+22-21 files

FreeBSD/ports 9ed81dctextproc/xan distinfo Makefile.crates

textproc/xan: Update to 0.57.1

Changelog: https://github.com/medialab/xan/blob/0.57.1/CHANGELOG.md

Reported by:    GitHub (watch releases)
DeltaFile
+73-9textproc/xan/distinfo
+35-3textproc/xan/Makefile.crates
+1-2textproc/xan/Makefile
+109-143 files

FreeBSD/src 43caeeasys/netinet ip_fastfwd.c, sys/netinet6 ip6_fastfwd.c

routing: Make ip[6]_tryforward() FIB-aware for local traffic

`ip_tryforward()` and `ip6_tryforward()` checks whether the destination
address is local or not without considering if it belongs to the current FIB.
If the destination is local but not in our FIB, forward it instead
of returning it to ip_input().

PR:             292319
Reviewed by:    zlei
MFC after:      1 week
MFC to:         stable/15
Differential Revision: https://reviews.freebsd.org/D56353

(cherry picked from commit bf41d86df0d9dc4a1342c579f4e72db3c66b3443)
DeltaFile
+2-2sys/netinet/ip_fastfwd.c
+1-1sys/netinet6/ip6_fastfwd.c
+3-32 files

FreeBSD/ports 15554f0audio/noctavox distinfo Makefile.crates

audio/noctavox: Update to 0.2.6

- Update list of lib dependencies

ChangeLog:      https://github.com/Jaxx497/NoctaVox/releases/tag/v0.2.6
Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+147-55audio/noctavox/distinfo
+72-26audio/noctavox/Makefile.crates
+5-6audio/noctavox/Makefile
+4-4audio/noctavox/pkg-plist
+228-914 files

FreeBSD/ports 752f8c4lang/algol68g distinfo Makefile

lang/algol68g: update the port to version 3.11.3

- Improves STRING handling
- Adds environment enquiry ``eof char''
- New operators CEIL, FIX, FLOOR, FRAC, and TRUNC
- Minor fixes and documentation updates
DeltaFile
+3-3lang/algol68g/distinfo
+1-2lang/algol68g/Makefile
+4-52 files

FreeBSD/ports 2410e0bmisc/ytree distinfo Makefile

misc/ytree: Update to 2.11
DeltaFile
+3-3misc/ytree/distinfo
+1-1misc/ytree/Makefile
+4-42 files

FreeBSD/ports 038c537x11/waveterm Makefile

x11/waveterm: Bump port revision after electron41 update (2604dc1239b6)
DeltaFile
+1-0x11/waveterm/Makefile
+1-01 files

FreeBSD/ports 2604dc1devel/electron41 distinfo Makefile, devel/electron41/files patch-electron_shell_browser_native__window__views.cc patch-electron_spec_api-desktop-capturer-spec.ts

devel/electron41: Update to 41.2.1

Changelog: https://github.com/electron/electron/releases/tag/v41.2.1

Reported by:    GitHub (watch releases)
DeltaFile
+17-17devel/electron41/files/patch-electron_shell_browser_native__window__views.cc
+16-7devel/electron41/files/patch-electron_spec_api-desktop-capturer-spec.ts
+13-9devel/electron41/distinfo
+16-4devel/electron41/Makefile
+9-9devel/electron41/files/patch-electron_shell_browser_api_electron__api__app.cc
+7-7devel/electron41/files/patch-electron_BUILD.gn
+78-5317 files not shown
+136-10223 files

FreeBSD/ports 2a85483lang/erlang-runtime27 distinfo Makefile

lang/erlang-runtime27: Update to 27.3.4.10
DeltaFile
+3-3lang/erlang-runtime27/distinfo
+1-3lang/erlang-runtime27/Makefile
+4-62 files

FreeBSD/ports 9e467dadevel Makefile, devel/lazyworktree Makefile distinfo

devel/lazyworktree: New port: TUI for managing Git worktrees
DeltaFile
+20-0devel/lazyworktree/Makefile
+5-0devel/lazyworktree/distinfo
+3-0devel/lazyworktree/pkg-descr
+1-0devel/Makefile
+29-04 files

FreeBSD/ports e1e9900sysutils/rucola distinfo Makefile.crates

sysutils/rucola: Update to 0.9.0

ChangeLog:      https://github.com/Linus-Mussmaecher/rucola/releases/tag/v0.9.0

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+563-357sysutils/rucola/distinfo
+280-177sysutils/rucola/Makefile.crates
+2-2sysutils/rucola/Makefile
+845-5363 files

FreeBSD/ports 11051fedatabases/sabiql distinfo Makefile.crates

databases/sabiql: Update to 1.11.0

ChangeLog:

  - https://github.com/riii111/sabiql/releases/tag/v1.10.0
  - https://github.com/riii111/sabiql/releases/tag/v1.11.0

Reported by:    riii111 <notifications at github.com>
DeltaFile
+55-57databases/sabiql/distinfo
+26-27databases/sabiql/Makefile.crates
+1-1databases/sabiql/Makefile
+82-853 files

FreeBSD/ports 2a7f7d9sysutils/mdfried distinfo Makefile.crates

sysutils/mdfried: Update to 0.19.4

Reported by:    Benjamin Grosse <notifications at github.com>
DeltaFile
+11-3sysutils/mdfried/distinfo
+4-0sysutils/mdfried/Makefile.crates
+1-1sysutils/mdfried/Makefile
+16-43 files

FreeBSD/ports 84fd787www/moodle50 distinfo Makefile

www/moodle50: Update to 5.0.7
DeltaFile
+3-3www/moodle50/distinfo
+1-1www/moodle50/Makefile
+4-42 files

FreeBSD/ports b4005e5www/moodle45 distinfo Makefile

www/moodle45: Update to 4.5.11
DeltaFile
+3-3www/moodle45/distinfo
+1-1www/moodle45/Makefile
+4-42 files

FreeBSD/ports ad21ebdwww/moodle51 distinfo Makefile

www/moodle51: Update to 5.1.4
DeltaFile
+3-3www/moodle51/distinfo
+2-2www/moodle51/Makefile
+5-52 files

FreeBSD/ports 00fb8dawww Makefile, www/moodle52 Makefile pkg-descr

www/moodle52: New port, copied from www/moodle51

Moodle is a course management system (CMS) - a free, Open Source software
package designed using sound pedagogical principles, to help educators
create effective online learning communities. You can use it on any
computer you have handy (including webhosts), yet it can scale from a
single-teacher site to a 40,000-student University.
DeltaFile
+60-0www/moodle52/Makefile
+59-0www/moodle52/files/pkg-message.in
+5-0www/moodle52/pkg-descr
+3-0www/moodle52/distinfo
+1-0www/Makefile
+128-05 files

FreeBSD/ports 56ee76ddevel/py-serializable Makefile distinfo

devel/py-serializable: update 0.4.1 → 1.1.0
DeltaFile
+12-4devel/py-serializable/Makefile
+3-3devel/py-serializable/distinfo
+15-72 files

FreeBSD/ports 1d496b0science/v_sim pkg-plist Makefile, science/v_sim/files patch-configure.ac patch-lib_plug-ins_abinit_ab__symmetry.c

science/v_sim: update 3.9.0 → 3.9.1
DeltaFile
+19-46science/v_sim/files/patch-configure.ac
+0-59science/v_sim/files/patch-lib_plug-ins_abinit_ab__symmetry.c
+20-20science/v_sim/pkg-plist
+0-22science/v_sim/files/patch-src_coreTools_atoms__yaml.c
+13-0science/v_sim/files/patch-lib_plug-ins_msym_Makefile.am
+7-5science/v_sim/Makefile
+59-1523 files not shown
+66-1599 files