diff --git a/media-sound/fooyin/Manifest b/media-sound/fooyin/Manifest
deleted file mode 100644
index 9fad467..0000000
--- a/media-sound/fooyin/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST fooyin-0.6.1.tar.gz 4570533 BLAKE2B a9219d4e518cea13376e80207b544e419e6acf45e1695cec5b56ade9bf2dc9611d533df6fb700898c1cc7197b0abdbf087fee36659bbeb2220038a5021c3eb88 SHA512 162414e4e67dbfa5ba05e30cff0b051e9063425035c85c03b8b0cee64c61701145d091e7a1e7090f839d51318694639b25334ce463f8192df726e98e0c946296
-DIST fooyin-0.6.2.tar.gz 4598582 BLAKE2B 65c36c98f4a56376502d6608e5fc770c2a9bf75ee36d0537135d80c9401286548dd11effae4a4242d0b78407c72f4a1bb8ba241b65b85060c49068243a107a1c SHA512 9f283bf69fa87f105efe35fb1d0a8d361d036ff6afb959cbcd17b315e9aab336c17738999055d04390e8e6b55ac206b08894cc124824019fa5dc95c8aa17fbd0
diff --git a/media-sound/fooyin/fooyin-0.6.1.ebuild b/media-sound/fooyin/fooyin-0.6.1.ebuild
deleted file mode 100644
index 8322cd2..0000000
--- a/media-sound/fooyin/fooyin-0.6.1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="A customizable music player, Qt clone of foobar2000"
-HOMEPAGE="https://www.fooyin.org/"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
-else
- SRC_URI="
- https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="alsa pipewire sdl test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="|| ( alsa pipewire sdl )"
-
-RDEPEND="
- dev-libs/icu:=
- dev-libs/kdsingleapplication
- dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
- media-libs/taglib
- media-video/ffmpeg:=
- alsa? ( media-libs/alsa-lib )
- pipewire? ( media-video/pipewire:= )
- sdl? ( media-libs/libsdl2 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
-"
-
-src_prepare() {
- sed -i CMakeLists.txt \
- -e "s|/doc/${PN}|/doc/${PF}|g" \
- -e '/option(BUILD_TESTING/aenable_testing()' \
- || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- -DBUILD_CCACHE=OFF
- -DBUILD_LIBVGM=OFF
- -DINSTALL_HEADERS=ON
- $(cmake_use_find_package alsa ALSA)
- $(cmake_use_find_package pipewire PipeWire)
- $(cmake_use_find_package sdl SDL2)
- )
-
- cmake_src_configure
-}
-
-src_test() {
- local CMAKE_SKIP_TESTS=(
- # TODO: figure out why these tests fail to find their test data
- TagReaderTest.*
- TagWriterTest.*
- )
-
- cmake_src_test
-}
diff --git a/media-sound/fooyin/fooyin-0.6.2.ebuild b/media-sound/fooyin/fooyin-0.6.2.ebuild
deleted file mode 100644
index 8322cd2..0000000
--- a/media-sound/fooyin/fooyin-0.6.2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="A customizable music player, Qt clone of foobar2000"
-HOMEPAGE="https://www.fooyin.org/"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
-else
- SRC_URI="
- https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="alsa pipewire sdl test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="|| ( alsa pipewire sdl )"
-
-RDEPEND="
- dev-libs/icu:=
- dev-libs/kdsingleapplication
- dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
- media-libs/taglib
- media-video/ffmpeg:=
- alsa? ( media-libs/alsa-lib )
- pipewire? ( media-video/pipewire:= )
- sdl? ( media-libs/libsdl2 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
-"
-
-src_prepare() {
- sed -i CMakeLists.txt \
- -e "s|/doc/${PN}|/doc/${PF}|g" \
- -e '/option(BUILD_TESTING/aenable_testing()' \
- || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- -DBUILD_CCACHE=OFF
- -DBUILD_LIBVGM=OFF
- -DINSTALL_HEADERS=ON
- $(cmake_use_find_package alsa ALSA)
- $(cmake_use_find_package pipewire PipeWire)
- $(cmake_use_find_package sdl SDL2)
- )
-
- cmake_src_configure
-}
-
-src_test() {
- local CMAKE_SKIP_TESTS=(
- # TODO: figure out why these tests fail to find their test data
- TagReaderTest.*
- TagWriterTest.*
- )
-
- cmake_src_test
-}
diff --git a/media-sound/fooyin/fooyin-9999.ebuild b/media-sound/fooyin/fooyin-9999.ebuild
deleted file mode 100644
index 00094d2..0000000
--- a/media-sound/fooyin/fooyin-9999.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="A customizable music player, Qt clone of foobar2000"
-HOMEPAGE="https://www.fooyin.org/"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/fooyin/fooyin.git"
-else
- SRC_URI="
- https://github.com/fooyin/fooyin/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="alsa pipewire sdl test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="
- || ( alsa pipewire sdl )
-"
-
-RDEPEND="
- dev-libs/icu:=
- dev-libs/kdsingleapplication
- dev-qt/qtbase:6[concurrent,dbus,gui,network,sql,widgets]
- media-libs/taglib
- media-video/ffmpeg:=
- alsa? ( media-libs/alsa-lib )
- pipewire? ( media-video/pipewire:= )
- sdl? ( media-libs/libsdl2 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- test? ( dev-cpp/gtest )
-"
-
-src_prepare() {
- sed -i CMakeLists.txt \
- -e "s|/doc/${PN}|/doc/${PF}|g" \
- -e '/option(BUILD_TESTING/aenable_testing()' \
- || die
-
- sed \
- -e "s#:/audio#data/audio#g" \
- -i \
- tests/tagwritertest.cpp \
- tests/tagreadertest.cpp \
- || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TESTING=$(usex test)
- -DBUILD_CCACHE=OFF
- -DBUILD_LIBVGM=OFF
- -DINSTALL_HEADERS=ON
- $(cmake_use_find_package alsa ALSA)
- $(cmake_use_find_package pipewire PipeWire)
- $(cmake_use_find_package sdl SDL2)
- )
-
- cmake_src_configure
-}
-
-src_test() {
- ln -sr "${CMAKE_USE_DIR}/tests/data/audio" "${BUILD_DIR}/tests/data/audio" || die
-
- cmake_src_test
-}
diff --git a/media-sound/fooyin/metadata.xml b/media-sound/fooyin/metadata.xml
deleted file mode 100644
index 31f2776..0000000
--- a/media-sound/fooyin/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
- sighunter@gmx.de
- SigHunter
-
-
-
- fooyin/fooyin
-
-
-
diff --git a/profiles/package.mask b/profiles/package.mask
index 6b2b1e6..dd48bee 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -12,11 +12,6 @@ app-backup/restic-browser-bin
# https://github.com/raspberrypi/rpi-imager/issues/924
sys-boot/rpi-imager
-# SigHunter (2024-09-21)
-# Not maintained actively in this repository.
-# Use ::guru instead.
-media-sound/fooyin
-
# Alfred Wingate (2024-08-23)
# Dead url for bundled luajit
app-editors/howl