Name: kamoso Version: 26.08.0 Release: 1%{?dist} Summary: Webcam application License: BSD-2-Clause AND CC0-1.0 AND GFDL-1.2-only AND GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND MIT URL: https://apps.kde.org/kamoso Source0: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz BuildRequires: desktop-file-utils BuildRequires: extra-cmake-modules BuildRequires: kf6-rpm-macros BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: cmake(KF6Config) BuildRequires: cmake(KF6KIO) BuildRequires: cmake(KF6I18n) BuildRequires: cmake(KF6Purpose) BuildRequires: cmake(KF6Notifications) BuildRequires: cmake(Qt6Qml) BuildRequires: cmake(Qt6Core) BuildRequires: cmake(Qt6Gui) BuildRequires: cmake(Qt6Widgets) BuildRequires: cmake(Qt6Quick) BuildRequires: pkgconfig(gstreamer-1.0) >= 1.26.3 BuildRequires: pkgconfig(gstreamer-video-1.0) %description Kamoso is KDE's webcam application. Full CMakeLists.txt read recursively (top-level, src/, icons/) -- initially skipped this build round on the assumption GStreamer wasn't a realistic dependency on this distro, without actually checking; that assumption was wrong. gstreamer1-devel and gstreamer1-plugins-base-devel (which provides GstVideo/gstreamer-video-1.0) are both real, confirmed packages here, and the installed GStreamer version (1.26.10) already satisfies Kamoso's own minimum (1.26.3) without needing its PATCHED_GSTREAMER workaround flag. The one soft dependency that really is absent -- the org.freedesktop.gstreamer.Qt6GLVideoItem QML sink plugin, normally shipped by gst-plugins-good/-qt, not packaged here -- is only a non-fatal ecm_find_qmlmodule() probe (no REQUIRED keyword), not something CMake or the linker ever hard-requires; Kamoso just loses the QtQuick-native GL video preview widget, not core capture functionality. BUILD_DOC defaults ON and escalates KF6DocTools to REQUIRED, so passed -DBUILD_DOC=OFF like every other app this phase using that pattern. All QML sources are compiled directly into the binary via a Qt resource (resources.qrc), same as Filelight earlier this phase -- no loose qmldir install exists. %prep %autosetup -p1 %build %cmake_kf6 -DBUILD_DOC:BOOL=OFF %cmake_build_kf6 %install %cmake_install_kf6 %find_lang %{name} --with-html %files -f %{name}.lang %license LICENSES/* %{_kf6_bindir}/kamoso %{_datadir}/applications/org.kde.kamoso.desktop %{_kf6_metainfodir}/org.kde.kamoso.appdata.xml %{_kf6_datadir}/knotifications6/kamoso.notifyrc %{_datadir}/icons/hicolor/*/apps/kamoso.png %{_datadir}/icons/hicolor/scalable/apps/kamoso.svg %{_datadir}/icons/hicolor/scalable/actions/burst.svgz %changelog * Sun Aug 30 2026 Smech - 26.08.0-1 - Real upstream source. Reversed an earlier decision to skip this package: confirmed via a live Azure Linux container that gstreamer1-devel and gstreamer1-plugins-base-devel are genuinely packaged here (unlike the Wayland stack Spectacle needs, which really is entirely absent) -- the earlier skip conflated "not built in this repo yet" with "not available on the distro" without actually checking tdnf. %%files built from real install()/ ecm_install_icons() call sites; the icon glob filenames (kamoso.svg/burst.svgz) match ecm_install_icons's real per-size renaming convention, not the source tree's size-prefixed names.