aboutsummaryrefslogtreecommitdiff
path: root/accessibility
Commit message (Collapse)AuthorAgeFilesLines
* accessibility/py-atspi: update to 2.58.2Olivier Duchateau36 hours2-6/+5
| | | | | | | | Update to 2.58.2 NO_ARCH= yes (truckman) PR: 293976
* accessibility/onboard: new portOlivier Duchateau7 days16-0/+2602
| | | | | | | | | | | | | | | | Add accessibility/onboard On-screen Keyboard with macros, easy layout creation and word suggestion. This on-screen keyboard can be useful for tablet PC users, as well as for mobility impaired users. Apply patch from Yusuf Yaman <nxjoseph@freebsd.org>: I have encountered a problem when trying to launch onboard-settings from the app itself and it had been solved by the diff below: Pet portlint and portclippy (truckman) PR: 291496
* lang/rust: Bump revisions after 1.94.0Mikael Urankar7 days3-3/+3
| | | | PR: 293615
* accessibility/hyprsunset: fix build with libc++ 21Dimitry Andric10 days1-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | With libc++ 21 science/py-tensorflow fails to build, with errors similar to: /wrkdirs/usr/ports/accessibility/hyprsunset/work/hyprsunset-0.3.3/src/Hyprsunset.cpp:300:10: error: no member named 'sort' in namespace 'std' 300 | std::sort(profiles.begin(), profiles.end(), [](const auto& a, const auto& b) { | ^~~~ and: /wrkdirs/usr/ports/accessibility/hyprsunset/work/hyprsunset-0.3.3/src/Hyprsunset.cpp:329:29: error: no member named 'zoned_time' in namespace 'std::chrono' 329 | auto now = std::chrono::zoned_time(std::chrono::current_zone(), std::chrono::system_clock::now()).get_local_time(); | ^~~~~~~~~~ The former is because the header <algorithm> isn't included. The latter is because libc++ in FreeBSD doesn't have std::chrono::zoned_time support yet, but the program checks for the libc++ specific macro _LIBCPP_HAS_NO_TIME_ZONE_DATABASE. In libc++ 21, most of the "_LIBCPP_HAS_NO_xxx" macros have been replaced by 'positive' variants. In this case _LIBCPP_HAS_TIME_ZONE_DATABASE is now applicable. PR: 293811 Approved by: tagattie (maintainer) MFH: 2026Q1
* accessibility/at-spi2-core: update to 2.56.8Olivier Duchateau2026-03-153-6/+6
| | | | PR: 293805
* */*: bump PORTREVISION for accessibility/py-atspiDon Lewis2026-03-152-1/+2
| | | | | | | Bump PORTREVISION for accessibility/py-atspi BUILD_DEPENDS update to force rebuild and reinstall. PR: 289797
* accessibility/py-atspi: update to 2.58.1Olivier Duchateau2026-03-153-58/+9
| | | | | | | | | | | | Update to 2.58.1 Switch to meson build system Remove CONFLICTS line Make portclippy happy PR: 289797
* devel/py-pyxdg: bump RUN_DEPENDS consumers after renameCharlie Li2026-03-111-0/+1
|
* devel/py-xdg: rename to devel/py-pyxdg to match Python package nameCharlie Li2026-03-113-4/+4
| | | | | | While here: - switch to USE_PYTHON=pep517 - pull in upstream commits addressing Python 3.12, 3.14, 3.15 compat
* accessibility/rubygem-atk: Update to 4.3.5Po-Chuan Hsieh2026-03-092-4/+4
| | | | | Changes: https://github.com/ruby-gnome/ruby-gnome/releases https://github.com/ruby-gnome/ruby-gnome/blob/main/NEWS.md
* various: Bump ports for Go 1.25.8Adam Weinberger2026-03-061-1/+1
|
* KDE: Update KDE Gear to 25.12.3Max Brazhnikov2026-03-053-9/+9
| | | | Announcement: https://kde.org/announcements/gear/25.12.3/
* KDE: Update KDE Gear to 25.12.2Max Brazhnikov2026-02-133-9/+9
| | | | Announcement: https://kde.org/announcements/gear/25.12.2/
* various: Bump ports for Go default 1.24->1.25Adam Weinberger2026-02-111-1/+1
|
* Qt6: Update to 6.10.2Jason E. Hale2026-02-081-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | January 29, 2026 by Jani Heikkinen Qt 6.10.2 is now available for download. As a patch release, Qt 6.10.2 doesn’t introduce new features, but it delivers around 300 bug fix, security improvements, and quality enhancements on top of Qt 6.10.1. For a full overview of the most notable changes, take a look at the Qt 6.10.2 release notes. Announcement: https://www.qt.io/blog/qt-6.10.2-released Release notes: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.10.2/release-note.md FreeBSD ports changes: devel/qt6-base: - Disable the reduced_relocations feature. Prior to Qt 6.10.0, this was only enabled if the compiler was GCC, but we are seeing crashes in certain ports such as misc/bibletime, multimedia/obs-studio, and net-p2p/qbittorrent. [1] - Rebase patches graphics/qt6-wayland: - Add a pre-configure check to test if devel/qt6-base was built with the WAYLAND option. This module cannot be built if the WAYLAND option is disabled in devel/qt6-base. [2] www/qt6-webengine: - Patched with security patches up to Chromium version: 144.0.7559.109 - Define NODEJS_EXECUTEABLE in the configure environment after [3]. This is forward porting for the post-release security rollup and not part of the official release. Future releases [3][4] will likely require this. - Remove upstreamed patches [3] https://code.qt.io/cgit/qt/qtwebengine-chromium.git/commit/?h=134-based&id=cf510ebd4e870eb24fb5bc1d1ddcc5442247672d [4] https://code.qt.io/cgit/qt/qtwebengine-chromium.git/commit/?h=140-based&id=aab0f6f0928e7e4f73832abba9a00b7946b7e459 x11-toolkits/qt6-declarative - Remove upsteamed patches The Qt python bindings have also been updated along with their respective tools. PySide6: Update to 6.10.2 PyQt6: Update to 6.10.2 PR: 292376 [1], 292273 [2] Reported by: yuri [1], jbo [2] MFH: 2026Q1 Security: 73ff246b-04b2-11f1-84fc-4ccc6adda413
* various: Bump Go ports for 1.24.13Adam Weinberger2026-02-051-1/+1
|
* lang/rust: Bump revisions after 1.93.0Mikael Urankar2026-01-283-2/+3
| | | | PR: 292360
* accessibility/accerciser: update to 3.48.0Olivier Duchateau2026-01-263-11/+33
| | | | | | | | Update accerciser to version 3.48.0. Trim USE_GNOME=. (truckman) PR: 290511
* various: Bump Go ports for 1.24.12Adam Weinberger2026-01-161-1/+1
|
* KDE: Update KDE Gear to 25.12.1Max Brazhnikov2026-01-143-9/+9
| | | | | | | | | | | | Announcement: https://kde.org/announcements/gear/25.12.1/ Ports changes: multimedia/kamoso: - Drop unused dependency net/mailcommon: - Override KDE_APPLICATIONS_SHLIB_VER
* accessibility/accesskit-c: add 0.17Olivier Duchateau2026-01-056-0/+424
| | | | | | | | Note that this is not the latest upstream version. This specific version is required for an optional x11-toolkits/gtk40 feature in the next update. PR: 292048
* accessibility/at-spi2-core: update to 2.56.7Olivier Duchateau2025-12-283-5/+5
| | | | PR: 291899
* accessibility/at-spi2-core: Fix make test with USES=dbus-testingGleb Popov2025-12-281-1/+1
|
* Qt6: Update to 6.10.1Jason E. Hale2025-12-192-4/+4
| | | | | | | | | | I'm not giving the usual fanfare. This has been an absolute slog. Ports changes: qt6-base: Added WAYLAND option. This is congruent with the X11 option. We really don't recommend disabling this option, but it is available for advanced users who don't want wayland for whatever reason.
* lang/rust: Bump revisions after 1.92.0Mikael Urankar2025-12-162-2/+2
| | | | PR: 291582
* KDE: Update KDE Gear to 25.12.0Max Brazhnikov2025-12-123-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Announcement: https://kde.org/announcements/gear/25.12.0/ Ports changes: deskutils/itinerary: - Require QCoro6 deskutils/kdeconnect-kde: - Regenerate patches devel/kpublictransport: - Require QtLocation editors/kate: - Fix shebang math/rocs: - Switch to Qt6/KF6 multimedia/kamoso: - Require KF6KirigamiAddons multimedia/kdenlive: - Require KDDockWidgets science/step: - Remove stale patch
* accessibility/rubygem-atk: Update to 4.3.4Po-Chuan Hsieh2025-12-092-4/+4
| | | | | Changes: https://github.com/ruby-gnome/ruby-gnome/releases https://github.com/ruby-gnome/ruby-gnome/blob/main/NEWS.md
* */*: Bump port revision after hyprutils shlib version bump (35fa8b23267b)Hiroki Tagato2025-12-091-0/+1
|
* various: Bump Go ports for 1.24.11Adam Weinberger2025-12-031-1/+1
|
* accessibility/gammy: Remove expired portRene Ladan2025-12-014-38/+0
| | | | 2025-11-30 accessibility/gammy
* accessibility/feedbackd: simplify MESON_ARGS after 5cf2c031f53eJan Beich2025-11-241-1/+1
|
* Qt5: Update to 5.15.18Jason E. Hale2025-11-131-3/+3
| | | | | | | | | | | | | | | This is the penultimate release of Qt5. While Qt5 is EOL, due to the LGPL releases being a year behind the commercial releases, there will still be one more patch release in May 2026. PySide2: Update to 5.15.18 Announcement: https://lists.qt-project.org/pipermail/announce/2025-October/000592.html Release notes: https://code.qt.io/cgit/qt/qtreleasenotes.git/tree/qt/5.15.18/release-note.md MFH: 2025Q4
* lang/rust: Bump revisions after 1.91.1Mikael Urankar2025-11-112-2/+2
| | | | PR: 290816
* various: Bump Go ports for 1.24.10Adam Weinberger2025-11-061-1/+1
|
* KDE: Update KDE Gear to 25.08.3Max Brazhnikov2025-11-063-9/+9
| | | | Announcement: https://kde.org/announcements/gear/25.08.3/
* KDE: Update KDE Gear to 25.08.2Max Brazhnikov2025-10-293-9/+9
| | | | | | | | | | | | | Announcement: https://kde.org/announcements/gear/25.08.2/ Ports changes: security/keysmith: - Refresh KDE/Qt dependencies sysutils/kpmcore: - Pass maintainership to kde@ - Refresh dependencies
* accessibility/at-spi2-core: update to 2.56.6Olivier Duchateau2025-10-283-5/+5
| | | | PR: 290512
* accessibility/at-spi2-core: Run-depend on gsettings-desktop-schemasGleb Popov2025-10-281-0/+2
| | | | | | | This dep is required by the at-spi-bus-launcher program installed by this package. Not bumping PORTREVISION as I'm going to update the port in quick succession.
* various: Bump go ports for go-1.24.9Adam Weinberger2025-10-141-1/+1
|
* accessibility/gammy: Mark BROKEN and set expiration date to 2025-11-30Daniel Engberg2025-10-111-0/+3
| | | | | | | | | | | Upstream is gone and port is unfetchable, claimed successor is gone and additionally it also depends on QT 5 which is going away Reference: https://github.com/ArtrixTech/DynaGammy PR: 289509 Approved by: maintainer timeout, 3+ weeks
* accessibility/hyprsunset: update to 0.3.3Hiroki Tagato2025-10-092-5/+4
| | | | | | Changelog: https://github.com/hyprwm/hyprsunset/releases/tag/v0.3.3 Reported by: GitHub (watch releases)
* */*: bump port revision after hyprutils shlib version bump (12d8cc14bd4f)Hiroki Tagato2025-10-091-0/+1
|
* many: Bump dependent ports after go124 updateAdam Weinberger2025-10-081-1/+1
|
* Qt6: Update to 6.9.3Jason E. Hale2025-10-041-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | September 30, 2025 by Jani Heikkinen The last release from the Qt 6.9 series, Qt 6.9.3, is now available for download. As a patch release, Qt 6.9.3 does not introduce new features but delivers over 250 bug fixes, security updates, and enhancements on top of the Qt 6.9.2 release. For a detailed breakdown of the most significant changes, refer to the Qt 6.9.3 release notes. Announcement: https://www.qt.io/blog/qt-6.9.3-released Release notes: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.9.3/release-note.md FreeBSD ports changes: devel/qt6-base: - Remove a few stale patches and use dlsym to access environ. [1] - Restore missing headers if the X11 option is disabled. [2] devel/qt6-tools: - Add support for devel/llvm21 www/qt6-webengine: - Use dlsym to access environ. [1] PySide6: Update to 6.9.3 As part of the Qt6 update, PySide6 and its support tools have also been updated to 6.9.3. Reported by: arrowd [1], angry_vincent on #freebsd-desktop [2] MFH: 2025Q4 Security: c27c05a7-a0c8-11f0-8471-4ccc6adda413 Pull Request: https://github.com/freebsd/freebsd-ports/pull/441 [1] Co-authored-by: Gleb Popov <arrowd@FreeBSD.org>
* lang/rust: Bump revisions after 1.90.0Mikael Urankar2025-10-032-2/+2
| | | | PR: 289709
* KDE: Update KDE Gear to 25.08.1Max Brazhnikov2025-09-133-9/+9
| | | | | | | | | Announcement: https://kde.org/announcements/gear/25.08.1/ Ports changes: graphics/kolourpaint: - Remove stale patches
* accessibility/rubygem-atk: Update to 4.3.3Po-Chuan Hsieh2025-09-072-5/+6
| | | | | Changes: https://github.com/ruby-gnome/ruby-gnome/releases https://github.com/ruby-gnome/ruby-gnome/blob/main/NEWS.md
* many: Bump go ports for go-1.24.7Adam Weinberger2025-09-041-1/+1
|
* accessibility/linux-c7-at-spi2-core: pet stage-qa for aarch64 (+)Dima Panov2025-09-041-1/+0
| | | | Reported by: pkg-fallout
* lang/rust: Bump revisions after 1.89.0Mikael Urankar2025-09-012-2/+2
| | | | PR: 288923