diff --git a/.gitignore b/.gitignore index e291aad..97ee6b3 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,70 @@ /gstreamer-1.10.0.tar.xz /gstreamer-1.10.1.tar.xz /gstreamer-1.10.2.tar.xz +/gstreamer-1.11.1.tar.xz +/gstreamer-1.11.2.tar.xz +/gstreamer-1.11.90.tar.xz +/gstreamer-1.11.91.tar.xz +/gstreamer-1.12.0.tar.xz +/gstreamer-1.12.1.tar.xz +/gstreamer-1.12.2.tar.xz +/gstreamer-1.12.3.tar.xz +/gstreamer-1.12.4.tar.xz +/gstreamer-1.13.1.tar.xz +/gstreamer-1.13.90.tar.xz +/gstreamer-1.13.91.tar.xz +/gstreamer-1.14.0.tar.xz +/gstreamer-1.14.1.tar.xz +/gstreamer-1.14.2.tar.xz +/gstreamer-1.14.3.tar.xz +/gstreamer-1.14.4.tar.xz +/gstreamer-1.15.1.tar.xz +/gstreamer-1.15.2.tar.xz +/gstreamer-1.16.0.tar.xz +/gstreamer-1.16.1.tar.xz +/gstreamer-1.16.2.tar.xz +/gstreamer-1.17.1.tar.xz +/gstreamer-1.17.2.tar.xz +/gstreamer-1.17.90.tar.xz +/gstreamer-1.18.0.tar.xz +/gstreamer-1.18.1.tar.xz +/gstreamer-1.18.2.tar.xz +/gstreamer-1.18.4.tar.xz +/gstreamer-1.19.1.tar.xz +/gstreamer-1.19.2.tar.xz +/gstreamer-1.19.3.tar.xz +/gstreamer-1.20.0.tar.xz +/gstreamer-1.20.3.tar.xz +/gstreamer-1.20.4.tar.xz +/gstreamer-1.20.5.tar.xz +/gstreamer-1.21.90.tar.xz +/gstreamer-1.22.0.tar.xz +/gstreamer-1.22.1.tar.xz +/gstreamer-1.22.2.tar.xz +/gstreamer-1.22.3.tar.xz +/gstreamer-1.22.4.tar.xz +/gstreamer-1.22.5.tar.xz +/gstreamer-1.22.6.tar.xz +/gstreamer-1.22.7.tar.xz +/gstreamer-1.22.8.tar.xz +/gstreamer-1.22.9.tar.xz +/gstreamer-1.24.0.tar.xz +/gstreamer-1.24.3.tar.xz +/gstreamer-1.24.4.tar.xz +/gstreamer-1.24.5.tar.xz +/gstreamer-1.24.6.tar.xz +/gstreamer-1.24.7.tar.xz +/gstreamer-1.24.8.tar.xz +/gstreamer-1.24.9.tar.xz +/gstreamer-1.24.10.tar.xz +/gstreamer-1.24.11.tar.xz +/gstreamer-1.26.0.tar.xz +/gstreamer-1.26.1.tar.xz +/gstreamer-1.26.2.tar.xz +/gstreamer-1.26.3.tar.xz +/gstreamer-1.26.5.tar.xz +/gstreamer-1.26.6.tar.xz +/gstreamer-1.26.7.tar.xz +/gstreamer-1.26.8.tar.xz +/gstreamer-1.26.9.tar.xz +/gstreamer-1.26.10.tar.xz diff --git a/0001-avoid-compilation-errors-with-newer-glib.patch b/0001-avoid-compilation-errors-with-newer-glib.patch new file mode 100644 index 0000000..7f4e9fb --- /dev/null +++ b/0001-avoid-compilation-errors-with-newer-glib.patch @@ -0,0 +1,41 @@ +From b4ff2c8805221bcff6895c543cb019a817ad7104 Mon Sep 17 00:00:00 2001 +From: Wim Taymans +Date: Thu, 22 Feb 2018 09:52:03 +0100 +Subject: [PATCH] avoid compilation errors with newer glib + +Newest glib does type propagation. Do an explicit cast to the +right type to silence the compiler. +--- + gst/gstchildproxy.c | 2 +- + gst/parse/grammar.y | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/gst/gstchildproxy.c b/gst/gstchildproxy.c +index ca5e47ea3..1bf983afa 100644 +--- a/gst/gstchildproxy.c ++++ b/gst/gstchildproxy.c +@@ -209,7 +209,7 @@ gst_child_proxy_lookup (GstChildProxy * object, const gchar * name, + g_return_val_if_fail (GST_IS_CHILD_PROXY (object), FALSE); + g_return_val_if_fail (name != NULL, FALSE); + +- obj = g_object_ref (object); ++ obj = G_OBJECT (g_object_ref (object)); + + current = names = g_strsplit (name, "::", -1); + /* find the owner of the property */ +diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y +index bc4c3c1ed..0b3d04821 100644 +--- a/gst/parse/grammar.y ++++ b/gst/parse/grammar.y +@@ -406,7 +406,7 @@ static void gst_parse_element_set (gchar *value, GstElement *element, graph_t *g + } else { + pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (element), value); + if (pspec != NULL) { +- target = g_object_ref (element); ++ target = G_OBJECT(g_object_ref (element)); + GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, target, "found %s property", value); + } else { + SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_PROPERTY, \ +-- +2.14.3 + diff --git a/gstreamer-inspect-rpm-format.patch b/0001-gst-inspect-add-mode-to-output-RPM-requires-format.patch similarity index 86% rename from gstreamer-inspect-rpm-format.patch rename to 0001-gst-inspect-add-mode-to-output-RPM-requires-format.patch index 8a6a0dd..8f3c047 100644 --- a/gstreamer-inspect-rpm-format.patch +++ b/0001-gst-inspect-add-mode-to-output-RPM-requires-format.patch @@ -1,17 +1,17 @@ -From 8dfeddab12777e90f8739f9dab33c62657465854 Mon Sep 17 00:00:00 2001 +From 74a22350dacdd176ee7a6a93fa8393b75e0fcd06 Mon Sep 17 00:00:00 2001 From: Wim Taymans -Date: Mon, 4 Jan 2016 11:39:33 +0100 -Subject: [PATCH] inspect: Add RPM output format +Date: Tue, 5 Mar 2024 10:05:36 +0100 +Subject: [PATCH] gst-inspect: add mode to output RPM requires format --- - tools/gst-inspect.c | 276 +++++++++++++++++++++++++++++++++++++++++++++++++--- - 1 file changed, 261 insertions(+), 15 deletions(-) + subprojects/gstreamer/tools/gst-inspect.c | 277 ++++++++++++++++++++-- + 1 file changed, 262 insertions(+), 15 deletions(-) -diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c -index 845f52e..9084949 100644 ---- a/tools/gst-inspect.c -+++ b/tools/gst-inspect.c -@@ -1302,9 +1302,225 @@ print_element_info (GstElementFactory * factory, gboolean print_names) +diff --git a/subprojects/gstreamer/tools/gst-inspect.c b/subprojects/gstreamer/tools/gst-inspect.c +index 7edd8634a5..d38bf1fbd8 100644 +--- a/subprojects/gstreamer/tools/gst-inspect.c ++++ b/subprojects/gstreamer/tools/gst-inspect.c +@@ -1934,11 +1934,228 @@ print_tracer_info (GstPluginFeature * feature, gboolean print_names) return 0; } @@ -26,9 +26,8 @@ index 845f52e..9084949 100644 + g_string_append (s->data, field); + } +} - - static void --print_plugin_automatic_install_info_codecs (GstElementFactory * factory) ++ ++static void +print_gst_structure_append_field_index (GList * strings, const char *field, + guint num_items, guint offset) +{ @@ -232,13 +231,17 @@ index 845f52e..9084949 100644 + g_list_free (strings); +} + -+static void + /* NOTE: Not coloring output from automatic install functions, as their output + * is meant for machines, not humans. + */ + static void +-print_plugin_automatic_install_info_codecs (GstElementFactory * factory) +print_plugin_automatic_install_info_codecs (GstElementFactory * factory, + gboolean rpm_format) { GstPadDirection direction; const gchar *type_name; -@@ -1330,6 +1546,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) +@@ -1966,6 +2183,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) return; } @@ -252,7 +255,7 @@ index 845f52e..9084949 100644 /* decoder/demuxer sink pads should always be static and there should only * be one, the same applies to encoders/muxers and source pads */ static_templates = gst_element_factory_get_static_pad_templates (factory); -@@ -1366,15 +1589,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) +@@ -2002,15 +2226,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory) gst_structure_remove_field (s, "rate"); gst_structure_remove_field (s, "depth"); gst_structure_remove_field (s, "clock-rate"); @@ -277,7 +280,7 @@ index 845f52e..9084949 100644 { const gchar *const *protocols; -@@ -1383,13 +1611,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) +@@ -2019,13 +2248,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) switch (gst_element_factory_get_uri_type (factory)) { case GST_URI_SINK: while (*protocols != NULL) { @@ -299,7 +302,7 @@ index 845f52e..9084949 100644 ++protocols; } break; -@@ -1400,7 +1634,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) +@@ -2036,7 +2271,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory) } static void @@ -308,7 +311,7 @@ index 845f52e..9084949 100644 { GList *features, *l; -@@ -1419,11 +1653,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin) +@@ -2055,11 +2290,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin) if (feature_plugin == plugin) { GstElementFactory *factory; @@ -327,7 +330,7 @@ index 845f52e..9084949 100644 } if (feature_plugin) gst_object_unref (feature_plugin); -@@ -1445,7 +1683,7 @@ print_all_plugin_automatic_install_info (void) +@@ -2083,7 +2322,7 @@ print_all_plugin_automatic_install_info (void) plugin = (GstPlugin *) (plugins->data); plugins = g_list_next (plugins); @@ -336,15 +339,7 @@ index 845f52e..9084949 100644 } gst_plugin_list_free (orig_plugins); } -@@ -1457,6 +1695,7 @@ main (int argc, char *argv[]) - gboolean do_print_blacklist = FALSE; - gboolean plugin_name = FALSE; - gboolean print_aii = FALSE; -+ gboolean print_aii_rpm = FALSE; - gboolean uri_handlers = FALSE; - gboolean check_exists = FALSE; - gchar *min_version = NULL; -@@ -1474,6 +1713,9 @@ main (int argc, char *argv[]) +@@ -2190,6 +2430,9 @@ real_main (int argc, char *argv[]) "or all plugins provide.\n " "Useful in connection with external automatic plugin " "installation mechanisms"), NULL}, @@ -353,8 +348,8 @@ index 845f52e..9084949 100644 + "Provides compatible-format"), NULL}, {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name, N_("List the plugin contents"), NULL}, - {"exists", '\0', 0, G_OPTION_ARG_NONE, &check_exists, -@@ -1610,7 +1852,7 @@ main (int argc, char *argv[]) + {"types", 't', 0, G_OPTION_ARG_STRING, &types, +@@ -2364,7 +2607,7 @@ real_main (int argc, char *argv[]) /* if there is such a plugin, print out info */ if (plugin) { if (print_aii) { @@ -362,8 +357,8 @@ index 845f52e..9084949 100644 + print_plugin_automatic_install_info (plugin, print_aii_rpm); } else { print_plugin_info (plugin); - print_plugin_features (plugin); -@@ -1623,13 +1865,17 @@ main (int argc, char *argv[]) + print_plugin_status (plugin); +@@ -2378,14 +2621,18 @@ real_main (int argc, char *argv[]) if (plugin) { if (print_aii) { @@ -371,6 +366,7 @@ index 845f52e..9084949 100644 + print_plugin_automatic_install_info (plugin, print_aii_rpm); } else { print_plugin_info (plugin); + print_plugin_status (plugin); print_plugin_features (plugin); } } else { @@ -381,8 +377,18 @@ index 845f52e..9084949 100644 + g_printerr (_("Could not load plugin file: %s\n"), + error->message); g_clear_error (&error); - return -1; - } + exit_code = -1; + goto done; -- -2.5.0 +2.43.2 +--- a/a/a/tools/gst-inspect.c~ 2024-04-30 08:50:02.603031028 -0500 ++++ b/b/b/tools/gst-inspect.c 2024-04-30 08:51:26.239844637 -0500 +@@ -2408,6 +2408,7 @@ + gboolean do_print_blacklist = FALSE; + gboolean plugin_name = FALSE; + gboolean print_aii = FALSE; ++ gboolean print_aii_rpm = FALSE; + gboolean uri_handlers = FALSE; + gboolean check_exists = FALSE; + gboolean check_version = FALSE; diff --git a/gstreamer1.prov b/gstreamer1.prov index d0a9b8a..a3e901e 100644 --- a/gstreamer1.prov +++ b/gstreamer1.prov @@ -9,7 +9,7 @@ # Based on other provides scripts from RPM # -filelist=`grep -e '.so$' | sed "s/['\"]/\\\&/g"` +filelist=`grep -e '^.*/gstreamer-1.0/lib.*.so$' | sed "s/['\"]/\\\&/g"` # --- Alpha does not mark 64bit dependencies• case `uname -m` in @@ -17,8 +17,8 @@ case `uname -m` in *) mark64="()(64bit)" ;; esac -solist=$(echo $filelist | grep "libgst" | \ - xargs file -L 2>/dev/null | grep "ELF.*shared object" | cut -d: -f1 ) +solist=$(echo $filelist | \ + xargs file -L 2>/dev/null | grep "ELF" | cut -d: -f1 ) function getmark() { diff --git a/gstreamer1.spec b/gstreamer1.spec index c6e89b0..a1e2c4a 100644 --- a/gstreamer1.spec +++ b/gstreamer1.spec @@ -2,18 +2,25 @@ #global gitrel 140 #global gitcommit a70055b58568f7304ba46bd8742232337013487b -#global shortcommit %(c=%{gitcommit}; echo ${c:0:5}) +#global shortcommit %%(c=%%{gitcommit}; echo ${c:0:5}) %global _glib2 2.32.0 %global _libxml2 2.4.0 %global _gobject_introspection 1.31.1 +%global __python %{__python3} + +%if 0%{?fedora} +%bcond_without unwind +%else +%bcond_with unwind +%endif Name: gstreamer1 -Version: 1.10.2 -Release: 1%{?gitcommit:.git%{shortcommit}}%{?dist} +Version: 1.26.10 +Release: 1%{?dist} Summary: GStreamer streaming media framework runtime -License: LGPLv2+ +License: LGPL-2.1-or-later URL: http://gstreamer.freedesktop.org/ %if 0%{?gitrel} # git clone git://anongit.freedesktop.org/gstreamer/gstreamer @@ -23,38 +30,32 @@ Source0: gstreamer-%{version}.tar.xz Source0: http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-%{version}.tar.xz %endif ## For GStreamer RPM provides -Patch0: gstreamer-inspect-rpm-format.patch +Patch0: 0001-gst-inspect-add-mode-to-output-RPM-requires-format.patch Source1: gstreamer1.prov Source2: gstreamer1.attr +BuildRequires: meson >= 0.48.0 +BuildRequires: gcc +BuildRequires: libatomic BuildRequires: glib2-devel >= %{_glib2} BuildRequires: libxml2-devel >= %{_libxml2} BuildRequires: gobject-introspection-devel >= %{_gobject_introspection} BuildRequires: bison BuildRequires: flex -BuildRequires: m4 BuildRequires: check-devel -BuildRequires: gtk-doc >= 1.3 BuildRequires: gettext BuildRequires: pkgconfig - -BuildRequires: chrpath - -### documentation requirements -BuildRequires: python2 -BuildRequires: openjade -BuildRequires: jadetex -BuildRequires: libxslt -BuildRequires: docbook-style-dsssl -BuildRequires: docbook-style-xsl -BuildRequires: docbook-utils -BuildRequires: transfig -BuildRequires: netpbm-progs -BuildRequires: tetex-dvips -BuildRequires: ghostscript -%if !0%{?rhel} -BuildRequires: xfig +BuildRequires: libcap-devel +%if %{with unwind} +BuildRequires: libunwind-devel %endif +BuildRequires: elfutils-devel +%if 0%{?fedora} >= 41 || 0%{?rhel} >= 11 +BuildRequires: bash-completion-devel +%else +BuildRequires: bash-completion +%endif +BuildRequires: rustc %description GStreamer is a streaming media framework, based on graphs of filters which @@ -67,85 +68,71 @@ plugins. %package devel Summary: Libraries/include files for GStreamer streaming media framework -Requires: %{name} = %{version}-%{release} -Requires: glib2-devel >= %{_glib2} -Requires: libxml2-devel >= %{_libxml2} +Requires: %{name}%{?isa} = %{version}-%{release} +Requires: glib2-devel%{?_isa} >= %{_glib2} +Requires: libxml2-devel%{?_isa} >= %{_libxml2} Requires: check-devel - +# file /usr/include/gstreamer-1.0/gst/base/gstaggregator.h conflicts between attempted installs of gstreamer1-plugins-bad-free-devel-1.12.4-3.fc28.x86_64 and gstreamer1-devel-1.13.1-1.fc29.x86_64 +Conflicts: gstreamer1-plugins-bad-free-devel < 1.13 %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. - +%if 0 %package devel-docs Summary: Developer documentation for GStreamer streaming media framework Requires: %{name} = %{version}-%{release} BuildArch: noarch - %description devel-docs This %{name}-devel-docs contains developer documentation for the GStreamer streaming media framework. +%endif %prep %setup -q -n gstreamer-%{version} -%patch0 -p1 -b .rpm-provides - +%patch -P 0 -p3 -b .rpm-provides %build -%configure \ - --with-package-name='Fedora GStreamer package' \ - --with-package-origin='http://download.fedoraproject.org' \ - --enable-gtk-doc \ - --enable-debug \ - --disable-tests --disable-examples -make %{?_smp_mflags} V=1 - +%meson \ + -D package-name='Fedora GStreamer package' \ + -D package-origin='http://download.fedoraproject.org' \ + -D tests=disabled -D examples=disabled \ + -D ptp-helper-permissions=capabilities \ + %{!?with_unwind:-D libunwind=disabled -D libdw=disabled } \ + -D dbghelp=disabled \ + -D doc=disabled +%meson_build %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -# Remove rpath. -chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libgstbase-1.0.so.* -chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libgstcheck-1.0.so.* -chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libgstcontroller-1.0.so.* -chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libgstnet-1.0.so.* -chrpath --delete $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/libgstcoreelements.so -chrpath --delete $RPM_BUILD_ROOT%{_libexecdir}/gstreamer-%{majorminor}/gst-plugin-scanner -chrpath --delete $RPM_BUILD_ROOT%{_libexecdir}/gstreamer-%{majorminor}/gst-ptp-helper -chrpath --delete $RPM_BUILD_ROOT%{_bindir}/gst-inspect-1.0 -chrpath --delete $RPM_BUILD_ROOT%{_bindir}/gst-launch-1.0 -chrpath --delete $RPM_BUILD_ROOT%{_bindir}/gst-stats-1.0 -chrpath --delete $RPM_BUILD_ROOT%{_bindir}/gst-typefind-1.0 -chrpath --delete $RPM_BUILD_ROOT%{_datadir}/bash-completion/helpers/gst-completion-helper-%{majorminor} +%meson_install %find_lang gstreamer-%{majorminor} -# Clean out files that should not be part of the rpm. -find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' -find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} ';' # Add the provides script install -m0755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_rpmconfigdir}/gstreamer1.prov # Add the gstreamer plugin file attribute entry (rpm >= 4.9.0) install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer1.attr -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - +%ldconfig_scriptlets %files -f gstreamer-%{majorminor}.lang %license COPYING -%doc AUTHORS NEWS README RELEASE +%doc AUTHORS NEWS README.md README.static-linking RELEASE %{_libdir}/libgstreamer-%{majorminor}.so.* %{_libdir}/libgstbase-%{majorminor}.so.* %{_libdir}/libgstcheck-%{majorminor}.so.* %{_libdir}/libgstcontroller-%{majorminor}.so.* %{_libdir}/libgstnet-%{majorminor}.so.* -%{_libexecdir}/gstreamer-%{majorminor}/ +%dir %{_libexecdir}/gstreamer-%{majorminor}/ +%{_libexecdir}/gstreamer-%{majorminor}/gst-completion-helper +%{_libexecdir}/gstreamer-%{majorminor}/gst-hotdoc-plugins-scanner +%{_libexecdir}/gstreamer-%{majorminor}/gst-plugins-doc-cache-generator +%{_libexecdir}/gstreamer-%{majorminor}/gst-plugin-scanner +%attr(755,root,root) %caps(cap_net_bind_service,cap_net_admin,cap_sys_nice=ep) %{_libexecdir}/gstreamer-%{majorminor}/gst-ptp-helper +#%%{_libexecdir}/gstreamer-%%{majorminor}/gst-ptp-helper-test %dir %{_libdir}/gstreamer-%{majorminor} %{_libdir}/gstreamer-%{majorminor}/libgstcoreelements.so @@ -167,12 +154,12 @@ install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer %doc %{_mandir}/man1/gst-inspect-%{majorminor}.* %doc %{_mandir}/man1/gst-launch-%{majorminor}.* +%doc %{_mandir}/man1/gst-stats-%{majorminor}.* %doc %{_mandir}/man1/gst-typefind-%{majorminor}.* %{_datadir}/bash-completion/completions/gst-inspect-1.0 %{_datadir}/bash-completion/completions/gst-launch-1.0 %{_datadir}/bash-completion/helpers/gst -%{_datadir}/bash-completion/helpers/gst-completion-helper-1.0 %files devel %dir %{_includedir}/gstreamer-%{majorminor} @@ -201,19 +188,354 @@ install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer %{_datadir}/aclocal/gst-element-check-%{majorminor}.m4 +%dir %{_datadir}/gstreamer-%{majorminor}/gdb +%{_datadir}/gstreamer-%{majorminor}/gdb/ +%{_datadir}/gdb/auto-load/ + %{_libdir}/pkgconfig/gstreamer-%{majorminor}.pc %{_libdir}/pkgconfig/gstreamer-base-%{majorminor}.pc %{_libdir}/pkgconfig/gstreamer-controller-%{majorminor}.pc %{_libdir}/pkgconfig/gstreamer-check-%{majorminor}.pc %{_libdir}/pkgconfig/gstreamer-net-%{majorminor}.pc +%{_datadir}/cmake/FindGStreamer.cmake + +%if 0 %files devel-docs %doc %{_datadir}/gtk-doc/html/gstreamer-%{majorminor} %doc %{_datadir}/gtk-doc/html/gstreamer-libs-%{majorminor} %doc %{_datadir}/gtk-doc/html/gstreamer-plugins-%{majorminor} +%endif %changelog +* Tue Jan 06 2026 Gwyn Ciesla - 1.26.10-1 +- 1.26.10 + +* Wed Dec 03 2025 Gwyn Ciesla - 1.26.9-1 +- 1.26.9 + +* Wed Nov 12 2025 Gwyn Ciesla - 1.26.8-1 +- 1.26.8 + +* Tue Oct 14 2025 Gwyn Ciesla - 1.26.7-1 +- 1.26.7 + +* Mon Sep 15 2025 Gwyn Ciesla - 1.26.6-1 +- 1.26.6 + +* Fri Aug 08 2025 Gwyn Ciesla - 1.26.5-2 +- Introspection patch + +* Fri Aug 08 2025 Gwyn Ciesla - 1.26.5-1 +- 1.26.5 + +* Thu Jul 24 2025 Fedora Release Engineering - 1.26.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Fri Jun 27 2025 Gwyn Ciesla - 1.26.3-1 +- 1.26.3 + +* Fri May 30 2025 Gwyn Ciesla - 1.26.2-1 +- 1.26.2 + +* Fri Apr 25 2025 Gwyn Ciesla - 1.26.1-1 +- 1.26.1 + +* Wed Mar 12 2025 Gwyn Ciesla - 1.26.0-1 +- 1.26.0 + +* Fri Jan 17 2025 Fedora Release Engineering - 1.24.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Tue Jan 07 2025 Gwyn Ciesla - 1.24.11-1 +- 1.24.11 + +* Wed Dec 04 2024 Gwyn Ciesla - 1.24.10-1 +- 1.24.10 + +* Thu Oct 31 2024 Gwyn Ciesla - 1.24.9-1 +- 1.24.9 + +* Thu Sep 19 2024 Gwyn Ciesla - 1.24.8-1 +- 1.24.8 + +* Wed Aug 21 2024 Gwyn Ciesla - 1.24.7-1 +- 1.24.7 + +* Mon Jul 29 2024 Gwyn Ciesla - 1.24.6-1 +- 1.24.6 + +* Thu Jul 18 2024 Fedora Release Engineering - 1.24.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Fri Jun 21 2024 Gwyn Ciesla - 1.24.5-1 +- 1.24.5 + +* Wed May 29 2024 Gwyn Ciesla - 1.24.4-1 +- 1.24.4 + +* Tue Apr 30 2024 Gwyn Ciesla - 1.24.3-1 +- 1.24.3 + +* Tue Mar 05 2024 Wim Taymans - 1.24.0-1 +- Update to 1.24.0 + +* Thu Jan 25 2024 Gwyn Ciesla - 1.22.9-1 +- 1.22.9 + +* Wed Jan 24 2024 Fedora Release Engineering - 1.22.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jan 20 2024 Fedora Release Engineering - 1.22.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Dec 18 2023 Gwyn Ciesla - 1.22.8-1 +- 1.22.8 + +* Mon Nov 20 2023 Wim Taymans - 1.22.7-2 +- Set cap information correctly +- Resolves: rhbz#2238703 + +* Mon Nov 13 2023 Gwyn Ciesla - 1.22.7-1 +- 1.22.7 + +* Wed Sep 20 2023 Gwyn Ciesla - 1.22.6-1 +- 1.22.6 + +* Fri Jul 21 2023 Wim Taymans - 1.22.5-1 +- Update to 1.22.5 + +* Thu Jul 20 2023 Fedora Release Engineering - 1.22.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Tue Jun 20 2023 Gwyn Ciesla - 1.22.4-1 +- 1.22.4 + +* Thu Jun 8 2023 Wim Taymans - 1.22.3-2 +- Do setcap on gst-ptp-helper to give the right permissions. + +* Thu May 25 2023 Wim Taymans - 1.22.3-1 +- Update to 1.22.3 + +* Thu Apr 13 2023 Wim Taymans - 1.22.2-1 +- Update to 1.22.2 + +* Mon Mar 13 2023 Wim Taymans - 1.22.1-1 +- Update to 1.22.1 + +* Tue Jan 24 2023 Wim Taymans - 1.22.0-1 +- Update to 1.22.0 + +* Fri Jan 20 2023 Wim Taymans - 1.21.90-1 +- Update to 1.21.90 + +* Thu Jan 19 2023 Fedora Release Engineering - 1.20.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Wed Jan 11 2023 Wim Taymans - 1.20.5-1 +- Update to 1.20.5 + +* Thu Oct 13 2022 Wim Taymans - 1.20.4-1 +- Update to 1.20.4 + +* Thu Jul 21 2022 Fedora Release Engineering - 1.20.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jul 18 2022 Wim Taymans - 1.20.3-1 +- Update to 1.20.3 + +* Fri Feb 4 2022 Wim Taymans - 1.20.0-1 +- Update to 1.20.0 + +* Wed Jan 26 2022 Wim Taymans - 1.19.3-3 +- Fix build, gtk_doc does not exist anymore. + +* Thu Jan 20 2022 Fedora Release Engineering - 1.19.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Nov 11 2021 Wim Taymans - 1.19.3-1 +- Update to 1.19.3 + +* Thu Sep 23 2021 Wim Taymans - 1.19.2-1 +- Update to 1.19.2 + +* Thu Jul 22 2021 Fedora Release Engineering - 1.19.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Thu Jun 03 2021 Wim Taymans - 1.19.1-1 +- Update to 1.19.1 + +* Tue Apr 6 2021 Wim Taymans - 1.18.4-2 +- Fix build options to disable libunwind and libdw + +* Tue Mar 16 2021 Wim Taymans - 1.18.4-1 +- Update to 1.18.4 + +* Tue Feb 23 2021 Wim Taymans - 1.18.2-3 +- Use libunwind only on fedora + +* Tue Jan 26 2021 Fedora Release Engineering - 1.18.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Dec 10 2020 Wim Taymans - 1.18.2-1 +- Update to 1.18.2 + +* Fri Oct 30 2020 Wim Taymans - 1.18.1-1 +- Update to 1.18.1 + +* Tue Sep 8 2020 Wim Taymans - 1.18.0-1 +- Update to 1.18.0 + +* Fri Aug 21 2020 Wim Taymans - 1.17.90-1 +- Update to 1.17.90 + +* Tue Jul 28 2020 Fedora Release Engineering - 1.17.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 6 2020 Wim Taymans - 1.17.2-1 +- Update to 1.17.2 + +* Mon Jun 22 2020 Wim Taymans - 1.17.1-2 +- Enable debug again + +* Mon Jun 22 2020 Wim Taymans - 1.17.1-1 +- Update to 1.17.1 +- Update to meson build +- Disable docs because it needs Hotdoc, which is not in Fedora yet +- remove BuildRequires: for gtk-doc and autoconf related things +- Add BuildRequires: for libunwind-devel, elfutils-devel, bash-completion + +* Wed Jan 29 2020 Fedora Release Engineering - 1.16.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 2 2020 Wim Taymans - 1.16.2-1 +- Update to 1.16.2 + +* Tue Sep 24 2019 Wim Taymans - 1.16.1-1 +- Update to 1.16.1 +- Enable libcap for the ptp helper permissions + +* Thu Jul 25 2019 Fedora Release Engineering - 1.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Tue Apr 23 2019 Wim Taymans - 1.16.0-1 +- Update to 1.16.0 + +* Fri Mar 01 2019 Wim Taymans - 1.15.2-1 +- Update to 1.15.2 + +* Fri Feb 01 2019 Fedora Release Engineering - 1.15.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Mon Jan 28 2019 Wim Taymans - 1.15.1-2 +- Rebuild for dependencies + +* Fri Jan 25 2019 Wim Taymans - 1.15.1-1 +- Update to 1.15.1 + +* Wed Oct 03 2018 Wim Taymans - 1.14.4-1 +- Update to 1.14.4 + +* Tue Sep 18 2018 Wim Taymans - 1.14.3-1 +- Update to 1.14.3 + +* Mon Jul 23 2018 Wim Taymans - 1.14.2-1 +- Update to 1.14.2 + +* Fri Jul 13 2018 Fedora Release Engineering - 1.14.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Jun 15 2018 Wim Taymans - 1.14.1-5 +- Remove xfig build dependency. It has not been needed since + version 1.2.0 + +* Wed Jun 06 2018 Bastien Nocera - 1.14.1-4 +- Remove -Wcast-align fix patch, it's not complete + +* Wed Jun 06 2018 Bastien Nocera - 1.14.1-3 +- Add test patch to shut -Wcast-align warnings + +* Fri May 25 2018 Wim Taymans - 1.14.1-2 +- Update gstreamer1.prov file: Only scan in plugin directories + and relax file name and type. (#1581325) + +* Mon May 21 2018 Wim Taymans - 1.14.1-1 +- Update to 1.14.1 +- Remove obsolete patch + +* Tue Mar 20 2018 Wim Taymans - 1.14.0-1 +- Update to 1.14.0 + +* Wed Mar 14 2018 Wim Taymans - 1.13.91-1 +- Update to 1.13.91 +- fix doc dependencies + +* Mon Mar 05 2018 Wim Taymans - 1.13.90-1 +- Update to 1.13.90 + +* Fri Feb 23 2018 Rex Dieter - 1.13.1-3 +- %%build: --disable-fatal-warnings --disable-silent-rules +- fix rpath harder +- use %%ldconfig_scriptlets, %%make_build, %%make_install +- -devel: tighten deps with %%{_isa} + +* Fri Feb 23 2018 Rex Dieter - 1.13.1-2 +- -devel: Conflicts: gstreamer1-plugins-bad-free-devel < 1.13 + +* Thu Feb 22 2018 Wim Taymans - 1.13.1-1 +- Update to 1.13.1 +- Update rpm patch +- Fix compiler error + +* Wed Feb 07 2018 Fedora Release Engineering - 1.12.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Dec 11 2017 Wim Taymans - 1.12.4-1 +- Update to 1.12.4 + +* Fri Oct 13 2017 Troy Dawson - 1.12.3-2 +- Cleanup spec file conditionals + +* Tue Sep 19 2017 Wim Taymans - 1.12.3-1 +- Update to 1.12.3 + +* Wed Aug 02 2017 Fedora Release Engineering - 1.12.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.12.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Jul 17 2017 Wim Taymans - 1.12.2-1 +- Update to 1.12.2 + +* Tue Jun 20 2017 Wim Taymans - 1.12.1-1 +- Update to 1.12.1 +- Add gst-stats manpage + +* Wed May 10 2017 Wim Taymans - 1.12.0-1 +- Update to 1.12.0 + +* Fri Apr 28 2017 Wim Taymans - 1.11.91-1 +- Update to 1.11.91 + +* Tue Apr 11 2017 Wim Taymans - 1.11.90-1 +- Update to 1.11.90 + +* Thu Mar 30 2017 Wim Taymans - 1.11.2-2 +- rebuild for https://github.com/UnitedRPMs/packages/issues/106#issuecomment-290404434 + +* Fri Feb 24 2017 Wim Taymans - 1.11.2-1 +- Update to 1.11.2 + +* Fri Feb 10 2017 Fedora Release Engineering - 1.11.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild +- fix build + +* Fri Jan 13 2017 Wim Taymans - 1.11.1-1 +- Update to 1.11.1 +- update rpm patch + * Mon Dec 05 2016 Wim Taymans - 1.10.2-1 - Update to 1.10.2 diff --git a/sources b/sources index 320371d..848e92d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0d289e5bcec6353e6540ddb75b7d371b gstreamer-1.10.2.tar.xz +SHA512 (gstreamer-1.26.10.tar.xz) = c12a2347052b4f92d5180bc62d0c854900f724fb9a3a4f238b6c6d1abeaef217f11551d0f6148ef04eecfbf74bb54d82ab415ec09fcb09aeabbfcc470437e944