[packages/gstreamer-devtools] - updated to 1.26.0, added gst-debug-viewer and (optionally) gst-dot-viewer

qboosh qboosh at pld-linux.org
Wed Mar 26 18:32:31 CET 2025


commit f5ad2a8012b68bad67ae1a55f5ad272af2c66dc2
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Wed Mar 26 18:10:38 2025 +0100

    - updated to 1.26.0, added gst-debug-viewer and (optionally) gst-dot-viewer

 gstreamer-devtools.spec | 98 ++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 88 insertions(+), 10 deletions(-)
---
diff --git a/gstreamer-devtools.spec b/gstreamer-devtools.spec
index 4678f43..4f4bf69 100644
--- a/gstreamer-devtools.spec
+++ b/gstreamer-devtools.spec
@@ -2,21 +2,22 @@
 #
 # Conditional build:
 %bcond_without	apidocs	# API documentation
+%bcond_with	rust	# Rust based gst-dots-viewer (TODO: vendor crates)
 
 %define		gstmver		1.0
-%define		gst_ver		1.24.0
-%define		gstpb_ver	1.24.0
-%define		gstpd_ver	1.24.0
+%define		gst_ver		1.26.0
+%define		gstpb_ver	1.26.0
+%define		gstpd_ver	1.26.0
 %define		gstrtsp_ver	%{gst_ver}
 Summary:	GStreamer development and validation tools
 Summary(pl.UTF-8):	Narzędzia programistyczne i sprawdzające do GStreamera
 Name:		gstreamer-devtools
-Version:	1.24.12
+Version:	1.26.0
 Release:	1
-License:	LGPL v2.1+
+License:	LGPL v2.1+, GPL v3+ (debug-viewer), MPL v2.0 (dot-viewer)
 Group:		Libraries
 Source0:	https://gstreamer.freedesktop.org/src/gst-devtools/gst-devtools-%{version}.tar.xz
-# Source0-md5:	52be72adda2331d2abeaab99b9b52f01
+# Source0-md5:	a99f8fcd8ff7ea239c303423e0894e37
 URL:		https://gstreamer.freedesktop.org/
 BuildRequires:	cairo-devel
 BuildRequires:	gettext-devel >= 0.17
@@ -29,7 +30,7 @@ BuildRequires:	gstreamer-transcoder-devel >= %{gstpd_ver}
 BuildRequires:	gtk+3-devel >= 3.0
 %{?with_apidocs:BuildRequires:	hotdoc}
 BuildRequires:	json-glib-devel >= 1.0
-BuildRequires:	meson >= 1.1
+BuildRequires:	meson >= 1.4
 BuildRequires:	ninja >= 1.5
 BuildRequires:	pkgconfig >= 1:0.9.0
 BuildRequires:	python3 >= 1:3.4
@@ -38,6 +39,10 @@ BuildRequires:	rpmbuild(macros) >= 2.042
 BuildRequires:	sed >= 4.0
 BuildRequires:	tar >= 1:1.22
 BuildRequires:	xz
+%if %{with rust}
+BuildRequires:	cargo >= 1.40
+BuildRequires:	rust
+%endif
 BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -106,19 +111,63 @@ Header files for GstValidate library.
 %description -n gstreamer-validate-devel -l pl.UTF-8
 Pliki nagłówkowe biblioteki GstValidate.
 
+%package -n gstreamer-debug-viewer
+Summary:	Examine GStreamer debug log information
+Summary(pl.UTF-8):	Badanie informacji z logów diagnostycznych GStreamera
+License:	GPL v3+
+Group:		Development/Tools
+# Gtk-3.0.typelib
+Requires:	gtk+3 >= 3.0
+Requires:	python3-pygobject3 >= 3.0
+
+%description -n gstreamer-debug-viewer
+Tool to view and read GStreamer debug logs in an efficient way.
+
+%description -n gstreamer-debug-viewer -l pl.UTF-8
+Narzędzie do wydajnego przeglądania i czytania logów diagnostycznych
+GStreamera.
+
+%package -n gstreamer-dots-viewer
+Summary:	GStreamer dot files viewer
+Summary(pl.UTF-8):	Przeglądarka plików dot GStreamera
+License:	MPL v2.0
+
+%description -n gstreamer-dots-viewer
+Simple HTTP server that watches a directory for GStreamer "*.dot"
+files in a local path and serves them as a web page allowing you to
+browse them easily. See `gst-dots-viewer --help` for more information.
+
+%description -n gstreamer-dots-viewer -l pl.UTF
+Prosty serwer HTTP, śledzący lokalny katalog pod kątem plików
+GStremera "*.dot" i serwujący je jako strony WWW, dzięki czemu można
+je łatwo przeglądać. Więcej informacji w `gst-dots-viewer --help`.
+
 %prep
 %setup -q -n gst-devtools-%{version}
 
-%{__sed} -i -e '1s,/usr/bin/env python3,%{__python3},' validate/tools/gst-validate-launcher.in
+%{__sed} -i -e '1s,/usr/bin/env python3,%{__python3},' \
+	debug-viewer/gst-debug-viewer \
+	validate/launcher/RangeHTTPServer.py \
+	validate/tools/gst-validate-launcher.in
 
 %build
 %meson \
 	--default-library=shared \
-	%{!?with_apidocs:-Ddoc=false}
+	-Dcairo=enabled \
+	-Ddebug_viewer=enabled \
+	-Ddoc=%{__enabled_disabled apidocs} \
+	-Ddots_viewer=%{__enabled_disabled rust} \
+	-Dintrospection=enabled \
+	-Dnls=enabled \
+	-Dtests=disabled \
+	-Dtools=enabled \
+	-Dvalidate=enabled
 
 %meson_build
 
 %if %{with apidocs}
+%meson_build build-gst-hotdoc-configs
+
 cd build/docs
 LC_ALL=C.UTF-8 hotdoc run --conf-file gst-devtools-doc.json
 %endif
@@ -128,6 +177,11 @@ rm -rf $RPM_BUILD_ROOT
 
 %meson_install
 
+%py3_comp $RPM_BUILD_ROOT%{_libdir}/gst-validate-launcher/python
+%py3_ocomp $RPM_BUILD_ROOT%{_libdir}/gst-validate-launcher/python
+%py3_comp $RPM_BUILD_ROOT%{py3_sitescriptdir}
+%py3_ocomp $RPM_BUILD_ROOT%{py3_sitescriptdir}
+
 %if %{with apidocs}
 install -d $RPM_BUILD_ROOT%{_docdir}/gstreamer-%{gstmver}
 cp -pr build/docs/gst-devtools-doc $RPM_BUILD_ROOT%{_docdir}/gstreamer-%{gstmver}
@@ -165,7 +219,15 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_libdir}/gstreamer-1.0/validate/libgstvalidategapplication.so
 %attr(755,root,root) %{_libdir}/gstreamer-1.0/validate/libgstvalidategtk.so
 %attr(755,root,root) %{_libdir}/gstreamer-1.0/validate/libgstvalidatessim.so
-%{_libdir}/gst-validate-launcher
+%dir %{_libdir}/gst-validate-launcher
+%dir %{_libdir}/gst-validate-launcher/python
+%dir %{_libdir}/gst-validate-launcher/python/launcher
+%attr(755,root,root) %{_libdir}/gst-validate-launcher/python/launcher/RangeHTTPServer.py
+%{_libdir}/gst-validate-launcher/python/launcher/__init__.py
+%{_libdir}/gst-validate-launcher/python/launcher/[bchlmruv]*.py
+%{_libdir}/gst-validate-launcher/python/launcher/__pycache__
+%{_libdir}/gst-validate-launcher/python/launcher/apps
+%{_libdir}/gst-validate-launcher/python/launcher/testsuites
 %dir %{_datadir}/gstreamer-1.0
 %{_datadir}/gstreamer-1.0/validate
 
@@ -176,3 +238,19 @@ rm -rf $RPM_BUILD_ROOT
 %{_includedir}/gstreamer-1.0/gst/validate
 %{_pkgconfigdir}/gstreamer-validate-1.0.pc
 %{_datadir}/gir-1.0/GstValidate-1.0.gir
+
+%files -n gstreamer-debug-viewer
+%defattr(644,root,root,755)
+%doc debug-viewer/README
+%attr(755,root,root) %{_bindir}/gst-debug-viewer
+%{py3_sitescriptdir}/GstDebugViewer
+%{_datadir}/gst-debug-viewer
+%{_datadir}/metainfo/org.freedesktop.GstDebugViewer.appdata.xml
+%{_desktopdir}/org.freedesktop.GstDebugViewer.desktop
+%{_iconsdir}/hicolor/48x48/apps/gst-debug-viewer.png
+%{_iconsdir}/hicolor/scalable/apps/gst-debug-viewer.svg
+
+%files -n gstreamer-dots-viewer
+%defattr(644,root,root,755)
+%doc dots-viewer/README.md
+%attr(755,root,root) %{_bindir}/gst-dots-viewer
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gstreamer-devtools.git/commitdiff/f5ad2a8012b68bad67ae1a55f5ad272af2c66dc2



More information about the pld-cvs-commit mailing list