Friday, January 31, 2025

Re: UPDATE: OpenAL 1.24.1

This broke emulators/citra and games/alephone and I think the addition
of AL_API_NOEXCEPT17 to numerous callback types requires a major bump.

citra:

/exopi-obj/pobj/citra-0.0.0.2104/citra-unified-source-20240303-0ff3440/src/audio_core/openal_sink.cpp:76:80: error: cannot initialize a parameter of type 'ALBUFFERCALLBACKTYPESOFT' (aka 'int (*)(void *, void *, int) noexcept') with an rvalue of type 'ALsizei (*)(void *, void *, ALsizei)' (aka 'int (*)(void *, void *, int)'): different exception specifications
alBufferCallbackSOFT(impl->buffer, AL_FORMAT_STEREO16, native_sample_rate, &Impl::Callback,
^~~~~~~~~~~~~~~
1 error generated.
ninja: build stopped: subcommand failed.

alephone:

/usr/local/include/AL/alext.h:821:90: error: expected ')'
typedef void (AL_APIENTRY *LPALGENEFFECTSDIRECT)(ALCcontext *context, ALsizei n, ALuint *effects) AL_API_NOEXCEPT17;
^
../../Source_Files/GameWorld/effects.h:156:28: note: expanded from macro 'effects'
#define effects (EffectList.data())
^

citra builds with the following diff.

Alephone may need renaming of the effects macro, which might be a bit
intrusive/annoying.

Index: patches/patch-src_audio_core_openal_sink_cpp
===================================================================
RCS file: patches/patch-src_audio_core_openal_sink_cpp
diff -N patches/patch-src_audio_core_openal_sink_cpp
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ patches/patch-src_audio_core_openal_sink_cpp 1 Feb 2025 05:23:43 -0000
@@ -0,0 +1,21 @@
+Index: src/audio_core/openal_sink.cpp
+--- src/audio_core/openal_sink.cpp.orig
++++ src/audio_core/openal_sink.cpp
+@@ -22,7 +22,7 @@ struct OpenALSink::Impl {
+
+ std::function<void(s16*, std::size_t)> cb;
+
+- static ALsizei Callback(void* impl_, void* buffer, ALsizei buffer_size_in_bytes);
++ static ALsizei Callback(void* impl_, void* buffer, ALsizei buffer_size_in_bytes) AL_API_NOEXCEPT17;
+ };
+
+ OpenALSink::OpenALSink(std::string device_name) : impl(std::make_unique<Impl>()) {
+@@ -142,7 +142,7 @@ void OpenALSink::SetCallback(std::function<void(s16*,
+ impl->cb = cb;
+ }
+
+-ALsizei OpenALSink::Impl::Callback(void* impl_, void* buffer, ALsizei buffer_size_in_bytes) {
++ALsizei OpenALSink::Impl::Callback(void* impl_, void* buffer, ALsizei buffer_size_in_bytes) AL_API_NOEXCEPT17 {
+ auto impl = reinterpret_cast<Impl*>(impl_);
+ if (!impl || !impl->cb) {
+ return 0;

aarch64 bulk build report

bulk build on arm64.ports.openbsd.org
started on Wed Jan 29 03:10:31 MST 2025
finished at Fri Jan 31 22:35:16 MST 2025
lasted 2D19h24m
done with kern.version=OpenBSD 7.6-current (GENERIC.MP) #0: Wed Jan 29 01:45:28 MST 2025

built packages:12465
Jan 29:4517
Jan 30:1131
Jan 31:6816


critical path missing pkgs: http://build-failures.rhaalovely.net/aarch64/2025-01-29/summary.log

build failures: 7
http://build-failures.rhaalovely.net/aarch64/2025-01-29/audio/ncspot.log
http://build-failures.rhaalovely.net/aarch64/2025-01-29/devel/woboq_codebrowser.log
http://build-failures.rhaalovely.net/aarch64/2025-01-29/emulators/citra.log
http://build-failures.rhaalovely.net/aarch64/2025-01-29/games/alephone/alephone.log
http://build-failures.rhaalovely.net/aarch64/2025-01-29/sysutils/u-boot/rk3588.log
http://build-failures.rhaalovely.net/aarch64/2025-01-29/www/chromium.log
http://build-failures.rhaalovely.net/aarch64/2025-01-29/www/ungoogled-chromium.log

recurrent failures
failures/devel/woboq_codebrowser.log
failures/www/chromium.log
new failures
+++ ls-failures Fri Jan 31 22:35:29 2025
+failures/audio/ncspot.log
+failures/emulators/citra.log
+failures/games/alephone/alephone.log
+failures/sysutils/u-boot/rk3588.log
+failures/www/ungoogled-chromium.log
resolved failures
--- ../old/aarch64/last//ls-failures Mon Jan 27 12:35:01 2025

llama.cpp vulkan

This might be a way to do it. Does anyone have a card to test against?

Index: Makefile
===================================================================
RCS file: /cvs/ports/misc/llama.cpp/Makefile,v
retrieving revision 1.1
diff -u -p -u -r1.1 Makefile
--- Makefile 30 Jan 2025 22:55:11 -0000 1.1
+++ Makefile 1 Feb 2025 04:20:02 -0000
@@ -10,6 +10,7 @@ SHARED_LIBS += ggml-cpu 0.0
SHARED_LIBS += ggml 0.0
SHARED_LIBS += llama 0.0
SHARED_LIBS += llava_shared 0.0
+SHARED_LIBS += ggml-vulkan 0.0

CATEGORIES = misc

@@ -18,11 +19,15 @@ HOMEPAGE = https://github.com/ggerganov
# MIT
PERMIT_PACKAGE = Yes

-WANTLIB += m pthread ${COMPILER_LIBCXX}
+WANTLIB += m pthread vulkan ${COMPILER_LIBCXX}

MODULES = devel/cmake

+LIB_DEPENDS = graphics/vulkan-loader
+BUILD_DEPENDS = graphics/shaderc
+
CONFIGURE_ARGS = -DGGML_CCACHE=Off \
- -DGGML_NATIVE=Off
+ -DGGML_NATIVE=Off \
+ -DGGML_VULKAN=On

.include <bsd.port.mk>
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/misc/llama.cpp/pkg/PLIST,v
retrieving revision 1.1
diff -u -p -u -r1.1 PLIST
--- pkg/PLIST 30 Jan 2025 22:55:11 -0000 1.1
+++ pkg/PLIST 1 Feb 2025 04:20:02 -0000
@@ -58,6 +58,7 @@ bin/convert_hf_to_gguf.py
@bin bin/test-tokenizer-0
@bin bin/test-tokenizer-1-bpe
@bin bin/test-tokenizer-1-spm
+@bin bin/vulkan-shaders-gen
include/ggml-alloc.h
include/ggml-backend.h
include/ggml-blas.h
@@ -74,7 +75,6 @@ include/ggml.h
include/gguf.h
include/llama-cpp.h
include/llama.h
-lib/cmake/
lib/cmake/ggml/
lib/cmake/ggml/ggml-config.cmake
lib/cmake/ggml/ggml-version.cmake
@@ -83,6 +83,7 @@ lib/cmake/llama/llama-config.cmake
lib/cmake/llama/llama-version.cmake
@lib lib/libggml-base.so.${LIBggml-base_VERSION}
@lib lib/libggml-cpu.so.${LIBggml-cpu_VERSION}
+@lib lib/libggml-vulkan.so.${LIBggml-vulkan_VERSION}
@lib lib/libggml.so.${LIBggml_VERSION}
@lib lib/libllama.so.${LIBllama_VERSION}
@lib lib/libllava_shared.so.${LIBllava_shared_VERSION}

update multimedia/shotcut

diff --git multimedia/shotcut/Makefile multimedia/shotcut/Makefile
index b1d337d509c..86da49a84cb 100644
--- multimedia/shotcut/Makefile
+++ multimedia/shotcut/Makefile
@@ -4,7 +4,7 @@ COMMENT = video editor

GH_ACCOUNT = mltframework
GH_PROJECT = shotcut
-GH_TAGNAME = v24.10.29
+GH_TAGNAME = v25.01.25

CATEGORIES = multimedia

diff --git multimedia/shotcut/distinfo multimedia/shotcut/distinfo
index 559afe63fa3..2a366185baf 100644
--- multimedia/shotcut/distinfo
+++ multimedia/shotcut/distinfo
@@ -1,2 +1,2 @@
-SHA256 (shotcut-24.10.29.tar.gz) = hjVIbPsOjg1Q4mTpejq0xXspAXQrGIrtPukawDcbMlA=
-SIZE (shotcut-24.10.29.tar.gz) = 12605367
+SHA256 (shotcut-25.01.25.tar.gz) = RqK++0WnGdgUFrAdyyKM4n6XqlQbMIVw5RUXOP4blnc=
+SIZE (shotcut-25.01.25.tar.gz) = 13103595
diff --git multimedia/shotcut/patches/patch-src_mainwindow_cpp multimedia/shotcut/patches/patch-src_mainwindow_cpp
index 3fe2cd626af..f465e62abab 100644
--- multimedia/shotcut/patches/patch-src_mainwindow_cpp
+++ multimedia/shotcut/patches/patch-src_mainwindow_cpp
@@ -1,19 +1,10 @@
Index: src/mainwindow.cpp
--- src/mainwindow.cpp.orig
+++ src/mainwindow.cpp
-@@ -141,7 +141,7 @@ MainWindow::MainWindow()
+@@ -139,7 +139,7 @@ MainWindow::MainWindow()
, m_keyframesDock(0)
{
#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
-- QLibrary libJack("libjack.so.0");
-+ QLibrary libJack("libjack.so");
- if (!libJack.load()) {
- QMessageBox::critical(this, qApp->applicationName(),
- tr("Error: This program requires the JACK 1 library.\n\nPlease install it using your package manager. It may be named libjack0, jack-audio-connection-kit, jack, or similar."));
-@@ -149,7 +149,7 @@ MainWindow::MainWindow()
- } else {
- libJack.unload();
- }
- QLibrary libSDL("libSDL2-2.0.so.0");
+ QLibrary libSDL("libSDL2.so");
if (!libSDL.load()) {
diff --git multimedia/shotcut/pkg/PLIST multimedia/shotcut/pkg/PLIST
index 21bb867ac8c..d53c138eea5 100644
--- multimedia/shotcut/pkg/PLIST
+++ multimedia/shotcut/pkg/PLIST
@@ -336,6 +336,10 @@ share/shotcut/qml/filters/gradient/icon.webp
share/shotcut/qml/filters/gradient/meta.qml
share/shotcut/qml/filters/gradient/ui.qml
share/shotcut/qml/filters/gradient/vui.qml
+share/shotcut/qml/filters/gradientmap/
+share/shotcut/qml/filters/gradientmap/icon.webp
+share/shotcut/qml/filters/gradientmap/meta.qml
+share/shotcut/qml/filters/gradientmap/ui.qml
share/shotcut/qml/filters/grain/
share/shotcut/qml/filters/grain/meta.qml
share/shotcut/qml/filters/grain/ui.qml
@@ -351,6 +355,14 @@ share/shotcut/qml/filters/hqdn3d/
share/shotcut/qml/filters/hqdn3d/icon.webp
share/shotcut/qml/filters/hqdn3d/meta.qml
share/shotcut/qml/filters/hqdn3d/ui.qml
+share/shotcut/qml/filters/hslprimaries/
+share/shotcut/qml/filters/hslprimaries/icon.webp
+share/shotcut/qml/filters/hslprimaries/meta.qml
+share/shotcut/qml/filters/hslprimaries/ui.qml
+share/shotcut/qml/filters/hslrange/
+share/shotcut/qml/filters/hslrange/icon.webp
+share/shotcut/qml/filters/hslrange/meta.qml
+share/shotcut/qml/filters/hslrange/ui.qml
share/shotcut/qml/filters/hue_lightness_saturation/
share/shotcut/qml/filters/hue_lightness_saturation/icon.webp
share/shotcut/qml/filters/hue_lightness_saturation/meta.qml
@@ -614,6 +626,7 @@ share/shotcut/qml/modules/Shotcut/Controls/
share/shotcut/qml/modules/Shotcut/Controls/Button.qml
share/shotcut/qml/modules/Shotcut/Controls/ColorPicker.qml
share/shotcut/qml/modules/Shotcut/Controls/ComboBox.qml
+share/shotcut/qml/modules/Shotcut/Controls/CurveComboBox.qml
share/shotcut/qml/modules/Shotcut/Controls/DoubleSpinBox.qml
share/shotcut/qml/modules/Shotcut/Controls/EditMenu.qml
share/shotcut/qml/modules/Shotcut/Controls/Gauge.qml
@@ -686,6 +699,7 @@ share/shotcut/translations/shotcut_et.qm
share/shotcut/translations/shotcut_eu.qm
share/shotcut/translations/shotcut_fi.qm
share/shotcut/translations/shotcut_fr.qm
+share/shotcut/translations/shotcut_ga.qm
share/shotcut/translations/shotcut_gd.qm
share/shotcut/translations/shotcut_gl.qm
share/shotcut/translations/shotcut_he_IL.qm
This is an update to new version 25.01.25. Lightly tested on amd64,
with and without h264_vaapi hardware encoding.

Full list of new features, fixes, changes: https://shotcut.org/blog/new-release-250125/

sparc64 bulk build report

Bulk build on sparc64-0a.ports.openbsd.org

Started : Tue Jan 28 13:37:15 MST 2025
Finished: Fri Jan 31 15:51:45 MST 2025
Duration: 3 Days 2 hours 15 minutes

Built using OpenBSD 7.6-current (GENERIC.MP) #2383: Thu Jan 23 02:29:47 MST 2025

Built 9028 packages

Number of packages built each day:
Jan 28: 5787
Jan 29: 1863
Jan 30: 790
Jan 31: 588


Critical path missing pkgs:
http://cranky.work/sparc64/2025-01-28/summary.log

Build failures: 75
http://cranky.work/sparc64/2025-01-28/astro/wmglobe.log
http://cranky.work/sparc64/2025-01-28/audio/espeak.log
http://cranky.work/sparc64/2025-01-28/audio/openal.log
http://cranky.work/sparc64/2025-01-28/cad/horizon-eda.log
http://cranky.work/sparc64/2025-01-28/cad/netgen-mesher.log
http://cranky.work/sparc64/2025-01-28/devel/abseil-cpp.log
http://cranky.work/sparc64/2025-01-28/devel/difftastic.log
http://cranky.work/sparc64/2025-01-28/devel/llvm-lit.log
http://cranky.work/sparc64/2025-01-28/devel/qcoro.log
http://cranky.work/sparc64/2025-01-28/devel/riscv-elf/gcc.log
http://cranky.work/sparc64/2025-01-28/devel/shapelib.log
http://cranky.work/sparc64/2025-01-28/devel/woboq_codebrowser.log
http://cranky.work/sparc64/2025-01-28/devel/yder.log
http://cranky.work/sparc64/2025-01-28/emulators/dosbox-x.log
http://cranky.work/sparc64/2025-01-28/emulators/fceux.log
http://cranky.work/sparc64/2025-01-28/emulators/libretro-pcsx-rearmed.log
http://cranky.work/sparc64/2025-01-28/games/bugdom.log
http://cranky.work/sparc64/2025-01-28/games/bugdom2.log
http://cranky.work/sparc64/2025-01-28/games/cdogs-sdl.log
http://cranky.work/sparc64/2025-01-28/games/cromagrally.log
http://cranky.work/sparc64/2025-01-28/games/devilutionx.log
http://cranky.work/sparc64/2025-01-28/games/exult.log
http://cranky.work/sparc64/2025-01-28/games/ezquake.log
http://cranky.work/sparc64/2025-01-28/games/fheroes2.log
http://cranky.work/sparc64/2025-01-28/games/gnukem.log
http://cranky.work/sparc64/2025-01-28/games/nblood.log
http://cranky.work/sparc64/2025-01-28/games/ottomatic.log
http://cranky.work/sparc64/2025-01-28/games/py-unitypy.log
http://cranky.work/sparc64/2025-01-28/games/widelands.log
http://cranky.work/sparc64/2025-01-28/geo/spatialindex.log
http://cranky.work/sparc64/2025-01-28/geo/spatialite/freexl.log
http://cranky.work/sparc64/2025-01-28/graphics/decker.log
http://cranky.work/sparc64/2025-01-28/graphics/opensubdiv.log
http://cranky.work/sparc64/2025-01-28/graphics/rawstudio.log
http://cranky.work/sparc64/2025-01-28/graphics/tesseract/tesseract.log
http://cranky.work/sparc64/2025-01-28/inputmethods/ibus.log
http://cranky.work/sparc64/2025-01-28/lang/wabt.log
http://cranky.work/sparc64/2025-01-28/mail/cyrus-imapd.log
http://cranky.work/sparc64/2025-01-28/mail/dovecot-fts-xapian.log
http://cranky.work/sparc64/2025-01-28/mail/grommunio/index.log
http://cranky.work/sparc64/2025-01-28/mail/rspamd,hyperscan.log
http://cranky.work/sparc64/2025-01-28/math/openfst.log
http://cranky.work/sparc64/2025-01-28/math/py-numpy.log
http://cranky.work/sparc64/2025-01-28/misc/astrolog.log
http://cranky.work/sparc64/2025-01-28/multimedia/libheif.log
http://cranky.work/sparc64/2025-01-28/net/libmaxminddb.log
http://cranky.work/sparc64/2025-01-28/net/py-stem.log
http://cranky.work/sparc64/2025-01-28/print/hplip,-common.log
http://cranky.work/sparc64/2025-01-28/security/pidgin-otr.log
http://cranky.work/sparc64/2025-01-28/security/sslscan.log
http://cranky.work/sparc64/2025-01-28/shells/py-qtconsole.log
http://cranky.work/sparc64/2025-01-28/sysutils/czkawka,-gui.log
http://cranky.work/sparc64/2025-01-28/sysutils/libvirt.log
http://cranky.work/sparc64/2025-01-28/sysutils/mangl.log
http://cranky.work/sparc64/2025-01-28/sysutils/nut.log
http://cranky.work/sparc64/2025-01-28/sysutils/opam.log
http://cranky.work/sparc64/2025-01-28/sysutils/symon,-main.log
http://cranky.work/sparc64/2025-01-28/sysutils/u-boot-asahi.log
http://cranky.work/sparc64/2025-01-28/telephony/baresip/baresip,-gtk.log
http://cranky.work/sparc64/2025-01-28/textproc/libmarisa,,-main.log
http://cranky.work/sparc64/2025-01-28/textproc/redland-bindings,-main.log
http://cranky.work/sparc64/2025-01-28/textproc/xerces-c.log
http://cranky.work/sparc64/2025-01-28/textproc/xxdiff.log
http://cranky.work/sparc64/2025-01-28/wayland/wlroots.log
http://cranky.work/sparc64/2025-01-28/www/unit/unit.log
http://cranky.work/sparc64/2025-01-28/www/webkitgtk4,webkitgtk41.log
http://cranky.work/sparc64/2025-01-28/x11/gnome/gjs.log
http://cranky.work/sparc64/2025-01-28/x11/gnome/mutter.log
http://cranky.work/sparc64/2025-01-28/x11/grantlee-qt5.log
http://cranky.work/sparc64/2025-01-28/x11/gtk-vnc.log
http://cranky.work/sparc64/2025-01-28/x11/nitrogen.log
http://cranky.work/sparc64/2025-01-28/x11/polybar.log
http://cranky.work/sparc64/2025-01-28/x11/qt5/qttranslations.log
http://cranky.work/sparc64/2025-01-28/x11/qt5/qtwebkit.log
http://cranky.work/sparc64/2025-01-28/x11/qt6/qtbase.log

Recurrent failures:
failures/devel/riscv-elf/gcc.log
failures/games/gnukem.log
failures/games/py-unitypy.log
failures/math/openfst.log
failures/misc/astrolog.log
failures/net/libmaxminddb.log
failures/security/sslscan.log
failures/sysutils/opam.log
failures/sysutils/u-boot-asahi.log
failures/textproc/libmarisa,,-main.log
failures/textproc/xerces-c.log
failures/www/unit/unit.log

New failures:
+failures/astro/wmglobe.log
+failures/audio/espeak.log
+failures/audio/openal.log
+failures/cad/horizon-eda.log
+failures/cad/netgen-mesher.log
+failures/devel/abseil-cpp.log
+failures/devel/difftastic.log
+failures/devel/llvm-lit.log
+failures/devel/qcoro.log
+failures/devel/shapelib.log
+failures/devel/woboq_codebrowser.log
+failures/devel/yder.log
+failures/emulators/dosbox-x.log
+failures/emulators/fceux.log
+failures/emulators/libretro-pcsx-rearmed.log
+failures/games/bugdom.log
+failures/games/bugdom2.log
+failures/games/cdogs-sdl.log
+failures/games/cromagrally.log
+failures/games/devilutionx.log
+failures/games/exult.log
+failures/games/ezquake.log
+failures/games/fheroes2.log
+failures/games/nblood.log
+failures/games/ottomatic.log
+failures/games/widelands.log
+failures/geo/spatialindex.log
+failures/geo/spatialite/freexl.log
+failures/graphics/decker.log
+failures/graphics/opensubdiv.log
+failures/graphics/rawstudio.log
+failures/graphics/tesseract/tesseract.log
+failures/inputmethods/ibus.log
+failures/lang/wabt.log
+failures/mail/cyrus-imapd.log
+failures/mail/dovecot-fts-xapian.log
+failures/mail/grommunio/index.log
+failures/mail/rspamd,hyperscan.log
+failures/math/py-numpy.log
+failures/multimedia/libheif.log
+failures/net/py-stem.log
+failures/print/hplip,-common.log
+failures/security/pidgin-otr.log
+failures/shells/py-qtconsole.log
+failures/sysutils/czkawka,-gui.log
+failures/sysutils/libvirt.log
+failures/sysutils/mangl.log
+failures/sysutils/nut.log
+failures/sysutils/symon,-main.log
+failures/telephony/baresip/baresip,-gtk.log
+failures/textproc/redland-bindings,-main.log
+failures/textproc/xxdiff.log
+failures/wayland/wlroots.log
+failures/www/webkitgtk4,webkitgtk41.log
+failures/x11/gnome/gjs.log
+failures/x11/gnome/mutter.log
+failures/x11/grantlee-qt5.log
+failures/x11/gtk-vnc.log
+failures/x11/nitrogen.log
+failures/x11/polybar.log
+failures/x11/qt5/qttranslations.log
+failures/x11/qt5/qtwebkit.log
+failures/x11/qt6/qtbase.log

Resolved failures:
-failures/benchmarks/sysbench.log
-failures/databases/lmdbxx.log
-failures/devel/boehm-gc.log
-failures/devel/gitsh.log
-failures/devel/glib2,bootstrap.log
-failures/devel/gsoap.log
-failures/devel/liburcu.log
-failures/devel/or1k-elf/gcc.log
-failures/devel/pasmo.log
-failures/devel/py-debugpy.log
-failures/devel/py-sip.log
-failures/devel/sdl2-ttf.log
-failures/games/love/mime.log
-failures/games/nethack/3.4,no_x11.log
-failures/games/nethack/3.6,no_x11.log
-failures/games/steamworks-nosteam.log
-failures/geo/spatialite/virtualpg.log
-failures/graphics/quesoglc.log
-failures/graphics/radeontop.log
-failures/lang/quickjs.log
-failures/lang/snobol4.log
-failures/mail/neomutt.log
-failures/math/bc-gh.log
-failures/math/matio.log
-failures/net/bgpq4.log
-failures/net/haproxy.log
-failures/net/wireguard-tools.log
-failures/security/cyrus-sasl2.log
-failures/sysutils/bfs.log
-failures/sysutils/ipmitool.log
-failures/sysutils/libfwsi.log
-failures/textproc/apertium-dicts/oc-es.log
-failures/textproc/icu4c.log
-failures/www/nghttp3.log

Packages newly built:
+archivers/blosc
+archivers/brotli
+archivers/draco
+archivers/fuse-zip
+archivers/gcab
+archivers/laszip
+archivers/libdeflate
+archivers/libzip
+archivers/minizip
+archivers/pecl-lzf,php82
+archivers/pecl-lzf,php83
+archivers/pecl-lzf,php84
+archivers/py-brotlicffi
+archivers/py-zopfli
+archivers/quazip
+archivers/snappy
+archivers/unarr
+archivers/unshield
+archivers/woff2
+archivers/zipios
+archivers/zopfli
+archivers/zziplib
+astro/celestia
+astro/gnuastro
+astro/sunclock
+astro/sunclock,-main
+astro/sunclock,-maps
+astro/wcslib
+astro/wmmoonclock
+astro/xephem
+audio/abcde
+audio/amused
+audio/ario
+audio/audacious/player
+audio/audacious/plugins
+audio/audiality2
+audio/beets
+audio/calf
+audio/chromaprint
+audio/cmt
+audio/cmu-sphinx3
+audio/cmu-sphinxbase
+audio/cmus
+audio/cmus,-ffmpeg
+audio/cmus,-main
+audio/cplay
+audio/curseradio
+audio/d11amp
+audio/ffmpeg-normalize
+audio/fluidsynth
+audio/glyr
+audio/gogglesmm
+audio/gqmpeg
+audio/gradio
+audio/gsound
+audio/herrie
+audio/jack
+audio/ladspa
+audio/libbs2b
+audio/libcanberra
+audio/libcanberra,-gtk3
+audio/libcanberra,-main
+audio/libcue
+audio/libebur128
+audio/libgpod
+audio/liblastfm
+audio/libmpd
+audio/libmusicbrainz
+audio/libmusicbrainz5
+audio/libmysofa
+audio/libofa
+audio/libopenmpt
+audio/libsmackerdec
+audio/libsndfile
+audio/libsoxr
+audio/lilv
+audio/lmms
+audio/milkytracker
+audio/moc
+audio/mp3cddb
+audio/mp3info
+audio/mp3splt-gtk
+audio/mscore
+audio/mt-daapd
+audio/multimux
+audio/musepack
+audio/musikcube
+audio/nncmpp
+audio/noson
+audio/noson-app
+audio/ocp
+audio/pacpl
+audio/paulstretch
+audio/pavucontrol
+audio/pcaudiolib
+audio/pianobar
+audio/pithos
+audio/pms
+audio/portmidi
+audio/pulseaudio
+audio/py-acoustid
+audio/py-discogs-client
+audio/quodlibet
+audio/rgain
+audio/ruby-taglib,ruby32
+audio/ruby-taglib,ruby33
+audio/ruby-taglib,ruby34
+audio/schismtracker
+audio/scmpc
+audio/sdl2-audiolib
+audio/shairport-sync
+audio/siren
+audio/soundtouch
+audio/sox
+audio/squeezecenter
+audio/squeezelite
+audio/streamripper
+audio/swh-plugins
+audio/taglib
+audio/tagtool
+audio/tempest
+audio/timidity,gtk2
+audio/twolame
+audio/vamp-plugin-sdk
+audio/vlorb
+audio/vorbis-tools
+audio/xmcd
+audio/ympd
+audio/yt-audio
+audio/zmusic
+audio/zynaddsubfx
+benchmarks/glmark2
+benchmarks/hyperfine
+benchmarks/sysbench
+benchmarks/sysbench,mysql
+benchmarks/sysbench,pgsql
+biology/bioperl
+biology/p5-Bio-ASN1-EntrezGene
+biology/p5-Bio-DB-EMBL
+biology/p5-Bio-DB-NCBIHelper
+biology/p5-Bio-Variation
+cad/abc
+cad/coil64
+cad/geda-gaf
+cad/gerbv
+cad/graywolf
+cad/gtkwave
+cad/magic
+cad/opencascade
+cad/tkgate
+cad/xnecview
+cad/xschem
+cad/xtrkcad
+chinese/libchewing
+comms/amtterm
+comms/amtterm,-main
+comms/amtterm,-term
+comms/dump1090
+comms/fldigi
+comms/gammu
+comms/gpsk31
+comms/hackrf
+comms/lcdproc
+comms/libhidapi
+comms/mgetty+sendfax
+comms/minimodem
+comms/py-gammu
+comms/rtl-sdr
+comms/sigrok/libsigrokdecode
+comms/syncterm
+comms/tlf
+comms/xdx
+comms/xlog
+comms/zigpy/py-zigpy
+comms/zigpy/py-zigpy-znp
+converters/bdf2sfd
+converters/k2pdfopt
+converters/lastools
+converters/ppmtoTbmp
+converters/wv2
+databases/architect
+databases/freetds
+databases/jxplorer
+databases/leveldb
+databases/libdbi-drivers
+databases/libdbi-drivers,-freetds
+databases/libdbi-drivers,-main
+databases/libdbi-drivers,-pgsql
+databases/libdbi-drivers,-sqlite3
+databases/liquibase
+databases/lmdbxx
+databases/luadbi
+databases/luadbi,-main
+databases/luadbi,-mysql
+databases/luadbi,-pgsql
+databases/luadbi,lua52
+databases/luadbi,lua52,-main
+databases/luadbi,lua52,-mysql
+databases/luadbi,lua52,-pgsql
+databases/luadbi,lua53
+databases/luadbi,lua53,-main
+databases/luadbi,lua53,-mysql
+databases/luadbi,lua53,-pgsql
+databases/luadbi,lua54
+databases/luadbi,lua54,-main
+databases/luadbi,lua54,-mysql
+databases/luadbi,lua54,-pgsql
+databases/lualdap
+databases/mariadb
+databases/mariadb,-main
+databases/mariadb,-server
+databases/mariadb,-tests
+databases/mdbtools
+databases/mydumper
+databases/mysql-zrm
+databases/openldap
+databases/openldap,
+databases/openldap,,-main
+databases/openldap,,-server
+databases/openldap,-main
+databases/openldap,-server
+databases/openldap,aci
+databases/openldap,aci,-main
+databases/openldap,aci,-server
+databases/openldap,aci,gssapi
+databases/openldap,aci,gssapi,-main
+databases/openldap,aci,gssapi,-server
+databases/openldap,gssapi
+databases/openldap,gssapi,-main
+databases/openldap,gssapi,-server
+databases/p5-Class-DBI-mysql
+databases/p5-DBD-Chart
+databases/p5-DBD-MariaDB
+databases/p5-DBD-Sybase
+databases/p5-DBD-mysql
+databases/p5-DBIx-DWIW
+databases/patroni
+databases/pecl-redis,php82
+databases/pecl-redis,php83
+databases/pecl-redis,php84
+databases/percona-toolkit
+databases/puppetdb/7
+databases/puppetdb/7,-main
+databases/puppetdb/8
+databases/puppetdb/8,-main
+databases/py-borgstore
+databases/py-carbon
+databases/py-ldap
+databases/py-ldap0
+databases/py-mysqlclient
+databases/py-whisper
+databases/repmgr
+databases/ruby-ldap,ruby32
+databases/ruby-ldap,ruby33
+databases/ruby-ldap,ruby34
+databases/ruby-mysql2,ruby32
+databases/ruby-mysql2,ruby33
+databases/ruby-mysql2,ruby34
+databases/ruby-tiny_tds,ruby32
+databases/ruby-tiny_tds,ruby33
+databases/ruby-tiny_tds,ruby34
+databases/sqlitebrowser
+databases/sqsh
+databases/tdbc-mysql
+databases/timescaledb
+databases/web2ldap
+devel/apache-ant
+devel/apktool
+devel/appstream-glib
+devel/apr-util,ldap
+devel/armips
+devel/astyle
+devel/atk2mm
+devel/atkmm236
+devel/avrdude
+devel/bamf
+devel/boehm-gc,-atomic
+devel/boxed-cpp
+devel/bpython
+devel/bullet
+devel/c2ffi
+devel/cargo-audit
+devel/cargo-c
+devel/catch2
+devel/cbindgen
+devel/ccache
+devel/cereal
+devel/cjson
+devel/clang-tools-extra
+devel/cmake
+devel/cmocka
+devel/coeurl
+devel/cpputest
+devel/crc32c
+devel/cvsgraph
+devel/cvsplot
+devel/dconf
+devel/ddd
+devel/desktop-file-utils
+devel/dex2jar
+devel/distcc
+devel/distcc,-gtk
+devel/distcc,-main
+devel/distcc,-server
+devel/dlib
+devel/docopt.cpp
+devel/droplet
+devel/dyncall
+devel/elfcat
+devel/epoll-shim
+devel/etl
+devel/fast-float
+devel/flatbuffers
+devel/flatzebra
+devel/fmt
+devel/fox
+devel/fpm
+devel/gconf2
+devel/geany
+devel/geotiff
+devel/gflags
+devel/git
+devel/git,-main
+devel/git,-svn
+devel/git,-x11
+devel/git-cinnabar
+devel/git-crypt
+devel/git-filter-repo
+devel/gitsh
+devel/glib2
+devel/glib2,bootstrap
+devel/glib2mm
+devel/glibmm268
+devel/glog
+devel/gobject-introspection
+devel/goffice
+devel/gsettings-desktop-schemas
+devel/gsoap
+devel/gtest
+devel/gwenhywfar
+devel/harfbuzz
+devel/harfbuzz,-icu
+devel/harfbuzz,-main
+devel/highway
+devel/immer
+devel/include-what-you-use
+devel/indi
+devel/indi,-libs
+devel/indi,-main
+devel/intellij-fsnotifier
+devel/ipython
+devel/jadx
+devel/javahelp
+devel/jd-gui
+devel/jdk/1.8
+devel/jdk/11
+devel/json-c
+devel/json-glib
+devel/jsonrpc-glib
+devel/jujutsu
+devel/kainjow-mustache
+devel/keystone/main
+devel/keystone/python
+devel/leiningen
+devel/libdivsufsort
+devel/libftdi1
+devel/libgee
+devel/libgit2/libgit2
+devel/libgit2/libgit2-glib
+devel/libgit2/py-git2
+devel/libglade2
+devel/libgnt
+devel/libgsf
+devel/libgtop2
+devel/libgusb
+devel/libmemcached
+devel/libnotify
+devel/libofx
+devel/libopensync
+devel/libpeas
+devel/libsmb2
+devel/libsoup
+devel/libsoup3
+devel/libspectrum
+devel/libunique
+devel/liburcu
+devel/libvmime
+devel/libvolk
+devel/libwnck3
+devel/libyajl
+devel/llvm/13
+devel/llvm/13,-main
+devel/llvm/13,-python
+devel/llvm/16
+devel/llvm/16,-main
+devel/llvm/16,-python
+devel/llvm/17
+devel/llvm/17,-main
+devel/llvm/17,-python
+devel/llvm/18
+devel/llvm/18,-main
+devel/llvm/18,-python
+devel/llvm/19
+devel/llvm/19,-main
+devel/llvm/19,-python
+devel/log4cplus
+devel/lua-lgi
+devel/lua-lgi,lua52
+devel/lua-lgi,lua53
+devel/lua-openbsd
+devel/lua-openbsd,lua52
+devel/lua-openbsd,lua53
+devel/luarocks
+devel/luarocks,lua52
+devel/luarocks,lua53
+devel/luarocks,lua54
+devel/maturin
+devel/maven
+devel/mercurial
+devel/mercurial,-main
+devel/mercurial,-x11
+devel/microsoft-gsl
+devel/msgpack
+devel/mygui
+devel/objfw
+devel/ocaml-graph
+devel/olm
+devel/openocd
+devel/or1k-elf/gcc
+devel/orc
+devel/orcania
+devel/p5-Cairo-GObject
+devel/p5-Data-Stag
+devel/p5-Devel-ptkdb
+devel/p5-File-BaseDir
+devel/p5-File-DesktopEntry
+devel/p5-File-MimeInfo
+devel/p5-Glib-Object-Introspection
+devel/p5-Glib2
+devel/p5-POE-Loop-Tk
+devel/p5-Pango
+devel/p5-SDL
+devel/p5-SVN-Notify
+devel/p5-SVN-Simple
+devel/p5-SVN-Web
+devel/pango
+devel/pangomm
+devel/pasmo
+devel/pecl-xdebug,php82
+devel/pecl-xdebug,php83
+devel/pecl-xdebug,php84
+devel/physfs
+devel/pre-commit
+devel/proj
+devel/ptlib
+devel/py-aiocache
+devel/py-aioresponses
+devel/py-buildbot/buildbot
+devel/py-buildslave
+devel/py-cruft
+devel/py-debugpy
+devel/py-dulwich
+devel/py-esptool
+devel/py-gevent
+devel/py-gevent-eventemitter
+devel/py-gobject
+devel/py-gobject3
+devel/py-ipykernel
+devel/py-jsonschema
+devel/py-jsonschema-path
+devel/py-jsonschema-specifications
+devel/py-jupyter_events
+devel/py-jupyter_server
+devel/py-liblarch
+devel/py-nbclient
+devel/py-nbconvert
+devel/py-nbformat
+devel/py-nbval
+devel/py-openapi-schema-validator
+devel/py-openapi-spec-validator
+devel/py-pydantic
+devel/py-pydantic-compat
+devel/py-pydantic-core
+devel/py-pygithub
+devel/py-qt-builder
+devel/py-rpds-py
+devel/py-setuptools-rust
+devel/py-sip
+devel/py-test-aiohttp
+devel/py-test-httpbin
+devel/py-test-jupyter
+devel/py-twisted
+devel/py2-pygame
+devel/pycdc
+devel/qgit
+devel/qjson
+devel/range-v3
+devel/rcs-fast-import
+devel/robin-map
+devel/rttr
+devel/rust-analyzer
+devel/rust-bindgen
+devel/sbt
+devel/sdl-image
+devel/sdl-pango
+devel/sdl-sound
+devel/sdl2-image
+devel/sdl2-pango
+devel/sdl2-ttf
+devel/seergdb
+devel/snare
+devel/spdlog
+devel/spidermonkey128
+devel/spidermonkey128,-js
+devel/spidermonkey128,-main
+devel/spyder/py-spyder-kernels
+devel/src
+devel/subversion
+devel/subversion,-ap2
+devel/subversion,-gnome-keyring
+devel/subversion,-main
+devel/subversion,-perl
+devel/subversion,-python
+devel/tbb
+devel/template-glib
+devel/tig
+devel/tl-expected
+devel/vim-taglist
+devel/visualvm
+devel/vte3
+devel/vte3,-common
+devel/vte3,-gtk4
+devel/vte3,-main
+devel/yaml-cpp
+devel/z80ex
+devel/zug
+editors/TeXmacs
+editors/dte
+editors/editorconfig-core-c
+editors/emacs
+editors/emacs,gtk2
+editors/emacs,gtk3
+editors/emacs,no_x11
+editors/emacs,pgtk
+editors/helix
+editors/ldapvi
+editors/leafpad
+editors/litexl
+editors/nedit
+editors/neovim
+editors/neovim-qt
+editors/nvi
+editors/nvi,iconv
+editors/qscintilla
+editors/scintilla
+editors/scite
+editors/subtitleeditor
+editors/ted
+editors/tiled
+editors/vim
+editors/vim,-lang
+editors/vim,-main
+editors/vim,gtk3
+editors/vim,gtk3,-lang
+editors/vim,gtk3,-main
+editors/vim,gtk3,lua
+editors/vim,gtk3,lua,-lang
+editors/vim,gtk3,lua,-main
+editors/vim,gtk3,perl,python3,ruby
+editors/vim,gtk3,perl,python3,ruby,-lang
+editors/vim,gtk3,perl,python3,ruby,-main
+editors/vim,gtk3,python3
+editors/vim,gtk3,python3,-lang
+editors/vim,gtk3,python3,-main
+editors/wordgrinder
+editors/xemacs21-sumo
+editors/xemacs21-sumo,mule
+editors/xemacs21/stable
+editors/xemacs21/stable,mule
+editors/zile
+education/algotutor
+education/drgeo
+education/gamgi
+education/verbiste
+emulators/desmume
+emulators/dosbox
+emulators/fuse
+emulators/fuse-utils
+emulators/gnusim8085
+emulators/gsplus
+emulators/libchdr
+emulators/mednaffe
+emulators/nestopia
+emulators/uae
+emulators/vice
+emulators/virtualjaguar
+emulators/xnp2
+emulators/xnp21kai
+games/2048-qt
+games/afternoonstalker
+games/amoebax
+games/angband
+games/angband,sdl
+games/armagetronad
+games/atomix
+games/barrage
+games/bass
+games/batrachians
+games/belooted
+games/beret
+games/billyfrontier
+games/blobwars
+games/bluemoon
+games/bomberclone
+games/boswars
+games/brogue
+games/brumbrumrally
+games/burgerspace
+games/bzflag
+games/candycrisis
+games/capitan-sevilla
+games/chocolate-doom
+games/chroma
+games/chroma-enigma
+games/circuit
+games/colobot/data
+games/corewars
+games/corsixth
+games/cosmosmash
+games/crack-attack
+games/crimson
+games/crispy-doom
+games/crossfire-client
+games/csmash
+games/dangerdeep
+games/dopewars
+games/dopewars,no_x11
+games/dsda-doom
+games/dunelegacy
+games/easyrpg
+games/eboard
+games/eboard-extras
+games/eduke32
+games/egoboo
+games/f1spirit
+games/fallingtime
+games/fifechan
+games/fillets-ng
+games/flare
+games/flare,-data
+games/flare,-main
+games/fna/faudio
+games/fna/fna3d
+games/forcedattack
+games/fotaq
+games/freebee
+games/freeblocks
+games/freeciv
+games/freeciv,
+games/freeciv,,-client
+games/freeciv,,-main
+games/freeciv,,-share
+games/freeciv,-client
+games/freeciv,-main
+games/freeciv,-share
+games/freecol
+games/freedink/game
+games/freedroid
+games/freedroidrpg
+games/freeserf
+games/freesynd
+games/fretsonfire
+games/galois
+games/gamine
+games/garden
+games/gigalomania
+games/glsfcave
+games/gnome-mastermind
+games/gnubg
+games/gnurobbo
+games/gottcode/connectagram
+games/gottcode/cutemaze
+games/gottcode/gottet
+games/gottcode/hexalate
+games/gottcode/peg-e
+games/gottcode/simsu
+games/gottcode/tanglet
+games/gottcode/tetzle
+games/gtkballs
+games/instead
+games/jag
+games/jbrickshooter
+games/julius
+games/jumpnbump
+games/kobodeluxe
+games/kobodeluxe,harder
+games/koboredux
+games/late
+games/lbreakout2
+games/lgeneral
+games/liberalcrimesquad
+games/libgdx/1.9.11
+games/libgdx/1.9.9
+games/liblcf
+games/lincity-ng
+games/love/mime
+games/manaplus
+games/meandmyshadow
+games/micropolis
+games/mightymike
+games/mirrormagic
+games/moonlander
+games/moonlander,no_sound
+games/moonlight-qt
+games/mvdsv
+games/mysticmine
+games/nanosaur
+games/nanosaur2
+games/nethack/3.4
+games/nethack/3.4,no_x11
+games/nethack/3.6
+games/nethack/3.6,no_x11
+games/neverball
+games/neverball,
+games/neverball,,-data
+games/neverball,,-main
+games/neverball,-data
+games/neverball,-main
+games/nsnake
+games/numptyphysics
+games/numptyphysics,-main
+games/numptyphysics,-npcomplete
+games/oilwar
+games/openjazz
+games/openjk
+games/opensonic
+games/opentyrian
+games/openxcom
+games/pathological
+games/pentobi
+games/polymorphable
+games/pyganim
+games/quadrupleback
+games/rftg
+games/rftg,-client
+games/roadfighter
+games/rocksndiamonds
+games/scummvm
+games/sdl-jstest
+games/sdlzombies
+games/shockolate
+games/snipe2d
+games/starfighter
+games/steamworks-nosteam
+games/stone-soup
+games/tbftss
+games/teeworlds
+games/tong
+games/toppler
+games/tutris
+games/vacuum
+games/vectoroids
+games/vitetris
+games/vkquake
+games/vms-empire
+games/vodovod
+games/warmux
+games/wizznic
+games/wordwarvi
+games/wrath
+games/xboard
+games/xcowsay
+games/xgalaga-sdl
+games/xlennart
+games/xminehunter
+games/xmj
+games/xwelltris
+games/xye
+games/zaz
+games/zelda3-data
+geo/foxtrotgps
+geo/garmindev
+geo/geoclue2
+geo/geocode-glib
+geo/geos
+geo/gpstk
+geo/gpx-viewer
+geo/josm
+geo/libchamplain
+geo/librttopo
+geo/mappyfile
+geo/osm-gps-map
+geo/py-planet
+geo/spatialite/virtualpg
+graphics/ansilove
+graphics/autopano-sift-c
+graphics/azpainter
+graphics/babl
+graphics/cairo
+graphics/cairomm
+graphics/chafa
+graphics/clutter/clutter-gst
+graphics/clutter/clutter-gtk
+graphics/clutter/cogl
+graphics/clutter/core
+graphics/colord
+graphics/colord-gtk
+graphics/cstitch
+graphics/dcmtk
+graphics/dcraw
+graphics/dia-gtk2
+graphics/djview4
+graphics/djvulibre
+graphics/exiftran
+graphics/exiv2
+graphics/fcft
+graphics/ffmpeg
+graphics/ffmpegthumbnailer
+graphics/flameshot
+graphics/fotowall
+graphics/freeglut
+graphics/fswebcam
+graphics/gd
+graphics/gdk-pixbuf-xlib
+graphics/gdk-pixbuf2
+graphics/geomview
+graphics/gle
+graphics/glfw
+graphics/glm
+graphics/glslang
+graphics/gmt
+graphics/gmt,-full
+graphics/gmt,-high
+graphics/gmt,-main
+graphics/gnofract4d
+graphics/gocr
+graphics/gocr,-gui
+graphics/gocr,-main
+graphics/gphoto2
+graphics/gpicview
+graphics/grafx2
+graphics/graphene
+graphics/graphite2
+graphics/gtkam
+graphics/gtkimageview
+graphics/img2pdf
+graphics/imv
+graphics/iview
+graphics/jasper
+graphics/jhead
+graphics/jpeg
+graphics/jpeginfo
+graphics/jpegoptim
+graphics/jpegpixi
+graphics/kplot
+graphics/lcms
+graphics/lcms2
+graphics/lensfun
+graphics/leptonica
+graphics/lerc
+graphics/libansilove
+graphics/libavif
+graphics/libexif-gtk
+graphics/libgexiv2
+graphics/libgphoto2
+graphics/libgxps
+graphics/libjxl
+graphics/liblqr
+graphics/libmng
+graphics/libpano13
+graphics/libplacebo
+graphics/libraw
+graphics/librtprocess
+graphics/libsixel
+graphics/libvips
+graphics/libwebp
+graphics/libwmf
+graphics/luagd
+graphics/mandelbulber
+graphics/mhgui
+graphics/mpeg_encode
+graphics/mscgen
+graphics/mtpaint
+graphics/nanosvg
+graphics/netpbm
+graphics/ocaml-cairo
+graphics/openbsd-backgrounds
+graphics/opencsg
+graphics/openjp2
+graphics/oxipng
+graphics/p5-Barcode-DataMatrix-PNG
+graphics/p5-Cairo
+graphics/p5-Chart
+graphics/p5-Chart-Clicker
+graphics/p5-GD
+graphics/p5-GD-Barcode
+graphics/p5-GD-Graph
+graphics/p5-GD-Graph3d
+graphics/p5-GD-SVG
+graphics/p5-GD-SecurityImage
+graphics/p5-GD-TextUtil
+graphics/p5-Graphics-Primitive-Driver-Cairo
+graphics/p5-Imager
+graphics/p5-Imager-QRCode
+graphics/p5-Sane
+graphics/peek
+graphics/pho
+graphics/pngquant
+graphics/povray
+graphics/pqiv
+graphics/pstoedit
+graphics/py-Pillow
+graphics/py-cairo
+graphics/py-opengl
+graphics/py-opengl,
+graphics/py-qrcode
+graphics/py2-Pillow
+graphics/py2-cairo
+graphics/py2-opengl
+graphics/pycha
+graphics/quesoglc
+graphics/quirc
+graphics/radeontop
+graphics/recoil
+graphics/sane-airscan
+graphics/sane-backends
+graphics/sane-backends,snmp
+graphics/scratch
+graphics/shaderc
+graphics/spirv-cross
+graphics/spirv-headers
+graphics/spirv-tools
+graphics/tgif
+graphics/tiff
+graphics/tiff2png
+graphics/ttfautohint
+graphics/vid
+graphics/viewnior
+graphics/volk
+graphics/vulkan-headers
+graphics/vulkan-loader
+graphics/vulkan-tools
+graphics/vulkan-utility-libraries
+graphics/vulkan-validation-layers
+graphics/webp-pixbuf-loader
+graphics/wmicons
+graphics/xfig
+graphics/xpaint
+graphics/xpm-pixbuf
+graphics/xsane
+graphics/xv
+graphics/xzgv
+graphics/zint
+graphics/zint,-main
+graphics/zint,-x11
+graphics/zxing
+graphics/zxing-cpp
+inputmethods/anthy
+inputmethods/anthy,-emacs
+inputmethods/anthy,-main
+inputmethods/cellwriter
+inputmethods/libskk
+inputmethods/libtomoe-gtk
+inputmethods/scim
+inputmethods/scim-anthy
+inputmethods/scim-chewing
+inputmethods/scim-fcitx
+inputmethods/scim-hangul
+inputmethods/scim-pinyin
+inputmethods/scim-tables
+inputmethods/tomoe
+inputmethods/uim
+inputmethods/uim,-gtk
+inputmethods/uim,-gtk3
+inputmethods/uim,-main
+inputmethods/uim-chewing
+inputmethods/uim-tomoe-gtk
+japanese/gwaei
+japanese/kanatest
+japanese/kanjipad
+japanese/kasumi
+java/gradle
+java/jBCrypt
+java/jna
+java/tanukiwrapper
+lang/abcl
+lang/algol68g
+lang/apl
+lang/binaryen
+lang/brainfuck
+lang/clojure
+lang/luabridge
+lang/lucee/v5
+lang/lucee/v6
+lang/microscheme
+lang/moarvm
+lang/nekovm
+lang/nqp
+lang/php/8.2
+lang/php/8.2,-apache
+lang/php/8.2,-bz2
+lang/php/8.2,-cgi
+lang/php/8.2,-curl
+lang/php/8.2,-dba
+lang/php/8.2,-dbg
+lang/php/8.2,-enchant
+lang/php/8.2,-gd
+lang/php/8.2,-gmp
+lang/php/8.2,-imap
+lang/php/8.2,-intl
+lang/php/8.2,-ldap
+lang/php/8.2,-main
+lang/php/8.2,-mysqli
+lang/php/8.2,-odbc
+lang/php/8.2,-pcntl
+lang/php/8.2,-pdo_dblib
+lang/php/8.2,-pdo_mysql
+lang/php/8.2,-pdo_odbc
+lang/php/8.2,-pdo_pgsql
+lang/php/8.2,-pdo_sqlite
+lang/php/8.2,-pgsql
+lang/php/8.2,-pspell
+lang/php/8.2,-shmop
+lang/php/8.2,-snmp
+lang/php/8.2,-soap
+lang/php/8.2,-sqlite3
+lang/php/8.2,-tidy
+lang/php/8.2,-xsl
+lang/php/8.2,-zip
+lang/php/8.2,embed,-embed
+lang/php/8.3
+lang/php/8.3,-apache
+lang/php/8.3,-bz2
+lang/php/8.3,-cgi
+lang/php/8.3,-curl
+lang/php/8.3,-dba
+lang/php/8.3,-dbg
+lang/php/8.3,-enchant
+lang/php/8.3,-gd
+lang/php/8.3,-gmp
+lang/php/8.3,-imap
+lang/php/8.3,-intl
+lang/php/8.3,-ldap
+lang/php/8.3,-main
+lang/php/8.3,-mysqli
+lang/php/8.3,-odbc
+lang/php/8.3,-pcntl
+lang/php/8.3,-pdo_dblib
+lang/php/8.3,-pdo_mysql
+lang/php/8.3,-pdo_odbc
+lang/php/8.3,-pdo_pgsql
+lang/php/8.3,-pdo_sqlite
+lang/php/8.3,-pgsql
+lang/php/8.3,-pspell
+lang/php/8.3,-shmop
+lang/php/8.3,-snmp
+lang/php/8.3,-soap
+lang/php/8.3,-sqlite3
+lang/php/8.3,-tidy
+lang/php/8.3,-xsl
+lang/php/8.3,-zip
+lang/php/8.3,embed,-embed
+lang/php/8.4
+lang/php/8.4,-apache
+lang/php/8.4,-bz2
+lang/php/8.4,-cgi
+lang/php/8.4,-curl
+lang/php/8.4,-dba
+lang/php/8.4,-dbg
+lang/php/8.4,-enchant
+lang/php/8.4,-gd
+lang/php/8.4,-gmp
+lang/php/8.4,-intl
+lang/php/8.4,-ldap
+lang/php/8.4,-main
+lang/php/8.4,-mysqli
+lang/php/8.4,-odbc
+lang/php/8.4,-pcntl
+lang/php/8.4,-pdo_dblib
+lang/php/8.4,-pdo_mysql
+lang/php/8.4,-pdo_odbc
+lang/php/8.4,-pdo_pgsql
+lang/php/8.4,-pdo_sqlite
+lang/php/8.4,-pgsql
+lang/php/8.4,-shmop
+lang/php/8.4,-snmp
+lang/php/8.4,-soap
+lang/php/8.4,-sqlite3
+lang/php/8.4,-tidy
+lang/php/8.4,-xsl
+lang/php/8.4,-zip
+lang/php/8.4,embed,-embed
+lang/processing
+lang/quickjs
+lang/rakudo
+lang/rust
+lang/rust,-bootstrap
+lang/rust,-clippy
+lang/rust,-gdb
+lang/rust,-main
+lang/rust,-rustfmt
+lang/rust,-src
+lang/snobol4
+lang/vala
+lang/vala,,-main
+lang/vala,-main
+lang/wasi-libc
+lang/wasi-sdk/compiler-rt
+lang/wasi-sdk/libcxx
+lang/wasi-sdk/libcxxabi
+mail/asmail
+mail/bmf,mysql
+mail/courier-authlib
+mail/courier-authlib,
+mail/courier-authlib,-ldap
+mail/courier-authlib,-main
+mail/courier-authlib,-mysql
+mail/courier-authlib,-pgsql
+mail/courier-authlib,-userdb
+mail/courier-imap
+mail/courier-imap,-main
+mail/courier-imap,-pop3
+mail/dovecot
+mail/dovecot,-ldap
+mail/dovecot,-mysql
+mail/dovecot,-postgresql
+mail/dovecot,-server
+mail/dovecot,gssapi
+mail/dovecot,gssapi,-ldap
+mail/dovecot,gssapi,-mysql
+mail/dovecot,gssapi,-postgresql
+mail/dovecot,gssapi,-server
+mail/dovecot-fts-flatcurve
+mail/dovecot-pigeonhole
+mail/dovecot-pigeonhole,ldap
+mail/exim,ldap
+mail/exim,ldap,-main
+mail/exim,ldap,mysql,postgresql
+mail/exim,ldap,mysql,postgresql,-main
+mail/exim,mysql
+mail/exim,mysql,-main
+mail/grommunio/libexmdbpp
+mail/imapdedup
+mail/isync
+mail/ldapvacation
+mail/libetpan
+mail/maildrop
+mail/maildrop,-main
+mail/maildrop,-utils
+mail/maildrop,postfix
+mail/maildrop,postfix,-main
+mail/maildrop,postfix,-utils
+mail/mailest
+mail/mailgraph
+mail/mew
+mail/mutt,sasl
+mail/mutt,sasl,slang
+mail/neomutt
+mail/neomutt,sasl
+mail/nmh,sasl
+mail/offlineimap
+mail/opensmtpd-tables/mysql
+mail/p5-Mail-GnuPG
+mail/p5-Mail-SpamAssassin
+mail/pecl-mailparse,php82
+mail/pecl-mailparse,php83
+mail/pecl-mailparse,php84
+mail/perdition
+mail/perdition,-ldap
+mail/perdition,-main
+mail/perdition,-mysql
+mail/perdition,-pgsql
+mail/pine-pgp-filters
+mail/postfix/stable,ldap
+mail/postfix/stable,ldap,sasl2
+mail/postfix/stable,mysql
+mail/postfix/stable,mysql,sasl2
+mail/postfix/stable,pgsql,sasl2
+mail/postfix/stable,sasl2
+mail/postfix/stable35,ldap
+mail/postfix/stable35,ldap,sasl2
+mail/postfix/stable35,mysql
+mail/postfix/stable35,mysql,sasl2
+mail/postfix/stable35,pgsql,sasl2
+mail/postfix/stable35,sasl2
+mail/py-dkimpy
+mail/rcube-contextmenu
+mail/rcube-dkimstatus
+mail/rcube-dovecot_ident
+mail/rcube-html5-notifier
+mail/rcube-ldapAliasSync
+mail/rcube-markasjunk2
+mail/rcube-sieverules
+mail/rcube-yubikey-plugin
+mail/roundcubemail
+mail/roundcubemail,
+mail/roundcubemail,,-classic
+mail/roundcubemail,,-larry
+mail/roundcubemail,,-main
+mail/roundcubemail,-classic
+mail/roundcubemail,-larry
+mail/roundcubemail,-main
+mail/sendmail,ldap
+mail/sendmail,ldap,-main
+mail/sendmail,ldap,sasl
+mail/sendmail,ldap,sasl,-main
+mail/sendmail,sasl
+mail/sendmail,sasl,-main
+mail/smtp-vilter,ldap
+mail/spampd
+math/armadillo
+math/arpack
+math/arpack,-main
+math/arpack,-mpi
+math/bc-gh
+math/calcoo
+math/cfitsio
+math/cglm
+math/coq
+math/double-conversion
+math/eigen3
+math/ensmallen
+math/fann
+math/flann
+math/galculator
+math/geogebra
+math/gnuplot
+math/gnuplot,no_x11
+math/grace
+math/grace,no_x11
+math/grpn
+math/igraph
+math/kst
+math/lapack
+math/lean
+math/libcerf
+math/lpsolve/python
+math/mathomatic
+math/matio
+math/med
+math/minisat
+math/muparser
+math/netcdf
+math/nlopt
+math/p5-AI-FANN
+math/p5-AI-NeuralNet-Kohonen-Visual
+math/py-cvxopt
+math/py-sympy
+math/py2-numpy
+math/qhull
+math/spread-sheet-widget
+math/suitesparse
+math/superlu
+math/visidata
+math/z3
+meta/audacious
+meta/jitsi
+meta/zyn-fusion
+misc/cbb
+misc/dtcltiny
+misc/feathernotes
+misc/freeopcua/py-opcua
+misc/gpsd
+misc/gpsd,-main
+misc/gpsd,-php
+misc/logjam
+misc/m17n/lib
+misc/magicpoint
+misc/mc
+misc/memcached,sasl
+misc/migrationtools
+misc/osinfo/libosinfo
+misc/osinfo/osinfo-db
+misc/osinfo/osinfo-db-tools
+misc/plan
+misc/redshift
+misc/remind
+misc/shared-desktop-ontologies
+misc/shared-mime-info
+misc/spdrs60
+misc/wordnet
+misc/xcdroast
+misc/xkcd-viewer
+misc/xtar
+multimedia/aom
+multimedia/atomicparsley
+multimedia/devede
+multimedia/frei0r-plugins
+multimedia/gaupol
+multimedia/get_iplayer
+multimedia/gstreamer1/core
+multimedia/gstreamer1/devtools
+multimedia/gstreamer1/editing-services
+multimedia/gstreamer1/libav
+multimedia/gstreamer1/mm
+multimedia/gstreamer1/plugins-bad
+multimedia/gstreamer1/plugins-base
+multimedia/gstreamer1/plugins-good
+multimedia/gstreamer1/plugins-ugly
+multimedia/gstreamer1/py-gstreamer
+multimedia/gstreamer1/rtsp-server
+multimedia/handbrake
+multimedia/imagination
+multimedia/libass
+multimedia/libde265
+multimedia/libde265,-main
+multimedia/libde265,-tools
+multimedia/libmatroska
+multimedia/libmms
+multimedia/libv4l
+multimedia/libvidstab
+multimedia/minidlna
+multimedia/mjpegtools
+multimedia/motion
+multimedia/motion,mysql
+multimedia/motion,pgsql
+multimedia/mpv
+multimedia/playerctl
+multimedia/py-ffmpeg-progress-yield
+multimedia/streamlink
+multimedia/subrip
+multimedia/svt-av1
+multimedia/vitunes
+multimedia/x265
+multimedia/xine-lib
+multimedia/xine-ui
+multimedia/yle-dl
+net/arouteserver
+net/avahi
+net/avahi,
+net/avahi,,-glib
+net/avahi,,-gtk3
+net/avahi,,-gui
+net/avahi,,-libs
+net/avahi,,-main
+net/avahi,,-python
+net/avahi,-glib
+net/avahi,-libs
+net/avahi,-main
+net/avahi,bootstrap,no_gui
+net/avahi,bootstrap,no_gui,-glib
+net/avahi,bootstrap,no_gui,-libs
+net/avahi,bootstrap,no_gui,-main
+net/barrier
+net/bgpq4
+net/bindgraph
+net/bird/2
+net/bird/3
+net/bitlbee
+net/bitlbee,libpurple
+net/bitlbee,libpurple,otr
+net/bitlbee,otr
+net/bitlbee-facebook
+net/bitlbee-mastodon
+net/blaeu
+net/bore
+net/cadaver
+net/castget
+net/cppzmq
+net/curl
+net/dico
+net/dleyna
+net/dog
+net/doh
+net/enet
+net/ettercap
+net/ettercap,no_x11
+net/ezstream
+net/flickcurl
+net/fort
+net/freeradius
+net/freeradius,-freetds
+net/freeradius,-iodbc
+net/freeradius,-ldap
+net/freeradius,-main
+net/freeradius,-memcached
+net/freeradius,-mysql
+net/freeradius,-pgsql
+net/freeradius,-python3
+net/glib2-networking
+net/gmudix
+net/grsync
+net/gssdp
+net/gtk-gnutella
+net/guacamole/client
+net/guacamole/client,-duo
+net/guacamole/client,-header
+net/guacamole/client,-history
+net/guacamole/client,-jdbc
+net/guacamole/client,-json
+net/guacamole/client,-ldap
+net/guacamole/client,-main
+net/guacamole/client,-quickconnect
+net/guacamole/client,-sso
+net/guacamole/client,-totp
+net/guacamole/server
+net/gupnp/av
+net/gupnp/core
+net/gupnp/dlna
+net/gupnp/igd
+net/gupnp/tools
+net/h323plus
+net/haproxy
+net/hurl
+net/i2p
+net/icecast
+net/icinga/icinga-php-library
+net/icinga/icinga-php-thirdparty
+net/icinga/icingadb-web
+net/icinga/web2
+net/icinga/web2-module-director
+net/icinga/web2-module-incubator
+net/irctk
+net/irssi
+net/irssi,-main
+net/irssi,-otr
+net/irssi-icb
+net/isc-bind
+net/jitsi/jicofo
+net/jitsi/prosody-plugins
+net/jitsi/srtp
+net/jitsi/videobridge
+net/jnettop
+net/knot
+net/lagrange
+net/libaccounts-glib
+net/libaccounts-qt
+net/libcares
+net/libfilezilla
+net/libmygpo-qt
+net/libnice
+net/liboauth
+net/libproxy
+net/librenms
+net/librsync
+net/libslirp
+net/libupnpp
+net/libvncserver
+net/loudmouth
+net/magic-wormhole
+net/mbrowse
+net/meanwhile
+net/megatools
+net/microblog-purple
+net/miniupnp/libnatpmp
+net/monitoring-plugins
+net/monitoring-plugins,-dbi
+net/monitoring-plugins,-fping
+net/monitoring-plugins,-game
+net/monitoring-plugins,-ldap
+net/monitoring-plugins,-main
+net/monitoring-plugins,-mysql
+net/monitoring-plugins,-pgsql
+net/monitoring-plugins,-radius
+net/monitoring-plugins,-snmp
+net/mosquitto
+net/mrtg
+net/msoak
+net/mtr,gtk
+net/munin,-server
+net/nagios/check_bioctl
+net/nagios/check_hw_sensors
+net/nagios/check_mssql_health
+net/nagios/check_openbgpd
+net/nagios/check_rabbitmq
+net/nagios/check_sip
+net/nagios/check_squid
+net/nagios/cnagios
+net/nagios/nagios
+net/nagios/nagios,-main
+net/nagios/nagios,-web
+net/nagios/nagios,chroot
+net/nagios/nagios,chroot,-main
+net/nagios/nagios,chroot,-web
+net/nagios/nrpe
+net/nagios/nsca,-main
+net/nanomsg
+net/napalm/py-napalm
+net/neon
+net/net-snmp,-tkmib
+net/netatalk3
+net/nfdump
+net/nfdump,-main
+net/nfdump,-nfprofile
+net/nfsen
+net/nicotine-plus
+net/nomadnet
+net/olsrd
+net/olsrd,-gui
+net/olsrd,-main
+net/openconnect
+net/openconnect,light
+net/openvpn,mbedtls
+net/pcapdiff
+net/pfstat
+net/pfstat,-daemon
+net/pfstat,-main
+net/pidgin
+net/pidgin,
+net/pidgin,,-finch
+net/pidgin,,-libpurple
+net/pidgin,,-main
+net/pidgin,-finch
+net/pidgin,-libpurple
+net/pidgin,-main
+net/pidgin,gtkspell
+net/pidgin,gtkspell,-finch
+net/pidgin,gtkspell,-libpurple
+net/pidgin,gtkspell,-main
+net/pidgin-icb
+net/pidgin-skypeweb
+net/pidgin-window-merge
+net/poco
+net/poezio
+net/pounce
+net/prosody
+net/pure-ftpd,ldap
+net/pure-ftpd,ldap,virtual_chroot
+net/pure-ftpd,mysql
+net/pure-ftpd,mysql,virtual_chroot
+net/purple-matrix
+net/purple-rocketchat
+net/putty
+net/putty,-gui
+net/putty,-main
+net/py-IOSXR
+net/py-aiodns
+net/py-apprise
+net/py-cares
+net/py-curl
+net/py-gevent-websocket
+net/py-geventhttpclient
+net/py-impacket
+net/py-junos-eznc
+net/py-libknot
+net/py-lxmf
+net/py-nbxmpp
+net/py-ncclient
+net/py-netmiko
+net/py-nxos
+net/py-ripe.atlas.sagan
+net/py-ripe.atlas.tools
+net/py-rns
+net/py-rrdtool
+net/py-slixmpp
+net/py-smbc
+net/py-tinytuya
+net/py-transmissionrpc-ng
+net/py-txtorcon
+net/rabbitmq-c
+net/radcli
+net/rrdtool
+net/rrdtool,-main
+net/rrdtool,-ruby
+net/rrdtool,-update
+net/rtg
+net/rtorrent
+net/samba
+net/samba,-docs
+net/samba,-main
+net/scapy
+net/seafile/client
+net/seafile/libsearpc
+net/seafile/seafile
+net/silc-client
+net/sipsak
+net/slurm
+net/smokeping
+net/spectrum-tools
+net/spectrum-tools,-main
+net/spectrum-tools,-utils
+net/ssldump
+net/swirc
+net/synapse
+net/synergy
+net/tclcurl
+net/telepathy/telepathy-glib
+net/telepathy/telepathy-idle
+net/telepathy/telepathy-logger
+net/telepathy/telepathy-mission-control
+net/tintin++
+net/toxcore
+net/transmission-remote-gtk
+net/trippy
+net/tuisky
+net/twirssi
+net/uhttpmock
+net/unison
+net/unison,-gui
+net/unison,-main
+net/vncsnapshot
+net/vnstat
+net/vnstat,-main
+net/vnstat,-vnstati
+net/weechat
+net/weechat,-lua
+net/weechat,-main
+net/weechat,-python
+net/weechat,-ruby
+net/weechat,-tcl
+net/wireguard-tools
+net/yersinia
+net/zabbix
+net/zabbix,-main
+net/zabbix,-web
+net/zabbix,mysql
+net/zabbix,mysql,-main
+net/zabbix,mysql,-proxy
+net/zabbix,mysql,-server
+net/zabbix,mysql,-web
+net/zabbix,pgsql
+net/zabbix,pgsql,-main
+net/zabbix,pgsql,-proxy
+net/zabbix,pgsql,-server
+net/zabbix,pgsql,-web
+net/zabbix,sqlite3
+net/zabbix,sqlite3,-main
+net/zabbix,sqlite3,-proxy
+net/zabbix,sqlite3,-web
+net/ziproxy
+net/znc
+net/znc,-main
+net/znc,-sasl
+news/p5-Gateway
+news/p5-News-Article
+news/sabnzbd
+plan9/sam
+print/brlaser
+print/cups,-libs
+print/cups-bjnp
+print/cups-pk-helper
+print/epson-inkjet-printer-escpr
+print/fontforge
+print/foomatic-db
+print/foomatic-db-engine
+print/ghostscript/gnu
+print/ghostscript/gnu,gtk
+print/gv
+print/hplip,-common
+print/hplip,-hpaio
+print/htmldoc
+print/lcdf-typetools
+print/libharu
+print/libspectre
+print/lss
+print/luametatex
+print/ps2eps
+print/psdim
+print/py-cups
+print/py-fonttools
+print/py-pikepdf
+print/py-reportlab
+print/qpdf
+print/sile
+print/system-config-printer
+print/texlive/base,-mktexlsr
+print/texlive/base,-synctex
+print/texlive/texmf,-buildset
+print/transfig
+print/u2ps
+print/unpaper
+print/weasyprint
+productivity/aqbanking
+productivity/baikal
+productivity/bruce
+productivity/deskzilla
+productivity/fet
+productivity/gnucash-docs
+productivity/grisbi
+productivity/gsimplecal
+productivity/gtg
+productivity/homebank
+productivity/jrnlc
+productivity/khal
+productivity/lifeograph
+productivity/minder
+productivity/projectlibre
+productivity/py-tasklib
+productivity/radicale
+productivity/radicale2
+productivity/rubrica2
+productivity/taskd
+productivity/taskwarrior
+productivity/teapot
+productivity/thinkingrock
+productivity/timewarrior
+productivity/vdirsyncer
+productivity/vit
+productivity/vym
+productivity/xinvest
+productivity/xquote
+productivity/yokadi
+productivity/zim
+security/acme.sh
+security/age-plugin-yubikey
+security/badkeys
+security/clusterssh
+security/cyrus-sasl-xoauth2
+security/cyrus-sasl2
+security/cyrus-sasl2,db4
+security/cyrus-sasl2,gssapi
+security/cyrus-sasl2,ldap
+security/cyrus-sasl2,mysql
+security/cyrus-sasl2,pgsql
+security/cyrus-sasl2,sqlite3
+security/dirb
+security/encfs
+security/fwbuilder
+security/gnupg
+security/gnutls
+security/gringotts
+security/hashdeep
+security/hcxtools
+security/hydra
+security/hydra,-gui
+security/hydra,-main
+security/kc,yubikey
+security/keepassxc
+security/keepassxc,yubikey
+security/keyringer
+security/knockpy
+security/lastpass-cli
+security/letsencrypt/client
+security/letsencrypt/py-acme
+security/libfprint
+security/libssh
+security/minisign
+security/oath-toolkit
+security/oath-toolkit,-main
+security/oath-toolkit,-pskc
+security/opensc
+security/opmsg
+security/otpcalc
+security/p5-GPG
+security/p5-GnuPG
+security/p5-GnuPG-Interface
+security/p5-Module-Signature
+security/p5-PGP-Sign
+security/pass-import
+security/pass-otp
+security/password-store
+security/pcsc-cyberjack
+security/pcsc-tools
+security/pecl-mcrypt,php82
+security/pecl-mcrypt,php83
+security/pinentry
+security/pinentry,,-main
+security/pinentry,-main
+security/pivy
+security/plaso
+security/plass
+security/polarssl
+security/py-bcrypt
+security/py-cryptography
+security/py-dfvfs
+security/py-duo_universal
+security/py-fido2
+security/py-gnupg
+security/py-in-toto
+security/py-josepy
+security/py-keyring
+security/py-oauthlib
+security/py-openssl
+security/py-paramiko
+security/py-passlib
+security/py-ropper
+security/py-scp
+security/py-secretstorage
+security/py-securesystemslib
+security/py-service_identity
+security/py-spake2
+security/py-spnego
+security/py-trustme
+security/qca-qt5
+security/qtkeychain
+security/qtpass
+security/rnp
+security/routersploit
+security/ssh-askpass-fullscreen
+security/ssh-ldap-helper
+security/steghide
+security/stegseek
+security/sudo,gettext,ldap
+security/sudo,gettext,ldap,-main
+security/sudo,gettext,ldap,-python
+security/tclgpg
+security/tls-attacker
+security/uacme
+security/wfuzz
+security/xmlsec
+security/xmlsec,-docs
+security/xmlsec,-main
+security/yubico/yubico-c-client
+security/yubico/yubico-piv-tool
+security/yubico/yubikey-manager
+security/yubico/yubikey-personalization
+security/yubico/yubikey-personalization-gui
+security/zaproxy
+security/zkt
+shells/fish
+shells/nushell
+sysutils/aarch64-esr-decoder
+sysutils/accountsservice
+sysutils/ansible
+sysutils/ansible-core
+sysutils/ansible-lint
+sysutils/apcupsd
+sysutils/apcupsd,-cgi
+sysutils/apcupsd,-main
+sysutils/apcupsd,-x11
+sysutils/backuppc
+sysutils/bacula
+sysutils/bacula,-bat
+sysutils/bacula,-main
+sysutils/bacula,-mysql
+sysutils/bacula,-pgsql
+sysutils/bacula,-server
+sysutils/bacula,-sqlite3
+sysutils/bat
+sysutils/bfs
+sysutils/borgbackup/2.0
+sysutils/borgmatic
+sysutils/broot
+sysutils/bubblemon-dockapp
+sysutils/bupstash
+sysutils/burp/2.0
+sysutils/burp/2.1
+sysutils/burp/2.2
+sysutils/conky,no_x11
+sysutils/consolekit
+sysutils/crust
+sysutils/curlftpfs
+sysutils/dfc
+sysutils/dtb
+sysutils/duplicity
+sysutils/ec2-api-tools
+sysutils/eza
+sysutils/fabric
+sysutils/fclones
+sysutils/fd
+sysutils/flashrom
+sysutils/flatpak/xdg-dbus-proxy
+sysutils/fprintd
+sysutils/galleon
+sysutils/gdmap
+sysutils/gitolite
+sysutils/gkrellm/gkrellm
+sysutils/gkrellm/gkrellm,-client
+sysutils/gkrellm/gkrellm,-main
+sysutils/gkrellm/plugins/aclock
+sysutils/gkrellm/plugins/bgchg
+sysutils/gkrellm/plugins/flynn
+sysutils/gkrellm/plugins/itime
+sysutils/gkrellm/plugins/kam
+sysutils/gkrellm/plugins/launch
+sysutils/gkrellm/plugins/mailwatch
+sysutils/gkrellm/plugins/moon
+sysutils/gkrellm/plugins/reminder
+sysutils/gkrellm/plugins/stock
+sysutils/gkrellm/plugins/sun
+sysutils/gkrellm/plugins/volume
+sysutils/gkrellm/plugins/weather
+sysutils/gkrellm/plugins/wireless
+sysutils/google-cloud-sdk
+sysutils/gsmartcontrol
+sysutils/htop
+sysutils/hw-probe
+sysutils/ipmitool
+sysutils/libfwsi
+sysutils/liblnk
+sysutils/libptytty
+sysutils/librelp
+sysutils/login_fingerprint
+sysutils/login_ldap
+sysutils/login_oath
+sysutils/lsd
+sysutils/lsyncd
+sysutils/menulibre
+sysutils/modlogan
+sysutils/msktutil
+sysutils/nut
+sysutils/nut,-cgi
+sysutils/nut,-main
+sysutils/nut,-snmp
+sysutils/openwsman
+sysutils/polkit
+sysutils/puppetserver/7
+sysutils/puppetserver/8
+sysutils/py-ansible-compat
+sysutils/py-ansible-libssh
+sysutils/py-fsspec
+sysutils/py-ghmi
+sysutils/py-parallel-ssh
+sysutils/py-tsk
+sysutils/py-vsphere-automation
+sysutils/ranger
+sysutils/rdiff-backup
+sysutils/remotebox
+sysutils/resmon,-nagios
+sysutils/riemann
+sysutils/rofi
+sysutils/rsyslog
+sysutils/rsyslog,-elasticsearch
+sysutils/rsyslog,-main
+sysutils/rsyslog,-mysql
+sysutils/rsyslog,-normalize
+sysutils/rsyslog,-pgsql
+sysutils/rundeck
+sysutils/salt
+sysutils/salt-testing
+sysutils/sblim-sfcc
+sysutils/sshfs-fuse
+sysutils/tarsnap-gui
+sysutils/testdisk
+sysutils/tkdvd
+sysutils/tmate
+sysutils/tmux-mem-cpu-load
+sysutils/toad
+sysutils/tray-app
+sysutils/twc
+sysutils/ugrep
+sysutils/upower
+sysutils/usmb
+sysutils/wsmancli
+sysutils/xps
+telephony/baresip/re
+telephony/baresip/restund
+telephony/bcg729
+telephony/coturn
+telephony/iaxmodem
+telephony/kamailio
+telephony/kamailio,-berkeley
+telephony/kamailio,-carrierroute
+telephony/kamailio,-ldap
+telephony/kamailio,-main
+telephony/kamailio,-mysql
+telephony/kamailio,-perl
+telephony/kamailio,-postgresql
+telephony/kamailio,-presence
+telephony/kamailio,-radius
+telephony/kamailio,-snmpstats
+telephony/kamailio,-xml
+telephony/libzrtp
+telephony/linphone/bctoolbox
+telephony/linphone/bcunit
+telephony/linphone/belcard
+telephony/linphone/belle-sip
+telephony/linphone/belr
+telephony/linphone/bzrtp
+telephony/linphone/mediastreamer2
+telephony/linphone/ortp
+telephony/pjsua
+telephony/pjsua,-main
+telephony/pjsua,-pjsua
+telephony/spandsp
+textproc/amber
+textproc/apertium-dicts/oc-es
+textproc/catfish
+textproc/cmark
+textproc/crossfire
+textproc/csvlens
+textproc/delta
+textproc/ding
+textproc/ebook-tools
+textproc/enchant
+textproc/enchant2
+textproc/epubcheck
+textproc/gspell
+textproc/gtk-doc
+textproc/gtkspell
+textproc/gtkspell3
+textproc/halibut
+textproc/hexyl
+textproc/hotdoc
+textproc/html-xml-utils
+textproc/htmlq
+textproc/icu4c,-wwwdata
+textproc/iksemel
+textproc/jless
+textproc/libebml
+textproc/libical
+textproc/libical,-glib
+textproc/libical,-main
+textproc/liblrdf
+textproc/libnxml
+textproc/libspelling
+textproc/libtranslate
+textproc/libunicode
+textproc/libxml++
+textproc/libxml++40
+textproc/libxmlb
+textproc/mdbook
+textproc/mgdiff
+textproc/multimarkdown
+textproc/mupdf
+textproc/mupdf,js
+textproc/nfoview
+textproc/nlohmann-json
+textproc/opensearch
+textproc/ots
+textproc/p5-Syntax-Highlight-Mason
+textproc/p5-Template-Plugin-GD
+textproc/p5-tkispell
+textproc/pastel
+textproc/pdftk
+textproc/pecl-yaml,php82
+textproc/pecl-yaml,php83
+textproc/pecl-yaml,php84
+textproc/podofo
+textproc/pplatex
+textproc/pugixml
+textproc/py-enchant
+textproc/py-ijson
+textproc/py-jellyfish
+textproc/py-orjson
+textproc/py-pdfminer
+textproc/py-referencing
+textproc/py-telegram-text
+textproc/rapidjson
+textproc/raptor
+textproc/rasqal
+textproc/redland
+textproc/redland,-main
+textproc/redland,-mysql
+textproc/redland,-pgsql
+textproc/riff
+textproc/ripgrep
+textproc/ruby-commonmarker,ruby32
+textproc/ruby-commonmarker,ruby33
+textproc/ruby-commonmarker,ruby34
+textproc/solr
+textproc/sphinx
+textproc/stringtemplate
+textproc/tcpdf
+textproc/tinyxml2
+textproc/typst
+textproc/uchardet
+textproc/uncrustify
+textproc/xpdf
+textproc/xpdf3
+textproc/zathura/core
+textproc/zathura/plugins/cb
+textproc/zathura/plugins/djvu
+textproc/zathura/plugins/mupdf
+textproc/zathura/plugins/ps
+wayland/dmenu-wayland
+wayland/foot
+wayland/grim
+wayland/gtk-layer-shell
+wayland/gtk4-layer-shell
+wayland/havoc
+wayland/libei
+wayland/libevdev-openbsd
+wayland/libinput-openbsd
+wayland/slurp
+wayland/swaybg
+wayland/swayidle
+wayland/swaylock
+wayland/wayland
+wayland/wayland-protocols
+wayland/wayland-utils
+wayland/wev
+wayland/wf-config
+wayland/wlr-randr
+wayland/wmenu
+wayland/xwayland
+www/ada
+www/analog
+www/ap2-mod_dnssd
+www/ap2-mod_jk
+www/ap2-mod_perl
+www/ap2-mod_wsgi
+www/apache-httpd
+www/aria2
+www/awl
+www/blogsum
+www/buku
+www/c-icap/c-icap
+www/c-icap/c-icap,-db
+www/c-icap/c-icap,-ldap
+www/c-icap/c-icap,-main
+www/castor
+www/civetweb
+www/composer
+www/dillo
+www/dokuwiki
+www/drush
+www/edbrowse
+www/elinks
+www/ephemetoot
+www/fcgi-cgi
+www/freshrss
+www/geckodriver
+www/hiawatha
+www/httrack
+www/icedtea-web
+www/jupyter-notebook
+www/kore,acme
+www/kore,curl
+www/libcroco
+www/libmicrohttpd
+www/libwebsockets
+www/libwpe
+www/lightsquid
+www/lighttpd
+www/lighttpd,ldap
+www/lighttpd,ldap,mysql
+www/lighttpd,ldap,pgsql
+www/lighttpd,mysql
+www/lighttpd,pgsql
+www/links+
+www/minitube
+www/netsurf/browser
+www/netsurf/netsurf-fb
+www/newsboat
+www/newsraft
+www/nghttp3
+www/nostt
+www/p5-Apache-DBI
+www/p5-Apache-MP3
+www/p5-Catalyst-Engine-Apache
+www/p5-Catalyst-View-Mason
+www/p5-Dancer-Plugin-Thumbnail
+www/p5-HTML-Mason
+www/p5-HTML-Mason-PSGIHandler
+www/p5-HTTP-Server-Simple-Mason
+www/p5-MasonX-Interp-WithCallbacks
+www/p5-Maypole
+www/p5-Maypole-Authentication-UserSessionCookie
+www/p5-Mojolicious-Plugin-Thumbnail
+www/p5-WWW-Ebay
+www/p5-libapreq2
+www/pear
+www/pear,-main
+www/pear,-utils
+www/pecl-memcached,php82
+www/pecl-memcached,php83
+www/pecl-memcached,php84
+www/pecl-pledge,php82
+www/pecl-pledge,php83
+www/pecl-pledge,php84
+www/pecl-raphf,php82
+www/pecl-raphf,php83
+www/pecl-raphf,php84
+www/pecl-ssh2,php82
+www/pecl-ssh2,php83
+www/pecl-ssh2,php84
+www/phpldapadmin
+www/phpmyadmin
+www/phppgadmin
+www/phpvirtualbox
+www/pipe-viewer
+www/pipe-viewer,-gtk
+www/pipe-viewer,-main
+www/puppetboard
+www/purritobin
+www/py-adblock
+www/py-aiohttp
+www/py-aiohttp-oauthlib
+www/py-aioquic
+www/py-flasgger
+www/py-gunicorn
+www/py-http_ece
+www/py-httpbin
+www/py-httpx-ntlm
+www/py-jwt
+www/py-mastodon.py
+www/py-ndg-httpsclient
+www/py-openapi-core
+www/py-requests-oauthlib
+www/py-treq
+www/py-urlgrabber
+www/py-wapiti_arsenic
+www/racktables
+www/ruby-raindrops,ruby32
+www/ruby-raindrops,ruby33
+www/ruby-raindrops,ruby34
+www/ruby-unicorn,ruby32
+www/ruby-unicorn,ruby33
+www/ruby-unicorn,ruby34
+www/sarg
+www/sarg,ldap
+www/selfoss
+www/snownews
+www/squid
+www/squid,-ldap
+www/squid,-main
+www/squid,krb5
+www/squid,krb5,-ldap
+www/squid,krb5,-main
+www/squidclamav
+www/squidguard
+www/squidguard,ldap
+www/stagit
+www/swiggle
+www/syweb
+www/tidy
+www/tomcat/v10
+www/tomcat/v10,-examples
+www/tomcat/v10,-main
+www/tomcat/v9
+www/tomcat/v9,-examples
+www/tomcat/v9,-main
+www/tootstream
+www/trac
+www/ttyd
+www/uget
+www/uriparser
+www/urlwatch
+www/vnu
+www/wApua
+www/webalizer
+www/woob
+www/wp-cli
+www/wpebackend-fdo
+www/yt-dlp
+x11/Xdialog
+x11/adwaita-qt
+x11/aewm
+x11/afterstep
+x11/agar/agar
+x11/agar/test
+x11/alacritty
+x11/arandr
+x11/arc-icon-theme
+x11/arc-theme/solid
+x11/arc-theme/transparent
+x11/asapm
+x11/belt
+x11/bemenu
+x11/chicago95-theme
+x11/cool-retro-term
+x11/ctwm
+x11/dbus-glib
+x11/dbus-python
+x11/dbusmenu-qt
+x11/dragon-drop
+x11/dunst
+x11/ede/desktop
+x11/ede/lib
+x11/elementary-xfce-icon-theme
+x11/elementary/calculator
+x11/elementary/dock
+x11/elementary/granite
+x11/emelfm2
+x11/emwm
+x11/emwm-utils
+x11/faba-icon-theme
+x11/faenza-icon-theme
+x11/fbpanel
+x11/fleditor
+x11/fltk
+x11/flvw
+x11/flwm
+x11/freerdp
+x11/fsv
+x11/fvwm2
+x11/fvwm3
+x11/gbdfed
+x11/gcolor2
+x11/gedit/amtk
+x11/gedit/gfls
+x11/gedit/gtksourceview
+x11/gedit/tepl
+x11/gentoo
+x11/gigolo
+x11/girara
+x11/gmrun
+x11/gmtk
+x11/gnome-colors-icon-theme
+x11/gnome-mplayer
+x11/gnome/adwaita-icon-theme
+x11/gnome/adwaita-icon-theme-legacy
+x11/gnome/at-spi2-core
+x11/gnome/autoar
+x11/gnome/backgrounds
+x11/gnome/dconf-editor
+x11/gnome/desktop
+x11/gnome/desktop,-common
+x11/gnome/desktop,-gtk4
+x11/gnome/desktop,-main
+x11/gnome/epub-thumbnailer
+x11/gnome/gcr
+x11/gnome/gcr4
+x11/gnome/gdl
+x11/gnome/gdm
+x11/gnome/gom
+x11/gnome/grilo
+x11/gnome/gvfs
+x11/gnome/gvfs,,-main
+x11/gnome/gvfs,-main
+x11/gnome/icon-theme
+x11/gnome/icon-theme-symbolic
+x11/gnome/libcloudproviders
+x11/gnome/libdazzle
+x11/gnome/libdmapsharing4
+x11/gnome/libgda
+x11/gnome/libgnomecanvas
+x11/gnome/libgweather4
+x11/gnome/libmediaart
+x11/gnome/librsvg
+x11/gnome/libsecret
+x11/gnome/libxklavier
+x11/gnome/menus
+x11/gnome/orca
+x11/gnome/power-manager
+x11/gnome/py-atspi
+x11/gnome/settings-daemon
+x11/gnome/themes-extra
+x11/gnome/tinysparql
+x11/gnome/totem-pl-parser
+x11/gnome/video-effects
+x11/gob2
+x11/goggles
+x11/greybird
+x11/gromit-mpx
+x11/gtk+2
+x11/gtk+2,-cups
+x11/gtk+2,-main
+x11/gtk+3
+x11/gtk+3,-cups
+x11/gtk+3,-main
+x11/gtk+4
+x11/gtk+4,-cups
+x11/gtk+4,-demos
+x11/gtk+4,-guic
+x11/gtk+4,-main
+x11/gtk+4,-media
+x11/gtk-chtheme
+x11/gtk-engines2
+x11/gtk2-aurora-engine
+x11/gtk2-equinox-engine
+x11/gtk2-murrine-engine
+x11/gtk2-nodoka-engine
+x11/gtk2-oxygen-engine
+x11/gtk2-rezlooks-engine
+x11/gtk2-theme-switch
+x11/gtk2mm
+x11/gtk3-oxygen-engine
+x11/gtk3-unico-engine
+x11/gtk3mm
+x11/gtkdatabox
+x11/gtkglarea
+x11/gtkglext
+x11/gtksourceview
+x11/gtksourceview3
+x11/gtksourceview4
+x11/gtksourceview5
+x11/gxmessage
+x11/herbstluftwm
+x11/human-icon-theme
+x11/i3
+x11/i3lock
+x11/i3status
+x11/irrlicht
+x11/isomaster
+x11/jgmenu
+x11/jwm
+x11/keybinder3
+x11/keynav
+x11/klavaro
+x11/lablgtk2
+x11/lablgtk3
+x11/libdbus-c++
+x11/libdbusmenu
+x11/libfm-extra
+x11/libgdiplus
+x11/libhandy
+x11/libqtolm
+x11/lxappearance
+x11/lxqt/build-tools
+x11/lxqt/compton-conf
+x11/lxrandr
+x11/lxterminal
+x11/mate/caja
+x11/mate/caja-extensions
+x11/mate/desktop
+x11/mate/icon-theme
+x11/mate/libmatekbd
+x11/mate/libmatemixer
+x11/mate/libmateweather
+x11/mate/menus
+x11/mate/polkit
+x11/mate/settings-daemon
+x11/mate/themes
+x11/menu-cache
+x11/mlterm
+x11/moka-icon-theme
+x11/motif
+x11/mplayer
+x11/mxconns
+x11/nx/nxcomp
+x11/nx/nxproxy
+x11/ogle
+x11/ogle_gui
+x11/p5-Gtk2
+x11/p5-Gtk2-Ex-FormFactory
+x11/p5-Gtk2-Ex-PodViewer
+x11/p5-Gtk2-Ex-Simple-List
+x11/p5-Gtk2-GladeXML
+x11/p5-Gtk2-ImageView
+x11/p5-Gtk3
+x11/p5-Tk
+x11/p5-Tk,-demo
+x11/p5-Tk,-main
+x11/p5-Tk-ProgressBar-Mac
+x11/p5-Tk-Splash
+x11/p5-Tk-Stderr
+x11/p5-Tk-TableMatrix
+x11/paper-gtk-theme
+x11/paper-icon-theme
+x11/papirus-icon-theme
+x11/parcellite
+x11/pekwm
+x11/picom
+x11/pidgin-guifications
+x11/pidgin-libnotify
+x11/podbrowser
+x11/polkit-qt,qt5
+x11/py-gtk2
+x11/py-sip-qt5
+x11/py-sip-qt6
+x11/qdirstat
+x11/qt5/docs
+x11/qt5/docs,-html
+x11/qt5/docs,-qch
+x11/qt5/qtbase
+x11/qt5/qtbase,
+x11/qt5/qtbase,,-examples
+x11/qt5/qtbase,,-global
+x11/qt5/qtbase,,-main
+x11/qt5/qtbase,,-mysql
+x11/qt5/qtbase,,-psql
+x11/qt5/qtbase,,-tds
+x11/qt5/qtbase,-examples
+x11/qt5/qtbase,-global
+x11/qt5/qtbase,-main
+x11/qt5/qtbase,-mysql
+x11/qt5/qtbase,-psql
+x11/qt5/qtbase,-tds
+x11/qt5/qtcharts
+x11/qt5/qtcharts,
+x11/qt5/qtcharts,,-examples
+x11/qt5/qtcharts,,-main
+x11/qt5/qtcharts,-examples
+x11/qt5/qtcharts,-main
+x11/qt5/qtconnectivity
+x11/qt5/qtconnectivity,
+x11/qt5/qtconnectivity,,-examples
+x11/qt5/qtconnectivity,,-main
+x11/qt5/qtconnectivity,-examples
+x11/qt5/qtconnectivity,-main
+x11/qt5/qtdatavis3d
+x11/qt5/qtdatavis3d,
+x11/qt5/qtdatavis3d,,-examples
+x11/qt5/qtdatavis3d,,-main
+x11/qt5/qtdatavis3d,-examples
+x11/qt5/qtdatavis3d,-main
+x11/qt5/qtdeclarative
+x11/qt5/qtdeclarative,
+x11/qt5/qtdeclarative,,-main
+x11/qt5/qtdeclarative,-main
+x11/qt5/qtgamepad
+x11/qt5/qtgamepad,
+x11/qt5/qtgamepad,,-examples
+x11/qt5/qtgamepad,,-main
+x11/qt5/qtgamepad,-examples
+x11/qt5/qtgamepad,-main
+x11/qt5/qtgraphicaleffects
+x11/qt5/qtimageformats
+x11/qt5/qtlocation
+x11/qt5/qtlocation,
+x11/qt5/qtlocation,,-examples
+x11/qt5/qtlocation,,-main
+x11/qt5/qtlocation,-examples
+x11/qt5/qtlocation,-main
+x11/qt5/qtlottie
+x11/qt5/qtnetworkauth
+x11/qt5/qtnetworkauth,
+x11/qt5/qtnetworkauth,,-examples
+x11/qt5/qtnetworkauth,,-main
+x11/qt5/qtnetworkauth,-examples
+x11/qt5/qtnetworkauth,-main
+x11/qt5/qtpurchasing
+x11/qt5/qtpurchasing,
+x11/qt5/qtpurchasing,,-examples
+x11/qt5/qtpurchasing,,-main
+x11/qt5/qtpurchasing,-examples
+x11/qt5/qtpurchasing,-main
+x11/qt5/qtquickcontrols
+x11/qt5/qtquickcontrols,
+x11/qt5/qtquickcontrols,,-examples
+x11/qt5/qtquickcontrols,,-main
+x11/qt5/qtquickcontrols,-examples
+x11/qt5/qtquickcontrols,-main
+x11/qt5/qtquickcontrols2
+x11/qt5/qtquickcontrols2,
+x11/qt5/qtquickcontrols2,,-examples
+x11/qt5/qtquickcontrols2,,-main
+x11/qt5/qtquickcontrols2,-examples
+x11/qt5/qtquickcontrols2,-main
+x11/qt5/qtremoteobjects
+x11/qt5/qtremoteobjects,
+x11/qt5/qtremoteobjects,,-examples
+x11/qt5/qtremoteobjects,,-main
+x11/qt5/qtremoteobjects,-examples
+x11/qt5/qtremoteobjects,-main
+x11/qt5/qtscript
+x11/qt5/qtscript,
+x11/qt5/qtscript,,-examples
+x11/qt5/qtscript,,-main
+x11/qt5/qtscript,-examples
+x11/qt5/qtscript,-main
+x11/qt5/qtscxml
+x11/qt5/qtscxml,
+x11/qt5/qtscxml,,-examples
+x11/qt5/qtscxml,,-main
+x11/qt5/qtscxml,-examples
+x11/qt5/qtscxml,-main
+x11/qt5/qtsensors
+x11/qt5/qtsensors,
+x11/qt5/qtsensors,,-examples
+x11/qt5/qtsensors,,-main
+x11/qt5/qtsensors,-examples
+x11/qt5/qtsensors,-main
+x11/qt5/qtserialbus
+x11/qt5/qtserialbus,
+x11/qt5/qtserialbus,,-examples
+x11/qt5/qtserialbus,,-main
+x11/qt5/qtserialbus,-examples
+x11/qt5/qtserialbus,-main
+x11/qt5/qtserialport
+x11/qt5/qtserialport,
+x11/qt5/qtserialport,,-examples
+x11/qt5/qtserialport,,-main
+x11/qt5/qtserialport,-examples
+x11/qt5/qtserialport,-main
+x11/qt5/qtsvg
+x11/qt5/qtsvg,
+x11/qt5/qtsvg,,-examples
+x11/qt5/qtsvg,,-main
+x11/qt5/qtsvg,-examples
+x11/qt5/qtsvg,-main
+x11/qt5/qttools
+x11/qt5/qttools,
+x11/qt5/qttools,,-examples
+x11/qt5/qttools,,-main
+x11/qt5/qttools,-main
+x11/qt5/qtvirtualkeyboard
+x11/qt5/qtvirtualkeyboard,
+x11/qt5/qtvirtualkeyboard,,-examples
+x11/qt5/qtvirtualkeyboard,,-main
+x11/qt5/qtvirtualkeyboard,-examples
+x11/qt5/qtvirtualkeyboard,-main
+x11/qt5/qtwayland
+x11/qt5/qtwebchannel
+x11/qt5/qtwebchannel,
+x11/qt5/qtwebchannel,,-examples
+x11/qt5/qtwebchannel,,-main
+x11/qt5/qtwebchannel,-examples
+x11/qt5/qtwebchannel,-main
+x11/qt5/qtwebglplugin
+x11/qt5/qtwebsockets
+x11/qt5/qtwebsockets,
+x11/qt5/qtwebsockets,,-examples
+x11/qt5/qtwebsockets,,-main
+x11/qt5/qtwebsockets,-examples
+x11/qt5/qtwebsockets,-main
+x11/qt5/qtx11extras
+x11/qt5/qtxmlpatterns
+x11/qt5/qtxmlpatterns,
+x11/qt5/qtxmlpatterns,,-examples
+x11/qt5/qtxmlpatterns,,-main
+x11/qt5/qtxmlpatterns,-examples
+x11/qt5/qtxmlpatterns,-main
+x11/qt5ct
+x11/qtfm
+x11/qwt
+x11/qwt,-common
+x11/qwt,-main
+x11/qwt,qt6,-common
+x11/rdesktop
+x11/remmina
+x11/rep-gtk
+x11/retrosmart-icon-theme
+x11/rox-filer
+x11/roxterm
+x11/rxvt-unicode
+x11/rxvt-unicode,everything
+x11/rxvt-unicode,small
+x11/sakura
+x11/sawfish
+x11/screenkey
+x11/smplayer
+x11/spice-gtk
+x11/tangerine-icon-theme
+x11/terminator
+x11/textsuggest
+x11/thewidgetfactory
+x11/tilda
+x11/trayer
+x11/uwm
+x11/windowmaker
+x11/windowmaker,-lang
+x11/windowmaker,-main
+x11/windowmaker-extra
+x11/wmctrl
+x11/wmdocker
+x11/wmfishtime
+x11/wmitime
+x11/wmmenu,gdk_pixbuf
+x11/wmweather
+x11/worker
+x11/x11vnc
+x11/x2goclient
+x11/xarchive
+x11/xarchiver
+x11/xbae
+x11/xbindkeys
+x11/xdaliclock
+x11/xdg-user-dirs-gtk
+x11/xdotool
+x11/xfce4/libxfce4util
+x11/xfce4/libxfce4windowing
+x11/xfce4/xfce4-dev-tools
+x11/xfce4/xfconf
+x11/xfe
+x11/xforms
+x11/xglobe
+x11/xglobe,no_map
+x11/xkbcommon
+x11/xkbset,-gui
+x11/xli
+x11/xloadimage
+x11/xpad
+x11/xplanet
+x11/xruskb,motif
+x11/xscreensaver
+x11/xsettingsd
+x11/xss-lock
+x11/xwallpaper
+x11/yad
+x11/yaru

Packages not built this time:
-net/nyx
-net/py-stem

Re: USB ethernet adapter modeswitch issue

Hi,

it comes up in ifconfig:

cdce0: flags=8802<BROADCAST,SIMPLEX,MULTICAST> mtu 1500
lladdr MA:CA:DD:RE:SS
index 27 priority 0 llprio 3

I assume, it would "just work" TM (c), but it switches to the mass storage rally quick, so I can't test my theory.

I can eject the cd using "doas eject cd0", however it stucks in cd mode after this command, so while it really stops the switching back-and-forth it doesn't makes the hw usable :(

-- ext

On Fri, 31 Jan 2025 20:36:46 -0000 (UTC)
Stuart Henderson <stu.lists@spacehopper.org> wrote:

> On 2025-01-31, MIZSEI Zoltán <zmizsei@extrowerk.com> wrote:
> > Hi,
> >
> > i have got a cheap USB ethernet adapter for my ARM SBC running OpenBSD snapshot. If i connect it, it shows up as cdce, but then it automatically detaches and comes up as a usb storage device (it holds the the windows driver ). It does this repeatedly. Can I force somehow OpenBSD to ignore the mass storage device? DMESG below:
> >
> > uhub2 at uhub1 port 1 configuration 1 interface 0 "Terminus Technology USB2.0 HUB" rev 2.00/1.00 addr 2
> > cdce0 at uhub2 port 1 configuration 2 interface 0 "wch.cn USB 10/100 LAN" rev 2.00/7.34 addr 3
> > cdce0: address MA:CA:DD:RE:SS
> > cdce0 detached
> > umass0 at uhub2 port 1 configuration 1 interface 0 "wch.cn WCH UDISK_V1.1" rev 2.00/0.31 addr 3
> > umass0: using SCSI over Bulk-Only
> > scsibus4 at umass0: 2 targets, initiator 0
> > cd0 at scsibus4 targ 1 lun 0: <Flash, USB Special Disk, \\205`\\023> removable
> >
> > it repeats this in ~ every 30 sec.
>
> Does it stop doing it if you use eject(1) on the cd device? (I don't
> remember the exact syntax but try "eject cd0").
>
> You might need something else to actually make the ethernet work though -
> cdce is a generic ethernet class device and may or may not do something
> useful with your adapter.
>
>
> --
> Please keep replies on the mailing list.
>


--
MIZSEI Zoltán <zmizsei@extrowerk.com>

Re: [llvm 19] boost: fix quat_traits.hpp

On 31.01.2025 04:03, Theo Buehler wrote:
> Another obvious fix. This makes cad/pcb2gcode build with llvm 19.
>
> https://github.com/boostorg/qvm/commit/c4b9c063a076644575fe9a685c02cd4c10d24405

OK kn

Re: USB ethernet adapter modeswitch issue

On 2025-01-31, MIZSEI Zoltán <zmizsei@extrowerk.com> wrote:
> Hi,
>
> i have got a cheap USB ethernet adapter for my ARM SBC running OpenBSD snapshot. If i connect it, it shows up as cdce, but then it automatically detaches and comes up as a usb storage device (it holds the the windows driver ). It does this repeatedly. Can I force somehow OpenBSD to ignore the mass storage device? DMESG below:
>
> uhub2 at uhub1 port 1 configuration 1 interface 0 "Terminus Technology USB2.0 HUB" rev 2.00/1.00 addr 2
> cdce0 at uhub2 port 1 configuration 2 interface 0 "wch.cn USB 10/100 LAN" rev 2.00/7.34 addr 3
> cdce0: address MA:CA:DD:RE:SS
> cdce0 detached
> umass0 at uhub2 port 1 configuration 1 interface 0 "wch.cn WCH UDISK_V1.1" rev 2.00/0.31 addr 3
> umass0: using SCSI over Bulk-Only
> scsibus4 at umass0: 2 targets, initiator 0
> cd0 at scsibus4 targ 1 lun 0: <Flash, USB Special Disk, \\205`\\023> removable
>
> it repeats this in ~ every 30 sec.

Does it stop doing it if you use eject(1) on the cd device? (I don't
remember the exact syntax but try "eject cd0").

You might need something else to actually make the ethernet work though -
cdce is a generic ethernet class device and may or may not do something
useful with your adapter.


--
Please keep replies on the mailing list.

Re: [NEW] net/p5-Data-Radius

On 31.01.2025 12:21, Matthias Pitzl wrote:
> Hi!
>
> This is a port for the modern and maintained Perl distribution Data::Radius
> which contains several modules for encoding/decoding RADIUS packets.
>
> In comparison to the existing p5-Net-Radius port, this new module
> - supports working with Message-Authenticator attribute in packets as required
> by radiusd and which was also a way to prevent BlastRADIUS vulnerability
> - supports the usage of the dictionary files as shipped with FreeRADIUS, which
> are required if working with vendor specific attributes in RADIUS packets
>
> Net::Radius is no longer maintained since 2009, whereas Data::Radius is actively
> maintained.
>
> Cheers,
> Matthias

Empty line at start of Makefile.
Needs s/cpan/devel/ in the Const-Fast line, then sort RDEPs.

With these fixed, OK kn

USB ethernet adapter modeswitch issue

Hi,

i have got a cheap USB ethernet adapter for my ARM SBC running OpenBSD snapshot. If i connect it, it shows up as cdce, but then it automatically detaches and comes up as a usb storage device (it holds the the windows driver ). It does this repeatedly. Can I force somehow OpenBSD to ignore the mass storage device? DMESG below:

uhub2 at uhub1 port 1 configuration 1 interface 0 "Terminus Technology USB2.0 HUB" rev 2.00/1.00 addr 2
cdce0 at uhub2 port 1 configuration 2 interface 0 "wch.cn USB 10/100 LAN" rev 2.00/7.34 addr 3
cdce0: address MA:CA:DD:RE:SS
cdce0 detached
umass0 at uhub2 port 1 configuration 1 interface 0 "wch.cn WCH UDISK_V1.1" rev 2.00/0.31 addr 3
umass0: using SCSI over Bulk-Only
scsibus4 at umass0: 2 targets, initiator 0
cd0 at scsibus4 targ 1 lun 0: <Flash, USB Special Disk, \\205`\\023> removable

it repeats this in ~ every 30 sec.

I have tested it on my x86 laptop running latest stable, it does the same, so it is not a power supply issue.

Thanks for all the hints.

-ext

Re: back at it again (fanart)

Hah, nice!

On Fri, Jan 31, 2025 at 6:31 AM tobi <tobitheikeafanboy@proton.me> wrote:
hello!
i'm not sure how release art exactly works, but i've started working on a little a4 illustration for an upcoming release (there's written 8.0 on the illustration but any release works :) ).
i'll leave a little sketch i did on paper, but i obviously plan to finish it digitally.
some of the prespective is a little skewed because i did it manually without the proper setup.
if you guys like it, if you plan to use it for a release, tell me which release number you'd want written down.
if you want any adjustments, just tell me! :D

Re: [NEW] devel/p5-Const-Fast

On 31.01.2025 12:16, Matthias Pitzl wrote:
> Hi!
>
> Attached a new port for the Perl module Const::FAST, which I need as dependency
> for the upcoming port p5-Data-Radius, a modern Perl module for encoding/decoding
> RADIUS packets.
>
> Cheers,
> Matthias

OK kn

Re: [llvm 19] fix build of prusaslicer

30 янв. 2025 г. 13:20:19 Theo Buehler <tb@theobuehler.org>:

> llvm 19 got a lot pickier about templates. Here's the simple adjustment
> needed to make prusaslicer build with it. This depends on the update to
> CGLA 5.6.2 that I just committed.

OK kn

Re: [NEW] net/p5-Data-Radius

31 янв. 2025 г. 12:26:04 Matthias Pitzl <pitzl@genua.de>:
> Net::Radius is no longer maintained since 2009, whereas Data::Radius is actively
> maintained.

Shall we perhaps remove the old on then?

Re: back at it again (fanart)

also if this message arrived twice... i'm sorry, i think i did something wrong with the email confirmation thing
venerdì 31 gennaio 2025 3:20 PM, tobi <tobitheikeafanboy@proton.me> ha scritto:
hello!
i'm not sure how release art exactly works, but i've started working on a little a4 illustration for an upcoming release (there's written 8.0 on the illustration but any release works :) ).
i'll leave a little sketch i did on paper, but i obviously plan to finish it digitally.
some of the prespective is a little skewed because i did it manually without the proper setup.
if you guys like it, if you plan to use it for a release, tell me which release number you'd want written down.
if you want any adjustments, just tell me! :D

venerdì 31 gennaio 2025 1:18 PM, tobi <tobitheikeafanboy@proton.me> ha scritto:
hello!
i'm not sure how release art exactly works, but i've started working on a little a4 illustration for an upcoming release (there's written 8.0 on the illustration but any release works :) ).
i'll leave a little sketch i did on paper, but i obviously plan to finish it digitally.
some of the prespective is a little skewed because i did it manually without the proper setup.
if you guys like it, if you plan to use it for a release, tell me which release number you'd want written down.
if you want any adjustments, just tell me! :Ddoc10603320250131093146_001.jpg