Accepting request 1066216 from home:alarrosa:branches:multimedia:libs

- 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)

OBS-URL: https://build.opensuse.org/request/show/1066216
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/gstreamer-plugins-rs?expand=0&rev=36
This commit is contained in:
Antonio Larrosa 2023-03-02 14:13:12 +00:00 committed by Git OBS Bridge
parent 5166f9b376
commit 47dd758412
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
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> Thu Feb 16 09:42:41 UTC 2023 - Antonio Larrosa <alarrosa@suse.com>

View File

@ -24,6 +24,12 @@
# Disable csound for now, bring issue upstream # Disable csound for now, bring issue upstream
#%%global __requires_exclude pkgconfig\\(csound\\) #%%global __requires_exclude pkgconfig\\(csound\\)
%ifarch s390 s390x ppc ppc64
%bcond_with aws
%else
%bcond_without aws
%endif
Name: gstreamer-plugins-rs Name: gstreamer-plugins-rs
Version: 0.10.1+git20230213.9cd68ff Version: 0.10.1+git20230213.9cd68ff
Release: 0 Release: 0
@ -112,6 +118,9 @@ export RUSTFLAGS=%{rustflags}
-Ddav1d=auto \ -Ddav1d=auto \
-Dsodium=enabled \ -Dsodium=enabled \
-Dcsound=disabled \ -Dcsound=disabled \
%if %{without aws}
-Daws=disabled \
%endif
%{nil} %{nil}
%meson_build %meson_build
@ -125,7 +134,9 @@ cp %{SOURCE3} %{buildroot}%{_datadir}/appdata/
%license LICENSE-APACHE LICENSE-LGPLv2 LICENSE-MIT %license LICENSE-APACHE LICENSE-LGPLv2 LICENSE-MIT
%doc README.md %doc README.md
%dir %{_libdir}/gstreamer-%{gst_branch} %dir %{_libdir}/gstreamer-%{gst_branch}
%if %{with aws}
%{_libdir}/gstreamer-%{gst_branch}/libgstaws.so %{_libdir}/gstreamer-%{gst_branch}/libgstaws.so
%endif
%{_libdir}/gstreamer-%{gst_branch}/libgstcdg.so %{_libdir}/gstreamer-%{gst_branch}/libgstcdg.so
%{_libdir}/gstreamer-%{gst_branch}/libgstclaxon.so %{_libdir}/gstreamer-%{gst_branch}/libgstclaxon.so
# Disable csound for now, bring issue upstream # Disable csound for now, bring issue upstream