diff options
author | Armin Kuster <akuster808@gmail.com> | 2023-04-09 11:26:29 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-04-12 07:45:25 -0400 |
commit | 3d6ff465cec9111c39b9c4252614f5a65863ce46 (patch) | |
tree | b66a79ef70d15f6e05aef659b5e39169b2a6c852 | |
parent | f0d1f808b7ef067f9537c4233a7e5a08b88c46ac (diff) | |
download | meta-security-3d6ff465cec9111c39b9c4252614f5a65863ce46.tar.gz |
parsec-tool: update SRC_URI hash
FIxes:
ERROR: Missing SRC_URI checksum, please add those to the recipe:
SRC_URI[parsec-tool-0.6.0.sha256sum] = "f51d5d7f0caca1c335324b52482fa5edbf6c9cfd2e6865e5cb22716d52dcb367"
Needed to have the package version included in the name.
Fixes:
ERROR: parsec-tool-0.6.0-r0 do_populate_lic: QA Issue: parsec-tool: LIC_FILES_CHKSUM points to an invalid file:
and
error: manifest path `/home/akuster/oss/clean/poky/build/tmp/work/cortexa53-poky-linux/parsec-tool/0.6.0-r0/parsec-tool-0.6.0//Cargo.toml` does not exist
Set S to CARGO_VENDORING_DIRECTORY/BP to fix the LIC_FILES_CHKSUM and compile errors.
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.6.0.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.6.0.bb b/meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.6.0.bb index c729406..6095ae1 100644 --- a/meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.6.0.bb +++ b/meta-parsec/recipes-parsec/parsec-tool/parsec-tool_0.6.0.bb | |||
@@ -7,9 +7,9 @@ inherit cargo cargo-update-recipe-crates | |||
7 | 7 | ||
8 | SRC_URI += "crate://crates.io/parsec-tool/${PV} \ | 8 | SRC_URI += "crate://crates.io/parsec-tool/${PV} \ |
9 | " | 9 | " |
10 | SRC_URI[parsec-tool.sha256sum] = "f51d5d7f0caca1c335324b52482fa5edbf6c9cfd2e6865e5cb22716d52dcb367" | 10 | SRC_URI[parsec-tool-0.6.0.sha256sum] = "f51d5d7f0caca1c335324b52482fa5edbf6c9cfd2e6865e5cb22716d52dcb367" |
11 | 11 | ||
12 | RDEPENDS:${PN} = "openssl-bin" | 12 | S = "${CARGO_VENDORING_DIRECTORY}/${BP}" |
13 | 13 | ||
14 | do_install() { | 14 | do_install() { |
15 | install -d ${D}/${bindir} | 15 | install -d ${D}/${bindir} |
@@ -19,6 +19,8 @@ do_install() { | |||
19 | 19 | ||
20 | require parsec-tool-crates.inc | 20 | require parsec-tool-crates.inc |
21 | 21 | ||
22 | RDEPENDS:${PN} = "openssl-bin" | ||
23 | |||
22 | # The QA check has been temporarily disabled. An issue has been created | 24 | # The QA check has been temporarily disabled. An issue has been created |
23 | # upstream to fix this. | 25 | # upstream to fix this. |
24 | # https://github.com/parallaxsecond/parsec-tool/issues/94 | 26 | # https://github.com/parallaxsecond/parsec-tool/issues/94 |