From 5cf374455a337df0edd2fe6e30e221044898cf2cd3eeedd42d04dc2c371c5a3d Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Mon, 20 Mar 2023 12:55:13 +0000 Subject: [PATCH] Accepting request 1073092 from GNOME:Next - Add patch to reduce the required meson version to 0.61.0 since that's what we have in Leap 15.5: + reduce-required-meson.patch OBS-URL: https://build.opensuse.org/request/show/1073092 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/python-gst?expand=0&rev=91 --- python-gst.changes | 7 +++++++ python-gst.spec | 2 ++ reduce-required-meson.patch | 10 ++++++++++ 3 files changed, 19 insertions(+) create mode 100644 reduce-required-meson.patch diff --git a/python-gst.changes b/python-gst.changes index 926c1d8..1c95d63 100644 --- a/python-gst.changes +++ b/python-gst.changes @@ -4,6 +4,13 @@ Thu Mar 9 18:30:30 UTC 2023 - Bjørn Lie - Update to version 1.22.1: + gst-python: Use arch-specific install dir for gi overrides +------------------------------------------------------------------- +Thu Mar 9 18:30:29 UTC 2023 - Bjørn Lie + +- Add patch to reduce the required meson version to 0.61.0 since + that's what we have in Leap 15.5: + + reduce-required-meson.patch + ------------------------------------------------------------------- Thu Jan 26 01:52:35 UTC 2023 - Bjørn Lie diff --git a/python-gst.spec b/python-gst.spec index ca855f3..adb6113 100644 --- a/python-gst.spec +++ b/python-gst.spec @@ -26,6 +26,8 @@ License: LGPL-2.1-or-later Group: System/Libraries URL: https://gstreamer.freedesktop.org Source0: %{url}/src/gst-python/%{_name}-%{version}.tar.xz +# PATCH-FEATURE-OPENSUSE reduce-required-meson.patch -- Fix build on Leap 15.5 +Patch0: reduce-required-meson.patch BuildRequires: %{python_module devel} BuildRequires: c++_compiler diff --git a/reduce-required-meson.patch b/reduce-required-meson.patch new file mode 100644 index 0000000..0085249 --- /dev/null +++ b/reduce-required-meson.patch @@ -0,0 +1,10 @@ +--- gst-python-1.22.1-orig/meson.build 2023-03-04 14:42:32.000000000 +0100 ++++ gst-python-1.22.1/meson.build 2023-03-09 19:47:37.647172490 +0100 +@@ -1,6 +1,6 @@ + project('gst-python', 'c', + version : '1.22.1', +- meson_version : '>= 0.62', ++ meson_version : '>= 0.61', + default_options : [ 'warning_level=1', + 'c_std=gnu99', + 'buildtype=debugoptimized' ])