summaryrefslogtreecommitdiffstats
path: root/recipes-containers/crun
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2025-06-25 22:40:08 -0400
committerBruce Ashfield <bruce.ashfield@gmail.com>2025-06-25 22:40:08 -0400
commitbc2a750d5cd518706aff406da6e0719ce475e36b (patch)
tree50fc47c0c749ec6cb3ea6e197b7b78cb97932714 /recipes-containers/crun
parent9f23867e6386ba4131c165f084c5f5de2c612451 (diff)
downloadmeta-virtualization-bc2a750d5cd518706aff406da6e0719ce475e36b.tar.gz
containers: adapt to UNPACKDIR changes
This commit updates the container recipes to the OE core UNPACKDIR changes. - We drop references to WORKDIR - We adjust destsuffix fetches to use BB_GIT_DEFAULT_DESTSUFFIX instead of 'git' - Update our GOPATH references to use UNPACKDIR - Drop S = assignemnts where possible Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-containers/crun')
-rw-r--r--recipes-containers/crun/crun_git.bb9
1 files changed, 4 insertions, 5 deletions
diff --git a/recipes-containers/crun/crun_git.bb b/recipes-containers/crun/crun_git.bb
index 0dbf362f..86c22615 100644
--- a/recipes-containers/crun/crun_git.bb
+++ b/recipes-containers/crun/crun_git.bb
@@ -11,14 +11,13 @@ SRCREV_yajl = "f344d21280c3e4094919fd318bc5ce75da91fc06"
11 11
12SRCREV_FORMAT = "crun_rspec" 12SRCREV_FORMAT = "crun_rspec"
13SRC_URI = "git://github.com/containers/crun.git;branch=main;name=crun;protocol=https \ 13SRC_URI = "git://github.com/containers/crun.git;branch=main;name=crun;protocol=https \
14 git://github.com/containers/libocispec.git;branch=main;name=libocispec;destsuffix=git/libocispec;protocol=https \ 14 git://github.com/containers/libocispec.git;branch=main;name=libocispec;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/libocispec;protocol=https \
15 git://github.com/opencontainers/runtime-spec.git;branch=main;name=rspec;destsuffix=git/libocispec/runtime-spec;protocol=https \ 15 git://github.com/opencontainers/runtime-spec.git;branch=main;name=rspec;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/libocispec/runtime-spec;protocol=https \
16 git://github.com/opencontainers/image-spec.git;branch=main;name=ispec;destsuffix=git/libocispec/image-spec;protocol=https \ 16 git://github.com/opencontainers/image-spec.git;branch=main;name=ispec;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/libocispec/image-spec;protocol=https \
17 git://github.com/containers/yajl.git;branch=main;name=yajl;destsuffix=git/libocispec/yajl;protocol=https \ 17 git://github.com/containers/yajl.git;branch=main;name=yajl;destsuffix=${BB_GIT_DEFAULT_DESTSUFFIX}/libocispec/yajl;protocol=https \
18 " 18 "
19 19
20PV = "v1.20.0+git${SRCREV_crun}" 20PV = "v1.20.0+git${SRCREV_crun}"
21S = "${WORKDIR}/git"
22 21
23inherit autotools-brokensep pkgconfig 22inherit autotools-brokensep pkgconfig
24 23