From 06669ea3438098ed926090a75875b5edee6692d4 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Wed, 28 Sep 2022 14:41:13 -0400 Subject: [PATCH 01/19] local build --- crun.spec | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/crun.spec b/crun.spec index d57b4a2..29a5774 100644 --- a/crun.spec +++ b/crun.spec @@ -43,7 +43,6 @@ BuildRequires: systemd-devel BuildRequires: yajl-devel %if "%{krun_support}" == "enabled" BuildRequires: libkrun-devel -Provides: krun %endif BuildRequires: libseccomp-devel BuildRequires: libselinux-devel @@ -72,19 +71,29 @@ Provides: oci-runtime %install %make_install rm -rf %{buildroot}%{_prefix}/lib* - %if "%{krun_support}" == "enabled" -ln -s %{_bindir}/%{name} %{buildroot}%{_bindir}/krun +ln -s ../bin/%{name} %{buildroot}%{_bindir}/krun %endif %files %license COPYING %{_bindir}/%{name} -%if "%{krun_support}" == "enabled" -%{_bindir}/krun -%endif %{_mandir}/man1/* +%if "%{krun_support}" == "enabled" +%package krun +Summary: OCI Runtime providing Virtualization-based process isolation capabilities. +Provides: krun +Requires: libkrun + +%description krun +%{name}-krun OCI Runtime providing Virtualization-based process isolation capabilities. + +%files krun +%{_bindir}/krun + +%endif + %changelog %if "%{_vendor}" != "debbuild" %autochangelog From 13af637c995a1c4521460ceada566c123fbb9b64 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Tue, 4 Oct 2022 15:02:13 -0400 Subject: [PATCH 02/19] remove debbuild macros to comply with fedora guidelines Signed-off-by: Lokesh Mandvekar (cherry picked from commit 263de70111d4a49a0ac3fdda1c005997101b1578) Signed-off-by: Lokesh Mandvekar --- crun.spec | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/crun.spec b/crun.spec index 29a5774..503b1de 100644 --- a/crun.spec +++ b/crun.spec @@ -7,34 +7,21 @@ %endif %endif -%global built_tag_strip 1.6 +%global built_tag 1.6 +%global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) Summary: OCI runtime written in C Name: crun -Version: 1.6 +Version: %{gen_version} URL: https://github.com/containers/%{name} +# Fetched from upstream Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz -%if "%{_vendor}" == "debbuild" -Packager: Podman Debbuild Maintainers -License: GPL-2.0+ -Release: 0%{?dist} -%else License: GPLv2+ Release: %autorelease -%endif BuildRequires: autoconf BuildRequires: automake BuildRequires: go-md2man BuildRequires: libtool -%if "%{_vendor}" == "debbuild" -BuildRequires: git -BuildRequires: libcap-dev -BuildRequires: libseccomp-dev -BuildRequires: libsystemd-dev -BuildRequires: libyajl-dev -BuildRequires: pkg-config -Requires: criu -%else BuildRequires: gcc BuildRequires: git-core BuildRequires: python3 @@ -54,7 +41,6 @@ BuildRequires: protobuf-c-devel BuildRequires: criu-devel >= 3.17.1-2 %endif Requires: criu >= 3.17.1 -%endif Provides: oci-runtime %description @@ -95,6 +81,4 @@ Requires: libkrun %endif %changelog -%if "%{_vendor}" != "debbuild" %autochangelog -%endif From 5c4f803a8af59391ac239d4b87ef3747cfd58f02 Mon Sep 17 00:00:00 2001 From: RH Container Bot Date: Fri, 7 Oct 2022 15:14:05 +0000 Subject: [PATCH 03/19] auto bump to 1.6 (cherry picked from commit aac762a55d4423ef0b3e13a0a90e5718e867a5a3) --- crun.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crun.spec b/crun.spec index 503b1de..ffd5dc2 100644 --- a/crun.spec +++ b/crun.spec @@ -12,7 +12,7 @@ Summary: OCI runtime written in C Name: crun -Version: %{gen_version} +Version: 1.6 URL: https://github.com/containers/%{name} # Fetched from upstream Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz From f820d42ee5ef081380f57bcefbebe1bff5599837 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Fri, 7 Oct 2022 13:28:26 -0400 Subject: [PATCH 04/19] Revert "auto bump to 1.6" This reverts commit aac762a55d4423ef0b3e13a0a90e5718e867a5a3 by autobuilder. (cherry picked from commit 76df75985feee32d052a5975ba8237c81bb86434) Signed-off-by: Lokesh Mandvekar --- crun.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crun.spec b/crun.spec index ffd5dc2..503b1de 100644 --- a/crun.spec +++ b/crun.spec @@ -12,7 +12,7 @@ Summary: OCI runtime written in C Name: crun -Version: 1.6 +Version: %{gen_version} URL: https://github.com/containers/%{name} # Fetched from upstream Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz From 2bb7eade8f7e718e7ef2f219d20147b5fd7c1ed1 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Fri, 28 Oct 2022 15:56:02 +0000 Subject: [PATCH 05/19] Add ExclusiveArch If using golang, then you needs to use ExclusiveArch for those arches that do not have golang. (cherry picked from commit db6cce4e02c8d54e79111ed9f719fd0e8345bc3e) Signed-off-by: Lokesh Mandvekar --- crun.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/crun.spec b/crun.spec index 503b1de..2b53582 100644 --- a/crun.spec +++ b/crun.spec @@ -18,6 +18,7 @@ URL: https://github.com/containers/%{name} Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz License: GPLv2+ Release: %autorelease +ExclusiveArch: %{golang_arches} BuildRequires: autoconf BuildRequires: automake BuildRequires: go-md2man From 8af5ee9ce7eee7cd51d0a9ac78d7ff3cfdc31a93 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Thu, 3 Nov 2022 17:43:59 +0530 Subject: [PATCH 06/19] 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 (cherry picked from commit f0e158812d12f51b877fffde769b6ab893d2054c) Signed-off-by: Lokesh Mandvekar --- crun.spec | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/crun.spec b/crun.spec index 2b53582..31abf21 100644 --- a/crun.spec +++ b/crun.spec @@ -7,6 +7,14 @@ %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 gen_version %(b=%{built_tag}; echo ${b/-/"~"}) @@ -32,6 +40,9 @@ BuildRequires: yajl-devel %if "%{krun_support}" == "enabled" BuildRequires: libkrun-devel %endif +%if "%{wasm_support}" == "enabled" +BuildRequires: wasmedge-devel +%endif BuildRequires: libseccomp-devel BuildRequires: libselinux-devel BuildRequires: python3-libmount @@ -52,7 +63,7 @@ Provides: oci-runtime %build ./autogen.sh -%configure --disable-silent-rules %{krun_opts} +%configure --disable-silent-rules %{krun_opts} %{wasm_opts} %make_build %install @@ -62,6 +73,10 @@ rm -rf %{buildroot}%{_prefix}/lib* ln -s ../bin/%{name} %{buildroot}%{_bindir}/krun %endif +%if "%{wasm_support}" == "enabled" +ln -s ../bin/%{name} %{buildroot}%{_bindir}/%{name}-wasm +%endif + %files %license COPYING %{_bindir}/%{name} @@ -71,6 +86,7 @@ ln -s ../bin/%{name} %{buildroot}%{_bindir}/krun %package krun Summary: OCI Runtime providing Virtualization-based process isolation capabilities. Provides: krun +Requires: %{name} = %{version}-%{release} Requires: libkrun %description krun @@ -78,7 +94,20 @@ Requires: libkrun %files 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 %changelog From e3a789b9e7813e74969517df52889fdba44383fd Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 7 Nov 2022 07:30:57 -0500 Subject: [PATCH 07/19] local build --- crun.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crun.spec b/crun.spec index 31abf21..a8a285e 100644 --- a/crun.spec +++ b/crun.spec @@ -15,7 +15,7 @@ %endif %endif -%global built_tag 1.6 +%global built_tag 1.7 %global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) Summary: OCI runtime written in C diff --git a/sources b/sources index 223c0de..94f0e6d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crun-1.6.tar.xz) = cb0464792df6167719fd21c3e1117dc0d89cf91c60d02b478774d14b73bdf49b0d138578b48803ff5af28f50740f5022b043fdf3198833d4a9b69e40974ced00 +SHA512 (crun-1.7.tar.xz) = acccd5f2c7f058b14147c3260bcc8cbb04eadeef44218086faa331e4335a56a8733c20f105d0c8d1a75878831d74937428fbf3beb3b0c6badc315b61f90224ac From 79dac38ffc84c6b588837b89083d19dabc97209e Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Wed, 16 Nov 2022 18:19:48 +0530 Subject: [PATCH 08/19] use correct macro Signed-off-by: Lokesh Mandvekar (cherry picked from commit d68ce50debfbacf9b4a873c188664963a2860318) Signed-off-by: Lokesh Mandvekar --- crun.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crun.spec b/crun.spec index a8a285e..34e454b 100644 --- a/crun.spec +++ b/crun.spec @@ -59,7 +59,7 @@ Provides: oci-runtime %{name} is a runtime for running OCI containers %prep -%autosetup -Sgit %{name}-%{built_tag_strip} +%autosetup -Sgit %{name}-%{built_tag} %build ./autogen.sh From 78914c7229e665e28c1dfcc7133fc4b6cde58ba3 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Tue, 22 Nov 2022 09:34:59 +0530 Subject: [PATCH 09/19] wasmedge present on all active Fedoras Signed-off-by: Lokesh Mandvekar (cherry picked from commit bdd508b2f6ffc64e5e527d105cbd44ec4c60ad74) Signed-off-by: Lokesh Mandvekar --- crun.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/crun.spec b/crun.spec index 34e454b..55ae78c 100644 --- a/crun.spec +++ b/crun.spec @@ -8,12 +8,10 @@ %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.7 %global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) From eddc8436e401a9a4813225d5478d8f6711b9a01a Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Fri, 25 Nov 2022 12:57:36 +0100 Subject: [PATCH 10/19] bump to 1.7.1 Signed-off-by: Giuseppe Scrivano (cherry picked from commit 07a7ba9e0170dc0cc5d2889b165f4377193ca3f7) (cherry picked from commit d464919c004b8d0b6ac98bd9a62149d62d3f9dd2) --- .gitignore | 2 ++ crun.spec | 2 +- sources | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c894000..e5ea8fc 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,5 @@ crun-0.1.1.tar.gz /crun-1.4.5.tar.xz /crun-1.5.tar.xz /crun-1.6.tar.xz +/crun-1.7.tar.xz +/crun-1.7.1.tar.xz diff --git a/crun.spec b/crun.spec index 55ae78c..a80f990 100644 --- a/crun.spec +++ b/crun.spec @@ -13,7 +13,7 @@ %global wasm_opts --with-wasmedge %endif -%global built_tag 1.7 +%global built_tag 1.7.1 %global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) Summary: OCI runtime written in C diff --git a/sources b/sources index 94f0e6d..791cd98 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crun-1.7.tar.xz) = acccd5f2c7f058b14147c3260bcc8cbb04eadeef44218086faa331e4335a56a8733c20f105d0c8d1a75878831d74937428fbf3beb3b0c6badc315b61f90224ac +SHA512 (crun-1.7.1.tar.xz) = d7a77fc9c2966ae2c3d8a1205e75bdd58e4eb862ab74e4a77b93fbaeb214f4b918f0c7e15f642627d5ab4121318bf7ab2996a21f5036802a964658f3b35d6672 From e4323a324f216c7d6b953e4c11ff090ceb18c111 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Tue, 29 Nov 2022 20:52:27 +0100 Subject: [PATCH 11/19] bump to 1.7.2 Signed-off-by: Giuseppe Scrivano (cherry picked from commit 8434a3b7bcf8512a4278091697585f8fcc8e960a) --- .gitignore | 1 + crun.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e5ea8fc..33625d5 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,4 @@ crun-0.1.1.tar.gz /crun-1.6.tar.xz /crun-1.7.tar.xz /crun-1.7.1.tar.xz +/crun-1.7.2.tar.xz diff --git a/crun.spec b/crun.spec index a80f990..573fbf8 100644 --- a/crun.spec +++ b/crun.spec @@ -13,7 +13,7 @@ %global wasm_opts --with-wasmedge %endif -%global built_tag 1.7.1 +%global built_tag 1.7.2 %global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) Summary: OCI runtime written in C diff --git a/sources b/sources index 791cd98..608ef62 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crun-1.7.1.tar.xz) = d7a77fc9c2966ae2c3d8a1205e75bdd58e4eb862ab74e4a77b93fbaeb214f4b918f0c7e15f642627d5ab4121318bf7ab2996a21f5036802a964658f3b35d6672 +SHA512 (crun-1.7.2.tar.xz) = e85659ef053a20554f4fede68cd913108a3bc946d3c2a1082a748cdad9a1ee17a6a5199dcc69ab7d6056bddad25ca409092a1da2a88d116d56bdd48084a998bd From 35e1e8f8204ff6f91c1653147b55d81529052651 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Tue, 13 Dec 2022 11:18:29 +0100 Subject: [PATCH 12/19] make criu a weak dependency Signed-off-by: Giuseppe Scrivano (cherry picked from commit c14e1218f5937622122158e11f5e777c1ee7065f) --- crun.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crun.spec b/crun.spec index 573fbf8..bcff79d 100644 --- a/crun.spec +++ b/crun.spec @@ -50,7 +50,8 @@ BuildRequires: protobuf-c-devel %ifnarch %ix86 BuildRequires: criu-devel >= 3.17.1-2 %endif -Requires: criu >= 3.17.1 +Recommends: criu >= 3.17.1 +Recommends: criu-libs Provides: oci-runtime %description From 29e6ea0f362ba6d5877050af04c6f1475eb13b95 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Tue, 3 Jan 2023 15:03:51 +0100 Subject: [PATCH 13/19] crun: add gcrypt dependency Signed-off-by: Giuseppe Scrivano (cherry picked from commit c81e179cdc77600d73f10508dd27aaaf299d7acc) --- crun.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/crun.spec b/crun.spec index bcff79d..6a6c3ec 100644 --- a/crun.spec +++ b/crun.spec @@ -35,6 +35,7 @@ BuildRequires: python3 BuildRequires: libcap-devel BuildRequires: systemd-devel BuildRequires: yajl-devel +BuildRequires: libgcrypt-devel %if "%{krun_support}" == "enabled" BuildRequires: libkrun-devel %endif From fec18b5596d71c0e7f3674ed97c714f4277c5248 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Thu, 2 Feb 2023 18:44:12 +0530 Subject: [PATCH 14/19] bump to v1.8 Signed-off-by: Lokesh Mandvekar (cherry picked from commit 885030c8cad06a1736aa0c3cd70edb4e94fefdea) Signed-off-by: Lokesh Mandvekar --- .gitignore | 1 + crun.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 33625d5..49683b5 100644 --- a/.gitignore +++ b/.gitignore @@ -64,3 +64,4 @@ crun-0.1.1.tar.gz /crun-1.7.tar.xz /crun-1.7.1.tar.xz /crun-1.7.2.tar.xz +/crun-1.8.tar.xz diff --git a/crun.spec b/crun.spec index 6a6c3ec..163e242 100644 --- a/crun.spec +++ b/crun.spec @@ -13,7 +13,7 @@ %global wasm_opts --with-wasmedge %endif -%global built_tag 1.7.2 +%global built_tag 1.8 %global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) Summary: OCI runtime written in C diff --git a/sources b/sources index 608ef62..4ee56a5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crun-1.7.2.tar.xz) = e85659ef053a20554f4fede68cd913108a3bc946d3c2a1082a748cdad9a1ee17a6a5199dcc69ab7d6056bddad25ca409092a1da2a88d116d56bdd48084a998bd +SHA512 (crun-1.8.tar.xz) = 373d4fa69085b1ffecff32b4f2da0ab7dd0ec80d68e24ab262127e71cdfcbee50b932aa109980ad683444fdfe288a6495fc40cd81beb8b56af5c244218c7157c From a94a4c1f2fcfd9738b2be3c92bc5f9d50012ab36 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Mon, 27 Feb 2023 11:56:33 +0100 Subject: [PATCH 15/19] bump to 1.8.1 Signed-off-by: Giuseppe Scrivano (cherry picked from commit 42d7001ab491f163bbc054f563211c0efe949a15) --- .gitignore | 1 + crun.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 49683b5..00f243a 100644 --- a/.gitignore +++ b/.gitignore @@ -65,3 +65,4 @@ crun-0.1.1.tar.gz /crun-1.7.1.tar.xz /crun-1.7.2.tar.xz /crun-1.8.tar.xz +/crun-1.8.1.tar.xz diff --git a/crun.spec b/crun.spec index 163e242..5f3886d 100644 --- a/crun.spec +++ b/crun.spec @@ -13,7 +13,7 @@ %global wasm_opts --with-wasmedge %endif -%global built_tag 1.8 +%global built_tag 1.8.1 %global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) Summary: OCI runtime written in C diff --git a/sources b/sources index 4ee56a5..cf842bd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crun-1.8.tar.xz) = 373d4fa69085b1ffecff32b4f2da0ab7dd0ec80d68e24ab262127e71cdfcbee50b932aa109980ad683444fdfe288a6495fc40cd81beb8b56af5c244218c7157c +SHA512 (crun-1.8.1.tar.xz) = 6230b378f4746aff1d53f3ed797229b2056ece76e8e5b22d6f5f7b42e6042c6aff5294298f3cfd1293b4a87371dfa58cc69e57455e20948abd7269059ad39042 From 90f9a5e1b59217468e5d413fd79472afa08f625a Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Tue, 21 Mar 2023 15:27:32 +0100 Subject: [PATCH 16/19] bump to 1.8.2 Signed-off-by: Giuseppe Scrivano (cherry picked from commit 5dc658ac42c2bc6ed3d4450c8fb0a9db7b0ec557) --- crun.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crun.spec b/crun.spec index 5f3886d..79ae977 100644 --- a/crun.spec +++ b/crun.spec @@ -13,7 +13,7 @@ %global wasm_opts --with-wasmedge %endif -%global built_tag 1.8.1 +%global built_tag 1.8.2 %global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) Summary: OCI runtime written in C From cb252a8a45f71588a52f1df00b8fb1f7542f62c2 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Tue, 21 Mar 2023 16:03:33 +0100 Subject: [PATCH 17/19] update source for 1.8.2 Signed-off-by: Giuseppe Scrivano (cherry picked from commit 4f279e7a348dc626de83cbf9d3692e90e8e18f38) --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 00f243a..6e8369b 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,4 @@ crun-0.1.1.tar.gz /crun-1.7.2.tar.xz /crun-1.8.tar.xz /crun-1.8.1.tar.xz +/crun-1.8.2.tar.xz diff --git a/sources b/sources index cf842bd..3d92f3f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crun-1.8.1.tar.xz) = 6230b378f4746aff1d53f3ed797229b2056ece76e8e5b22d6f5f7b42e6042c6aff5294298f3cfd1293b4a87371dfa58cc69e57455e20948abd7269059ad39042 +SHA512 (crun-1.8.2.tar.xz) = d0190cc17dac44a314e1e5ab35aa4d1c6f42c6bfb87ea337a184453fabaa26324507be8b9fc9e34a0c66bc2eb8b8215fb3855ede6533563fc064052928346d89 From 2748c7baf2ecbde733313def07e792746a71bfc3 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Sat, 25 Mar 2023 08:41:13 +0100 Subject: [PATCH 18/19] bump to 1.8.3 Signed-off-by: Giuseppe Scrivano (cherry picked from commit bca7bed7668523d916064934236de1db5d6f452b) --- crun.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crun.spec b/crun.spec index 79ae977..245a785 100644 --- a/crun.spec +++ b/crun.spec @@ -13,7 +13,7 @@ %global wasm_opts --with-wasmedge %endif -%global built_tag 1.8.2 +%global built_tag 1.8.3 %global gen_version %(b=%{built_tag}; echo ${b/-/"~"}) Summary: OCI runtime written in C From 8cc124de4b50f9fa8f59c0b2e4675b35461657ef Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Sat, 25 Mar 2023 08:48:07 +0100 Subject: [PATCH 19/19] update sources Signed-off-by: Giuseppe Scrivano (cherry picked from commit 85c3a19695c7dda1cd4f335ca4acb3a23ca2b9db) --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6e8369b..645e8b1 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,4 @@ crun-0.1.1.tar.gz /crun-1.8.tar.xz /crun-1.8.1.tar.xz /crun-1.8.2.tar.xz +/crun-1.8.3.tar.xz diff --git a/sources b/sources index 3d92f3f..982e22f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crun-1.8.2.tar.xz) = d0190cc17dac44a314e1e5ab35aa4d1c6f42c6bfb87ea337a184453fabaa26324507be8b9fc9e34a0c66bc2eb8b8215fb3855ede6533563fc064052928346d89 +SHA512 (crun-1.8.3.tar.xz) = ac3a99c6d17724d356eb22af81c2b94f91d98d69763c34773260e549b159b1da5298a4387efa89615c510a24d65dc002ca3dce6dfb93ca5aa7513f328dbdb6ed