summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* net/nats-surveyor: Add new portJimmy Olgeni2025-09-064-0/+33
| | | | | | | | NATS Surveyor is a simplified monitoring tool for NATS infrastructure. It provides real-time observability and monitoring capabilities for NATS servers and clusters. WWW: https://github.com/nats-io/nats-surveyor
* textproc/otree: Update to 0.6.1Jimmy Olgeni2025-09-062-9/+26
|
* net/croc: Update to 10.2.4Jimmy Olgeni2025-09-062-9/+7
|
* sysutils/usermin: Update to 2.400Jimmy Olgeni2025-09-063-5/+12
|
* sysutils/webmin: Update to 2.500Jimmy Olgeni2025-09-063-10/+14
|
* audio/mac: Update to 11.43Jason E. Hale2025-09-062-4/+4
| | | | https://www.monkeysaudio.com/versionhistory.html
* deskutils/calibre: Update to 8.10.0Guido Falsi2025-09-064-70/+70
|
* science/cdf: Fix building with FlangGleb Popov2025-09-061-2/+7
|
* www/gallery-dl: update to 1.30.6Jan Beich2025-09-062-4/+4
| | | | | Changes: https://github.com/mikf/gallery-dl/releases/tag/v1.30.6 Reported by: GitHub (watch releases)
* lang/dotnet: Pull in upstream patchGleb Popov2025-09-062-0/+25
|
* net/chrony: fix "socket" test and re-enableMatthias Andree2025-09-062-11/+30
| | | | | | | | | | In the socket test, make the sockets blocking to avoid spurious test failures. Cherry-picked from upstream Git, with the actual diff body regenerated in the ports framework. Obtained from: Miroslav Lichvar (upstream maintainer) https://gitlab.com/chrony/chrony/-/commit/120bf44989391164c924e97d3142dc1352ab7970 https://listengine.tuxfamily.org/chrony.tuxfamily.org/chrony-users/2025/08/msg00024.html
* sysutils/iocage: Support Python 3.12Michael Gmelin2025-09-062-4/+7
| | | | | | | See also: https://github.com/freebsd/iocage/pull/90 PR: 288758 Reported by: Matthew Wener <matthew@wener.org>
* sysutils/slurm-wlm: Fix: TaskPlugin=task/pgid in slurm.conf fails on FreeBSD ↵Generic Rikka2025-09-064-2/+269
| | | | | | | | | | | | | | | | | | – plugin unavailable When setting TaskPlugin=task/pgid in slurm.conf, slurmd fails to start and reports that the task/pgid plugin is not available in the plugins directory. As far as I know, pgid is an important task plugin in Slurm, used to manage process groups. Its absence limits Slurm’s ability to manage tasks correctly on FreeBSD. Upstream bug report: https://support.schedmd.com/show_bug.cgi?id=23659 PR: 288668 Differential Revision: https://reviews.freebsd.org/D52143 MFH: 2025Q3
* security/openvpn: support DCO float notificationsMatthias Andree2025-09-067-1/+232
| | | | | | | | | | | | | | | | | | | | | | | | | The FreeBSD kernel added "if_ovpn: support floating clients" on main on 2025-07-28, and merged it to 14/stable on 2025-08-13. https://reviews.freebsd.org/D51468 https://cgit.freebsd.org/src/commit/?id=9c52600a5a150117b4396df3b868cf2516e1674c&h=main https://cgit.freebsd.org/src/commit/?h=stable/14&id=fc387ed68f3c7b0b8da9bab13492b7bbafecb5bf This adds a new notification from the kernel module to user space named OVPN_NOTIF_FLOAT, which OpenVPN 2.6.14 does not support. Backport support into OpenVPN 2.6. Reported by: Marek Zarychta <zarychtam@plan-b.pwste.edu.pl> Obtained from: Kristof Provost <kp@FreeBSD.org> Obtained from: Ralf Lici <ralf@mandelbit.com> - modified to avoid assert() in nvlist_to_sockaddr() in src/openvpn/dco_freebsd.c Obtained from: Gert Doering <gert@greenie.muc.de> Tested by: Marek Zarychta <zarychtam@plan-b.pwste.edu.pl> PR: 289303 MFH: 2025Q3 (suggestion after 10 days)
* security/vuls: Update to 0.34.0Palle Girgensohn2025-09-062-7/+6
| | | | Release notes: https://github.com/future-architect/vuls/releases/tag/v0.34.0
* www/sqlpage: Update to 0.37.0Palle Girgensohn2025-09-063-119/+130
| | | | Release notes: https://github.com/sqlpage/SQLPage/releases/tag/v0.37.0
* devel/py-maturin: Update to 1.9.4Kai Knoblich2025-09-063-5/+31
| | | | | | | | Changelogs since 1.9.1: https://github.com/PyO3/maturin/releases/tag/v1.9.4 https://github.com/PyO3/maturin/releases/tag/v1.9.3 https://github.com/PyO3/maturin/releases/tag/v1.9.2
* graphics/ipe: Update version 7.2.26=>7.2.27Muhammad Moinur Rahman2025-09-063-8/+12
| | | | Changelog: https://github.com/otfried/ipe/releases/tag/v7.2.27
* devel/py-tox: Update version 4.30.0=>4.30.1Muhammad Moinur Rahman2025-09-062-4/+4
| | | | Changelog: https://github.com/tox-dev/tox/releases/tag/4.30.1
* devel/cirrus-cli: Update version 0.152.0=>0.153.0Muhammad Moinur Rahman2025-09-062-6/+6
| | | | Changelog: https://github.com/cirruslabs/cirrus-cli/releases/tag/v0.153.0
* sysutils/slurm-wlm: Fix slurmd and slurmstepd crash due to missing sockaddr ↵Generic Rikka2025-09-069-28/+310
| | | | | | | | | | | | | | | | | | length handling in bind()/connect() After some time the daemons lose connection. Submitting tasks via srun fails, and slurmd eventually crashes with a segmentation fault. The root cause appears to be that several bind() and connect() calls do not set the sockaddr length (sun_len, sin_len, sin6_len) correctly on FreeBSD. Without this, sockets are initialized improperly and result in runtime errors. Upstream bugreport: https://support.schedmd.com/show_bug.cgi?id=23658 PR: 288983 Co-authored-by: Vladimir Druzenko <vvd@FreeBSD.org> MFH: 2025Q3
* net/liferea: fix crashes when processing comment feedsChristoph Moench-Tegeder2025-09-062-0/+23
| | | | this is a quick fix for a regression in 1.16.3
* *: Bump PORTREVISION of graphics/openexr usersMatthias Andree2025-09-0649-46/+49
| | | | (including those where openexr is only an option)
* graphics/openexr*: update to v3.4.0Matthias Andree2025-09-065-12/+15
| | | | | | | | | | | Adds lossless compression with High Throughput JPEG-2000 (HTJ2K) encoding, which adds an OpenJPH dependency. The OneAPI TBB option isn't provided because it massively increases self-test time on FreeBSD 14.3-amd64 and I don't see how production use would be different. This is with an AMD Ryzen processor. ChangeLog: https://github.com/AcademySoftwareFoundation/openexr/releases/tag/v3.4.0
* graphics/hs-tart: Update 0.3 => 0.4Tiago Gasiba2025-09-062-57/+45
| | | | | | | | | | | | | Changelogs: - https://hackage.haskell.org/package/tart-0.4/changelog + Add second WWW for Hackage page for the program - Remove Github stuff: USES=cabal already implies hackage.haskell.org as MASTER_SITES - Remove unneeded USE_LOCALE PR: 289256 Approved by: yuri@ (Mentor)
* cad/brlcad: fix pkg-plistPiotr Kubaj2025-09-062-19/+17
| | | | | | | | | | | | | | | | | | | | | | | pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libanalyze.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libbg.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libbn.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libbrep.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libbrlcad.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libbu.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libdm.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libfft.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libgcv.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libged.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libicv.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libnmg.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/liboptical.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libpc.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libpkg.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/librt.pc:No such file or directory pkg-static: Unable to access file /wrkdirs/usr/ports/cad/brlcad/work/stage/usr/local/brlcad/libdata/pkgconfig/libwdb.pc:No such file or directory Additionally: - - REINPLACE_CMD ran, but did not modify file contents: CMakeLists.txt
* audio/py-pyradio: Update to 0.9.3.11.16Nicola Vitale2025-09-063-4/+16
| | | | | | | | - Add files/patch-pyradio_main.py ( see https://github.com/coderholic/pyradio/issues/301 ) Release changes: https://github.com/coderholic/pyradio/releases/tag/0.9.3.11.16 Reported by: Spiros Georgaras <notifications@github.com>
* devel/R-cran-sfsmisc: Update to 1.1-22TAKATSU Tomonari2025-09-062-4/+4
| | | | Reported by: portscout
* textproc/py-smile: add port: Emoji pickerHiroki Tagato2025-09-065-0/+130
| | | | | | Smile is a simple emoji picker for linux with custom tags support. WWW: https://mijorus.it/projects/smile/
* audio/mac: Chase upstream rerollJason E. Hale2025-09-062-14/+3
|
* devel/addlicense: New port: Add license information to source code filesYusuf Yaman2025-09-064-0/+31
| | | | | | | | | | | | | | The program ensures source code files have copyright license headers by scanning directory patterns recursively. It modifies all source files in place and avoids adding a license header to any file that already has one. WWW: https://github.com/google/addlicense \ https://pkg.go.dev/github.com/google/addlicense PR: 289328 Reported by: Yusuf Yaman <nxjoseph@protonmail.com> (new maintainer)
* devel/py-pytest-timeout: Update to 2.4.0Yuri Victorovich2025-09-062-6/+6
| | | | | PR: 289312 Submitted by: yuri
* audio/sonicradio: Update to 0.8.4Nicola Vitale2025-09-062-7/+9
| | | | | | - Update list of dependecies Reported by: "github-actions[bot]" <notifications@github.com>
* devel/gum: update to 0.16.2Dave Turner2025-09-062-7/+6
| | | | | | | Changelog: https://github.com/charmbracelet/gum/releases/tag/v0.16.2 PR: 289329 Reported by: Dave Turner <dave@bitboss.ca> (maintainer)
* textproc/csview: update to 1.3.4Ruben van Staveren2025-09-062-95/+71
| | | | | | | Changelog: https://github.com/wfxr/csview/blob/v1.3.4/CHANGELOG.md PR: 289251 Reported by: Ruben van Staveren <ruben@verweg.com> (maintainer)
* devel/camp: update 2025.03.0 → 2025.09.0Yuri Victorovich2025-09-062-5/+5
| | | | Reported by: portscout
* science/py-ase: update 3.23.0 → 3.26.0Yuri Victorovich2025-09-063-8/+21
|
* science/py-kimpy: update 2.1.1 → 2.1.3Yuri Victorovich2025-09-062-5/+8
|
* science/kim-api: update 2.3.0 → 2.4.1Yuri Victorovich2025-09-063-7/+8
|
* devel/py-janus: update 1.1.0 → 2.0.0Yuri Victorovich2025-09-062-5/+4
|
* devel/py-junitparser: update 3.2.0 → 4.0.2Yuri Victorovich2025-09-062-5/+8
|
* math/bliss: Produce shared library instead of the static oneYuri Victorovich2025-09-065-8/+28
|
* games/crossfire-client: update to 1.75.5Kevin Zheng2025-09-062-5/+6
| | | | | | | | | | | Changelog: ** Fixed ** Fix possible hang on connect in v1.75.4 release https://sourceforge.net/projects/crossfire/files/crossfire-client/1.75.5/#changes-with-this-release PR: 289309 Reported by: Kevin Zheng <kevinz5000@gmail.com> (maintainer)
* devel/glab: update to 1.68.0Matthias Fechner2025-09-063-7/+10
| | | | Changes: https://gitlab.com/gitlab-org/cli/-/releases
* math/R-cran-spdep: Update to 1.4-1TAKATSU Tomonari2025-09-062-4/+4
| | | | Reported by: portscout
* audio/mac: Update to 11.42Jason E. Hale2025-09-053-19/+9
| | | | https://www.monkeysaudio.com/versionhistory.html
* java/eclipse: Update distinfo after upstream tarball rerollVladimir Druzenko2025-09-062-5/+6
| | | | | | PR: 289316 Reported by: Ale <discipline@tiscali.it> Approved by: Norbert Grundmann <ngrundmann@gmx.de> (maintainer, implicit)
* graphics/mesa-devel: update to 25.2.b.2843Jan Beich2025-09-062-5/+5
| | | | Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/b4bac915f0d...29fb897c0a0
* www/filebrowser-quantum: Update to 0.8.4-betaJesús Daniel Colmenares Oviedo2025-09-052-9/+8
| | | | | ChangeLog: https://github.com/gtsteffaniak/filebrowser/releases/tag/v0.8.4-beta
* deskutils/readur: Update to 2.6.1Jesús Daniel Colmenares Oviedo2025-09-053-88/+114
| | | | | | | ChangeLogs: - https://github.com/readur/readur/releases/tag/v2.6.0 - https://github.com/readur/readur/releases/tag/v2.6.1