summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2021-05-06 16:35:21 -0400
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-05-06 16:35:21 -0400
commit7690f230717ce0164de7126caeb5f930f3030be0 (patch)
tree04ed96eb6ea480675cd26187443147d8814d70d8
parent040275428d47792bb25a19e5ee384f395d9bd086 (diff)
downloadmeta-virtualization-7690f230717ce0164de7126caeb5f930f3030be0.tar.gz
umoci: add -native variant
In preparation for using umoci along side of sloci as to construct multi later oci images, we need a -native variant. For now, we don't need skopeo on the host side, so we clear it from the class-native RDEPENDS. Skopeo has significant dependencies, so we'd rather avoid ever needing it as a -native tool. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-containers/umoci/umoci_git.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes-containers/umoci/umoci_git.bb b/recipes-containers/umoci/umoci_git.bb
index 0f0166a4..5273a70e 100644
--- a/recipes-containers/umoci/umoci_git.bb
+++ b/recipes-containers/umoci/umoci_git.bb
@@ -3,8 +3,8 @@ SUMMARY = "umoci modifies Open Container images"
3LICENSE = "Apache-2.0" 3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://COPYING;md5=3b83ef96387f14655fc854ddc3c6bd57" 4LIC_FILES_CHKSUM = "file://COPYING;md5=3b83ef96387f14655fc854ddc3c6bd57"
5 5
6RDEPENDS_${PN} = "skopeo \ 6RDEPENDS_${PN} = "skopeo"
7 " 7RDEPENDS_${PN}_class-native = ""
8 8
9SRCREV_umoci = "758044fc26ad65eb900143e90d1e22c2d6e4484d" 9SRCREV_umoci = "758044fc26ad65eb900143e90d1e22c2d6e4484d"
10SRC_URI = "git://github.com/opencontainers/umoci.git;branch=master;name=umoci;destsuffix=github.com/opencontainers/umoci \ 10SRC_URI = "git://github.com/opencontainers/umoci.git;branch=master;name=umoci;destsuffix=github.com/opencontainers/umoci \
@@ -46,3 +46,5 @@ do_install() {
46} 46}
47 47
48INSANE_SKIP_${PN} += "ldflags already-stripped" 48INSANE_SKIP_${PN} += "ldflags already-stripped"
49
50BBCLASSEXTEND = "native"