enable wasm support
Currently, wasmedge is the only wasm provider in Fedora. That may change with time. All wasm providers will include a `Provides: wasm-library` which will be a hard dependency for crun along with a weak dependency that the user can change per need. Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
This commit is contained in:
parent
db6cce4e02
commit
f0e158812d
31
crun.spec
31
crun.spec
@ -7,6 +7,14 @@
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
# wasmedge built only for aarch64 and x86_64
|
||||||
|
%if 0%{?fedora} >= 36
|
||||||
|
%ifarch aarch64 || x86_64
|
||||||
|
%global wasm_support enabled
|
||||||
|
%global wasm_opts --with-wasmedge
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
%global built_tag 1.6
|
%global built_tag 1.6
|
||||||
%global gen_version %(b=%{built_tag}; echo ${b/-/"~"})
|
%global gen_version %(b=%{built_tag}; echo ${b/-/"~"})
|
||||||
|
|
||||||
@ -32,6 +40,9 @@ BuildRequires: yajl-devel
|
|||||||
%if "%{krun_support}" == "enabled"
|
%if "%{krun_support}" == "enabled"
|
||||||
BuildRequires: libkrun-devel
|
BuildRequires: libkrun-devel
|
||||||
%endif
|
%endif
|
||||||
|
%if "%{wasm_support}" == "enabled"
|
||||||
|
BuildRequires: wasmedge-devel
|
||||||
|
%endif
|
||||||
BuildRequires: libseccomp-devel
|
BuildRequires: libseccomp-devel
|
||||||
BuildRequires: libselinux-devel
|
BuildRequires: libselinux-devel
|
||||||
BuildRequires: python3-libmount
|
BuildRequires: python3-libmount
|
||||||
@ -52,7 +63,7 @@ Provides: oci-runtime
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
%configure --disable-silent-rules %{krun_opts}
|
%configure --disable-silent-rules %{krun_opts} %{wasm_opts}
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -62,6 +73,10 @@ rm -rf %{buildroot}%{_prefix}/lib*
|
|||||||
ln -s ../bin/%{name} %{buildroot}%{_bindir}/krun
|
ln -s ../bin/%{name} %{buildroot}%{_bindir}/krun
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if "%{wasm_support}" == "enabled"
|
||||||
|
ln -s ../bin/%{name} %{buildroot}%{_bindir}/%{name}-wasm
|
||||||
|
%endif
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
@ -71,6 +86,7 @@ ln -s ../bin/%{name} %{buildroot}%{_bindir}/krun
|
|||||||
%package krun
|
%package krun
|
||||||
Summary: OCI Runtime providing Virtualization-based process isolation capabilities.
|
Summary: OCI Runtime providing Virtualization-based process isolation capabilities.
|
||||||
Provides: krun
|
Provides: krun
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: libkrun
|
Requires: libkrun
|
||||||
|
|
||||||
%description krun
|
%description krun
|
||||||
@ -78,7 +94,20 @@ Requires: libkrun
|
|||||||
|
|
||||||
%files krun
|
%files krun
|
||||||
%{_bindir}/krun
|
%{_bindir}/krun
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if "%{wasm_support}" == "enabled"
|
||||||
|
%package wasm
|
||||||
|
Summary: wasm support for %{name}
|
||||||
|
Requires: wasm-library
|
||||||
|
Recommends: wasmedge
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description wasm
|
||||||
|
%{name}-wasm provides %{name} built with wasm support
|
||||||
|
|
||||||
|
%files wasm
|
||||||
|
%{_bindir}/%{name}-wasm
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user