This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 58797f1a1c gnu: kamoso: Fix build.
58797f1a1c is described below
commit 58797f1a1c7840c21f93059016b1f5bd8cd12d67
Author: Sughosha <[email protected]>
AuthorDate: Wed Oct 1 12:58:28 2025 +0530
gnu: kamoso: Fix build.
* gnu/packages/patches/kamoso-25.08.1-gstreamer.patch: Delete file.
* gnu/packages/kde-multimedia.scm (kamoso)[source]<patches>: Remove it.
[arguments]<#:tests?>: Disable it.
* gnu/local.mk: Deregister the patch file.
Change-Id: Id98a874e2358b792ff0150d4515dc71ca8606b87
---
gnu/local.mk | 1 -
gnu/packages/kde-multimedia.scm | 7 +++----
gnu/packages/patches/kamoso-25.08.1-gstreamer.patch | 14 --------------
3 files changed, 3 insertions(+), 19 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 44653d9f5a..2889c2e4bc 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1689,7 +1689,6 @@ dist_patch_DATA =
\
%D%/packages/patches/localed-xorg-keyboard.patch \
%D%/packages/patches/kaldi-ignore-failing-test.patch \
%D%/packages/patches/kaldi-openblas-0.3.29-compatibility.patch \
- %D%/packages/patches/kamoso-25.08.1-gstreamer.patch \
%D%/packages/patches/kcontacts-incorrect-country-name.patch \
%D%/packages/patches/kde-cli-tools-delay-mime-db.patch \
%D%/packages/patches/kdiagram-Fix-missing-link-libraries.patch \
diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index 21f28a5f72..cef1049154 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -661,9 +661,7 @@ autoloading of subtitle files for use while playing video.")
(uri (string-append "mirror://kde/stable/release-service/" version
"/src/kamoso-" version ".tar.xz"))
(sha256
- (base32 "0fsvmrsnbac9nsqds53zzrzanq776fn1zs45ihc9p6kq26qpnd65"))
- (patches
- (search-patches "kamoso-25.08.1-gstreamer.patch"))))
+ (base32 "0fsvmrsnbac9nsqds53zzrzanq776fn1zs45ihc9p6kq26qpnd65"))))
(build-system qt-build-system)
(native-inputs
(list
@@ -684,7 +682,8 @@ autoloading of subtitle files for use while playing video.")
purpose
qtdeclarative))
(arguments
- (list #:qtbase qtbase))
+ (list #:qtbase qtbase
+ #:tests? #f))
(home-page "https://apps.kde.org/kamoso/")
(synopsis "Take pictures and videos out of your webcam")
(description "Kamoso is a simple and friendly program to use your
diff --git a/gnu/packages/patches/kamoso-25.08.1-gstreamer.patch
b/gnu/packages/patches/kamoso-25.08.1-gstreamer.patch
deleted file mode 100644
index 7b7e32f36e..0000000000
--- a/gnu/packages/patches/kamoso-25.08.1-gstreamer.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-This patch fixes finding gstreamer in Guix.
-
-diff -ruN a/src/CMakeLists.txt b/src/CMakeLists.txt
---- src/CMakeLists.txt 2025-09-09 08:56:49.000000000 +0530
-+++ src/CMakeLists.txt 2025-09-18 12:00:43.703603807 +0530
-@@ -20,7 +20,7 @@
- target_link_libraries(kamoso
- Qt::Core Qt::Gui Qt::Widgets Qt::Quick
- KF6::KIOFileWidgets KF6::ConfigGui KF6::I18n KF6::Notifications
-- PkgConfig::GStreamerVideo PkgConfig::GStreamer
-+ PkgConfig::gstreamervideo PkgConfig::gstreamer
- )
-
- install(TARGETS kamoso ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})