summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2025-01-22 00:28:44 -0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2025-01-30 18:54:28 +0000
commit80dc21e4c1ccda7ae277b2e4c3a06c325a6a0095 (patch)
tree82561c4906737bd5cd15ce0eadf11336aad16f14
parentf9171b61cadfe4dfe0c3e658df2b0c570e6e2235 (diff)
downloadmeta-virtualization-80dc21e4c1ccda7ae277b2e4c3a06c325a6a0095.tar.gz
buildah: add seccomp and ipv6 to REQUIRED_DISTRO_FEATURES
* because it rdepends on podman with the same restriction * BTW: .gitignore has: build*/ which gets triggered for buildah as well: meta-virtualization $ git add ./recipes-containers/buildah/buildah_git.bb The following paths are ignored by one of your .gitignore files: recipes-containers/buildah I've adjusted it to /build*/ only. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--.gitignore2
-rw-r--r--recipes-containers/buildah/buildah_git.bb4
2 files changed, 5 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index a61332ef..daeb43d5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
1build*/ 1/build*/
2pyshtables.py 2pyshtables.py
3*.swp 3*.swp
4*.orig 4*.orig
diff --git a/recipes-containers/buildah/buildah_git.bb b/recipes-containers/buildah/buildah_git.bb
index 9e074415..1c33291a 100644
--- a/recipes-containers/buildah/buildah_git.bb
+++ b/recipes-containers/buildah/buildah_git.bb
@@ -16,6 +16,10 @@ inherit go
16inherit goarch 16inherit goarch
17inherit pkgconfig 17inherit pkgconfig
18 18
19# Rdepends on podman which needs seccomp and ipv6
20inherit features_check
21REQUIRED_DISTRO_FEATURES = "seccomp ipv6"
22
19GO_IMPORT = "github.com/containers/buildah" 23GO_IMPORT = "github.com/containers/buildah"
20GO_INSTALL = "${GO_IMPORT}" 24GO_INSTALL = "${GO_IMPORT}"
21GO_WORKDIR = "${GO_INSTALL}" 25GO_WORKDIR = "${GO_INSTALL}"