Compare commits

...

3 Commits
master ... f33

Author SHA1 Message Date
Tom spot Callaway d171fa8a18 merge 2020-12-04 13:32:35 -05:00
Tom spot Callaway ebf953f4a9 merge libavif logic to one spec 2020-12-04 13:31:40 -05:00
Andreas Schneider 0da57badb3 Disable avif support
This needs to be actively maintained as libavif is not a stable API yet!
2020-11-30 09:42:24 +01:00
1 changed files with 21 additions and 7 deletions

View File

@ -1,6 +1,8 @@
%global _hardened_build 1
%global has_luajit 1
%bcond_with avif
%if 0%{?rhel} && 0%{?rhel} <= 7
%global has_luajit 0
%endif
@ -23,10 +25,14 @@
%global use_wayland 0
%endif
# Disable libavif support for now
# https://phab.enlightenment.org/T8844
# efl 1.25.1 or git master fails to compile with libavif v0.8.2
%bcond_with avif
Name: efl
Version: 1.25.1
Release: 3%{?dist}
Release: 4%{?dist}
Summary: Collection of Enlightenment libraries
License: BSD and LGPLv2+ and GPLv2 and zlib
URL: http://enlightenment.org/
@ -60,12 +66,11 @@ BuildRequires: libxkbcommon-devel uuid-devel libxkbcommon-x11-devel avahi-devel
BuildRequires: rlottie-devel
BuildRequires: pkgconfig(poppler-cpp) >= 0.12
BuildRequires: pkgconfig(libspectre) pkgconfig(libraw)
BuildRequires: pkgconfig(librsvg-2.0) >= 2.14.0
BuildRequires: pkgconfig(librsvg-2.0) >= 2.14.0
BuildRequires: pkgconfig(cairo) >= 1.0.0
# Disable libavif support for now
# https://phab.enlightenment.org/T8844
# efl 1.25.1 or git master fails to compile with libavif v0.8.2
#BuildRequires: pkgconfig(libavif)
%if %{with avif}
BuildRequires: pkgconfig(libavif)
%endif
%if %{with_scim}
BuildRequires: scim-devel
%endif
@ -210,11 +215,14 @@ Development files for EFL.
# data/libeo.so.%{version}-gdb.py
%build
# Disable libavif support for now
%{meson} \
-Dxinput22=true \
-Dsystemd=true \
%if %{with avif}
-Devas-loaders-disabler=json \
%else
-Devas-loaders-disabler=json,avif \
%endif
-Dharfbuzz=true \
-Dsdl=true \
-Dbuffer=true \
@ -570,6 +578,12 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';'
%{_libdir}/libexactness*.so
%changelog
* Fri Dec 4 2020 Tom Callaway <spot@fedoraproject.org> - 1.25.1-4
- merge libavif logic to one spec
* Mon Nov 30 2020 Andreas Schneider <asn@redhat.com> - 1.25.1-3.1
- Disable avif support
* Tue Oct 27 2020 Mamoru TASAKA <mtasaka@fedoraprojet.org> - 1.25.1-3
- Disable libavif support for now (bug 1891658)