Accepting request 1068720 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/1068720 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gstreamer-plugins-rs?expand=0&rev=14
This commit is contained in:
commit
a604911070
4
_service
4
_service
@ -3,10 +3,10 @@
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="url">https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git</param>
|
||||
<param name="filename">gstreamer-plugins-rs</param>
|
||||
<param name="versionformat">@PARENT_TAG@+git%cd.%h</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">(.*)\+0</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<param name="revision">0.10.1</param>
|
||||
<param name="revision">refs/tags/0.10.2</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="scm">git</param>
|
||||
</service>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git</param>
|
||||
<param name="changesrevision">9cd68ffb5fa303643b9ed2e96bc059cd0da5c20d</param></service></servicedata>
|
||||
<param name="changesrevision">b64da48508e48ff399b99f66ca110483651e8485</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b75fe008f99031ebb14e76bb6c82318b9a2060f4fe441e3a9f313998d71ff4b0
|
||||
size 7513613
|
3
gstreamer-plugins-rs-0.10.2.obscpio
Normal file
3
gstreamer-plugins-rs-0.10.2.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d00b932a1ca67d9272c568894e430833aea46d8e30fe5fe598215e81dda6d35f
|
||||
size 7494669
|
@ -1,3 +1,30 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 27 15:10:02 UTC 2023 - bjorn.lie@gmail.com
|
||||
|
||||
- Update to version 0.10.2:
|
||||
* Fixed:
|
||||
- hlssink3: Allow signal handlers to return `None`
|
||||
- gtk4:
|
||||
. Make GL context sharing more reliable in pipelines with
|
||||
multiple `gtk4paintablesinks`
|
||||
. Attach channel receiver to the main context from the
|
||||
correct thread to make it possible to start the sink from a
|
||||
different thread than the main thread without having
|
||||
retrieved the paintable from the main thread before.
|
||||
- fmp4mux/mp4mux: Ignore caps changes if only the framerate
|
||||
changes.
|
||||
* Changed: gtk4: Simplify and refactor GL context sharing. Apart
|
||||
from being more reliable this reduces GL resource usage.
|
||||
- Stop using git date and commitid in version, we are using
|
||||
upstream released tags now.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 16 15:14:03 UTC 2023 - Antonio Larrosa <alarrosa@suse.com>
|
||||
|
||||
- Disable the aws plugin in big endian architectures since it
|
||||
requires the ring crate which doesn't support big endian systems
|
||||
(see gh#briansmith/ring#1555)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 16 09:42:41 UTC 2023 - Antonio Larrosa <alarrosa@suse.com>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: gstreamer-plugins-rs
|
||||
version: 0.10.1+git20230213.9cd68ff
|
||||
mtime: 1676282011
|
||||
commit: 9cd68ffb5fa303643b9ed2e96bc059cd0da5c20d
|
||||
version: 0.10.2
|
||||
mtime: 1677140193
|
||||
commit: b64da48508e48ff399b99f66ca110483651e8485
|
||||
|
@ -24,8 +24,14 @@
|
||||
# Disable csound for now, bring issue upstream
|
||||
#%%global __requires_exclude pkgconfig\\(csound\\)
|
||||
|
||||
%ifarch s390 s390x ppc ppc64
|
||||
%bcond_with aws
|
||||
%else
|
||||
%bcond_without aws
|
||||
%endif
|
||||
|
||||
Name: gstreamer-plugins-rs
|
||||
Version: 0.10.1+git20230213.9cd68ff
|
||||
Version: 0.10.2
|
||||
Release: 0
|
||||
Summary: GStreamer Streaming-Media Framework Plug-Ins
|
||||
License: LGPL-2.1-or-later
|
||||
@ -112,6 +118,9 @@ export RUSTFLAGS=%{rustflags}
|
||||
-Ddav1d=auto \
|
||||
-Dsodium=enabled \
|
||||
-Dcsound=disabled \
|
||||
%if %{without aws}
|
||||
-Daws=disabled \
|
||||
%endif
|
||||
%{nil}
|
||||
%meson_build
|
||||
|
||||
@ -125,7 +134,9 @@ cp %{SOURCE3} %{buildroot}%{_datadir}/appdata/
|
||||
%license LICENSE-APACHE LICENSE-LGPLv2 LICENSE-MIT
|
||||
%doc README.md
|
||||
%dir %{_libdir}/gstreamer-%{gst_branch}
|
||||
%if %{with aws}
|
||||
%{_libdir}/gstreamer-%{gst_branch}/libgstaws.so
|
||||
%endif
|
||||
%{_libdir}/gstreamer-%{gst_branch}/libgstcdg.so
|
||||
%{_libdir}/gstreamer-%{gst_branch}/libgstclaxon.so
|
||||
# Disable csound for now, bring issue upstream
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5a3ab3a386ef0ae719e2f87c31fcfdf29c96445ebac1c74e9721b6a08ae25f2
|
||||
size 79804734
|
||||
oid sha256:67c2b84f0a70a4d7a385a15892ad6ba94486b81312beff5ad3a2a474509bf5c8
|
||||
size 78248433
|
||||
|
Loading…
Reference in New Issue
Block a user