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>
This commit is contained in:
Martin Jansa 2023-04-01 14:15:13 +02:00 committed by Bruce Ashfield
parent eacc1c3128
commit f964138a21
2 changed files with 5 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
build*/
/build*/
pyshtables.py
*.swp
*.orig

View File

@ -16,6 +16,10 @@ inherit go
inherit goarch
inherit pkgconfig
# Rdepends on podman which needs seccomp and ipv6
inherit features_check
REQUIRED_DISTRO_FEATURES = "seccomp ipv6"
GO_IMPORT = "github.com/containers/buildah"
GO_INSTALL = "${GO_IMPORT}"
GO_WORKDIR = "${GO_INSTALL}"