diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-05-06 16:35:21 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-05-06 16:35:21 -0400 |
commit | 7690f230717ce0164de7126caeb5f930f3030be0 (patch) | |
tree | 04ed96eb6ea480675cd26187443147d8814d70d8 | |
parent | 040275428d47792bb25a19e5ee384f395d9bd086 (diff) | |
download | meta-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.bb | 6 |
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" | |||
3 | LICENSE = "Apache-2.0" | 3 | LICENSE = "Apache-2.0" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=3b83ef96387f14655fc854ddc3c6bd57" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=3b83ef96387f14655fc854ddc3c6bd57" |
5 | 5 | ||
6 | RDEPENDS_${PN} = "skopeo \ | 6 | RDEPENDS_${PN} = "skopeo" |
7 | " | 7 | RDEPENDS_${PN}_class-native = "" |
8 | 8 | ||
9 | SRCREV_umoci = "758044fc26ad65eb900143e90d1e22c2d6e4484d" | 9 | SRCREV_umoci = "758044fc26ad65eb900143e90d1e22c2d6e4484d" |
10 | SRC_URI = "git://github.com/opencontainers/umoci.git;branch=master;name=umoci;destsuffix=github.com/opencontainers/umoci \ | 10 | SRC_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 | ||
48 | INSANE_SKIP_${PN} += "ldflags already-stripped" | 48 | INSANE_SKIP_${PN} += "ldflags already-stripped" |
49 | |||
50 | BBCLASSEXTEND = "native" | ||