From 4acfcfb234d3307ce5c72fb6a9358b5f918db5af Mon Sep 17 00:00:00 2001 From: Jose Quaresma Date: Thu, 9 May 2024 10:31:24 +0100 Subject: [PATCH] composefs: refactor - add recipe DESCRIPTION - remove the PV as it can be taken from the recipe name - specify some EXTRA_OECONF configuration to avoid host contamination Signed-off-by: Jose Quaresma Signed-off-by: Khem Raj --- .../recipes-support/composefs/composefs_1.0.3.bb | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/meta-oe/recipes-support/composefs/composefs_1.0.3.bb b/meta-oe/recipes-support/composefs/composefs_1.0.3.bb index 98eb3e1b34..76c85ce93f 100644 --- a/meta-oe/recipes-support/composefs/composefs_1.0.3.bb +++ b/meta-oe/recipes-support/composefs/composefs_1.0.3.bb @@ -1,4 +1,7 @@ SUMMARY = "Tools to handle creating and mounting composefs images" +DESCRIPTION = "The composefs project combines several underlying Linux \ +features to provide a very flexible mechanism to support read-only mountable \ +filesystem trees, stacking on top of an underlying "lower" Linux filesystem." HOMEPAGE = "https://github.com/containers/composefs" LICENSE = "GPL-3.0-or-later & LGPL-2.0-or-later & Apache-2.0" LIC_FILES_CHKSUM = "\ @@ -9,10 +12,8 @@ LIC_FILES_CHKSUM = "\ file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504 \ file://LICENSE.Apache-2.0;md5=3b83ef96387f14655fc854ddc3c6bd57 \ " -DEPENDS = "openssl" -SRCREV = "2d5cdcb9176cfe4ccf1761ef6d78e1c48de35649" -PV = "1.0.3" +SRCREV = "2d5cdcb9176cfe4ccf1761ef6d78e1c48de35649" SRC_URI = "\ git://github.com/containers/composefs.git;protocol=https;branch=main \ file://0001-musl-basename-use-portable-implementation-for-basena.patch \ @@ -21,3 +22,10 @@ SRC_URI = "\ S = "${WORKDIR}/git" inherit autotools pkgconfig + +DEPENDS = "openssl" + +EXTRA_OECONF += " \ + --disable-man \ + --without-fuse \ +"