meta-virtualization.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [meta-virtualization][kirkstone][master][PATCH 1/4] nerdctl: install the binaries in OE standard places
@ 2022-08-09 12:16 Jose Quaresma
  2022-08-09 12:16 ` [meta-virtualization][kirkstone][master][PATCH 2/4] kubernetes: " Jose Quaresma
                   ` (3 more replies)
  0 siblings, 4 replies; 15+ messages in thread
From: Jose Quaresma @ 2022-08-09 12:16 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Jose Quaresma

- The env BIN_PREFIX is there from the beginning but there are no references to it,
also fix a fatal QA errors installed-vs-shipped:

ERROR: nerdctl-v0.18.0-r0 do_package: QA Issue: nerdctl: Files/directories were installed but not shipped in any package:
  /bin
  /bin/nerdctl
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
nerdctl: 2 installed and not shipped files. [installed-vs-shipped]
ERROR: nerdctl-v0.18.0-r0 do_package: Fatal QA errors were found, failing task.

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
---
 recipes-containers/nerdctl/nerdctl_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-containers/nerdctl/nerdctl_git.bb b/recipes-containers/nerdctl/nerdctl_git.bb
index 5d4d827..ad18f67 100644
--- a/recipes-containers/nerdctl/nerdctl_git.bb
+++ b/recipes-containers/nerdctl/nerdctl_git.bb
@@ -239,8 +239,8 @@ do_compile() {
 }
 
 do_install() {
-        install -d "${D}${BIN_PREFIX}/bin"
-        install -m 755 "${S}/src/import/_output/nerdctl" "${D}${BIN_PREFIX}/bin"
+        install -d ${D}${bindir}
+        install -m 755 ${S}/src/import/_output/nerdctl ${D}${bindir}
 }
 
 INHIBIT_PACKAGE_STRIP = "1"
-- 
2.37.1



^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2022-08-09 18:15 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-09 12:16 [meta-virtualization][kirkstone][master][PATCH 1/4] nerdctl: install the binaries in OE standard places Jose Quaresma
2022-08-09 12:16 ` [meta-virtualization][kirkstone][master][PATCH 2/4] kubernetes: " Jose Quaresma
2022-08-09 13:19   ` Bruce Ashfield
2022-08-09 13:33     ` Jose Quaresma
2022-08-09 13:43       ` Bruce Ashfield
2022-08-09 14:02         ` Jose Quaresma
2022-08-09 14:21           ` Bruce Ashfield
     [not found]           ` <1709B323FD9DD073.19746@lists.yoctoproject.org>
2022-08-09 15:05             ` Bruce Ashfield
2022-08-09 16:35               ` Jose Quaresma
2022-08-09 17:06                 ` Bruce Ashfield
2022-08-09 17:36                   ` Jose Quaresma
2022-08-09 18:15                     ` Bruce Ashfield
2022-08-09 12:16 ` [meta-virtualization][kirkstone][master][PATCH 3/4] kubernetes: replace tabs with spaces for identation Jose Quaresma
2022-08-09 12:16 ` [meta-virtualization][kirkstone][master][PATCH 4/4] k3s: install the binaries in OE standard places Jose Quaresma
2022-08-09 13:18 ` [meta-virtualization][kirkstone][master][PATCH 1/4] nerdctl: " Bruce Ashfield

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).