Source: gst-plugins-good1.0 Version: 0_1.26.5-2 Severity: important Tags: ftbfs
Hello, gst-plugins-good1.0 currently FTBFS on hurd-any because it tries to dh_install the soup plugin which is currently disabled. The attached patch avoids disabling the soup plugin. For reference, it got disabled in 1.24.11-4 because upstream was trying to link it explicitly. But now it properly does not do this, like on Linux, so it'll be simpler to just let it enabled like on Linux. Samuel
diff -Nru gst-plugins-good1.0-1.26.5/debian/changelog gst-plugins-good1.0-1.26.5/debian/changelog --- gst-plugins-good1.0-1.26.5/debian/changelog 2025-08-11 09:17:03.000000000 +0200 +++ gst-plugins-good1.0-1.26.5/debian/changelog 2025-08-23 00:03:13.000000000 +0200 @@ -1,3 +1,9 @@ +gst-plugins-good1.0 (1.26.5-2+hurd.1) unreleased; urgency=medium + + * d/rules: Re-enable soup plugin on hurd-any. + + -- Samuel Thibault <[email protected]> Sat, 23 Aug 2025 00:03:13 +0200 + gst-plugins-good1.0 (1.26.5-2) unstable; urgency=medium * d/copyright: superfluous-file-pattern diff -Nru gst-plugins-good1.0-1.26.5/debian/rules gst-plugins-good1.0-1.26.5/debian/rules --- gst-plugins-good1.0-1.26.5/debian/rules 2025-08-08 09:06:05.000000000 +0200 +++ gst-plugins-good1.0-1.26.5/debian/rules 2025-08-23 00:03:10.000000000 +0200 @@ -57,10 +57,8 @@ conf_flags += -Dqt-egl=disabled endif -# soup is not available on non-Linux, this plugin is compiled against -# the system version ifeq ($(DEB_HOST_ARCH_OS),hurd) -conf_flags+= -Dadaptivedemux2=disabled -Dsoup=disabled +conf_flags+= -Dadaptivedemux2=disabled endif %:

