778,533 commits found in 67 milliseconds
databases/R-cran-dbplyr: Fix tests
- Added pre-test target to download one test package in-place.
- Added custom do-test target to pass tests successfully.
PR: 296128 , 296134, 296133
Co-authored-by: Nuno Teixeira <eduardo at FreeBSD.org>
Approved by: osa, vvd (Mentors, implicit)
games/rocksndiamonds: Update to 4.4.2.2
ChangeLog: https://www.artsoft.org/2026/06/20/rocksndiamonds-4-4-2-2-released/
devel/cbmc: fix build with older llvm
deskutils/qownnotes: update QOwnNotes to version 26.6.7.
graphics/py-visvis: Add backends and switch to Qt6
The PySide-Qt6 backend has been added, so users can now choose to use
PyQt and/or PySide, or neither.
PR: 296093
sysutils/ocijail: Update to 0.6.0
security/vuxml: Fix month error on latest MariaDB entry
science/csvtk: Update to 0.37.0
A few fixes and enhancements
Changes: https://github.com/shenwei356/csvtk/releases
Reported by: portscout
devel/gitea-act_runner: Update version 0.2.13=>0.3.0
Changelog: https://gitea.com/gitea/act_runner/releases/tag/v0.3.0
x11/py-pyscreenshot: Update version 0.5.1=>0.6
Changelog: https://github.com/ponty/pyscreenshot/releases/tag/0.6
devel/py-pytest-env: Update version 0.8.0=>0.8.1
Changelog: https://github.com/pytest-dev/pytest-env/releases/tag/0.8.1
devel/rubygem-p4ruby: Update version 2024.1.2660526 =>2024.2.2682777
Changelog: https://github.com/perforce/p4ruby/releases/tag/2024.2.0
www/py-praw: Update version 8.0.0=>8.0.1
Changelog: https://github.com/praw-dev/praw/releases/tag/v8.0.1
dns/cascade: Update version 67bce3457 =>f6538ea94
This is equivalent to 0.1.0-beta3
Changelog:
https://github.com/NLnetLabs/cascade/compare/v0.1.0-beta2...v0.1.0-beta3
devel/clojure-cider: Update version 1.22.0=>1.22.2
Changelog: https://github.com/clojure-emacs/cider/releases/tag/v1.22.2
x11-wm/leftwm: Return to pool
textproc/redisearch2: Update version 2.10.2=>2.10.3
- Unbundle cpu_features [1]
Changelog: https://github.com/RediSearch/RediSearch/releases/tag/v2.10.3
Reported by: fuz [1]
Mk/bsd.sites.mk: Remove stale mirrors
versaweb.dl.sourceforge.net is no longer resolvable so remove the stale
entry
Approved by: portmgr (blanket)
textproc/redisearch28: Update version 2.8.2=>2.8.3
- Unbundle cpu_features [1]
Changelog: https://github.com/RediSearch/RediSearch/releases/tag/v2.8.3
Reported by: fuz [1]
devel/cvise: make it build with DEFAULT_VERSIONS+=llvm=21
Upstream cvise added support for building against llvm 21 in
<https://github.com/marxin/cvise/commit/68262f7>. Add it as a
patch-llvm-21 file.
PR: 295857
MFH: 2026Q2
textproc/redisearch26: Update version 2.6.2=>2.6.3
- Unbundle cpu_features [1]
Changelog: https://github.com/RediSearch/RediSearch/releases/tag/v2.6.3
Reported by: fuz [1]
textproc/redisearch24: Update version 2.4.3=>2.4.4
- Unnbundle cpu_features [1]
Changelog: https://github.com/RediSearch/RediSearch/releases/tag/v2.4.4
Reported by: fux [1]
security/vault: Update version 2.0.2=>2.0.3
Changelog: https://github.com/hashicorp/vault/releases/tag/v2.0.3
net/py-zeep: Update version 4.3.2=>4.3.3
- Optionize DOCS
Changelog: https://github.com/mvantellingen/python-zeep/releases/tag/4.3.3
databases/clickhouse-devel: Update version 26.2.6.27=>26.2.7.17
Changelog: https://github.com/ClickHouse/ClickHouse/releases/tag/v26.2.7.17-stable
finance/py-stripe: Update version 4.1.0=>4.2.0
Changelog: https://github.com/stripe/stripe-python/releases/tag/v4.2.0
databases/freetds-devel: Update version 1.5.399=>1.5.400
databases/clickhouse: Update version 26.3.1.896=>26.3.2.3
Changelog: https://github.com/ClickHouse/ClickHouse/releases/tag/v26.3.2.3-lts
www/gohugo: Update to 0.163.3
ChangeLog: https://github.com/gohugoio/hugo/releases/tag/v0.163.3
* markup/highlight: Escape lang in default code block rendering
* parser/pageparser: Preserve non-ASCII whitespace after e.g. summary divider
* resources: Support babel/postcss config variants
* hugolib: Fix page/section name collision regression
FreeBSD /ports 7be98db — net-im/psi Makefile distinfo, net-im/psi/files patch-iris_src_xmpp_xmpp-im_types.cpp patch-iris_src_xmpp_xmpp-im_xmpp__status.h net-im/psi: try to unbreak the build against Clang 21.1.8
Casting integers to enums outside of the valid range of the
enum is UB in C++17 and apparently no longer tolerated by
modern Clang even for C++11 code. Replace invalidAlgo (255)
with optional<T>-based approach using the C++11-compatible
Sy Brand's template implementation; std::optional is not an
option (pun intended) in this case because this code won't
compile in C++17 mode which it requires.
Obtained from: upstream (psi-im/iris commit 0d35992 )
Reported by: pkg-fallout