diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-06-25 22:50:03 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-06-25 22:50:03 -0400 |
commit | 74d89ba0fc1186d03d87b8ca7f5470c5a7854d91 (patch) | |
tree | 893d5910ba35184baa5939e31919e682c23e683a | |
parent | 7a2ad2585b0a3e80b5e943c771db7310de761d5b (diff) | |
download | meta-virtualization-74d89ba0fc1186d03d87b8ca7f5470c5a7854d91.tar.gz |
upx: adjust to UNPACKDIR and bump version
We fix upx to work with the oe-core changes, and bump the
version to fix compatibility issues with other updates in
oe-core master.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-extended/upx/upx_git.bb | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/recipes-extended/upx/upx_git.bb b/recipes-extended/upx/upx_git.bb index dde1bf9f..79cf17a9 100644 --- a/recipes-extended/upx/upx_git.bb +++ b/recipes-extended/upx/upx_git.bb | |||
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=353753597aa110e0ded3508408c6374a" | |||
6 | # Note: DO NOT use released tarball in favor of the git repository with submodules. | 6 | # Note: DO NOT use released tarball in favor of the git repository with submodules. |
7 | # it makes maintenance easier for CVEs or other issues. | 7 | # it makes maintenance easier for CVEs or other issues. |
8 | 8 | ||
9 | SRCREV_upx = "44e4bd0b5454ff8aee1ff3376974dfe6014300d9" | 9 | SRCREV_upx = "ca97430db28bf264f4007118555c10f63be2a9c8" |
10 | PV = "4.2.4+git${SRCPV}" | 10 | PV = "5.0.1+git${SRCPV}" |
11 | 11 | ||
12 | # SRCREVs are from: | 12 | # SRCREVs are from: |
13 | # git submodule status | awk '{ commit_hash = $1; sub(/vendor\//, "", $2); gsub("-", "_", $2); printf "SRCREV_vendor_%s = \"%s\"\n", $2, commit_hash }' | 13 | # git submodule status | awk '{ commit_hash = $1; sub(/vendor\//, "", $2); gsub("-", "_", $2); printf "SRCREV_vendor_%s = \"%s\"\n", $2, commit_hash }' |
@@ -26,15 +26,13 @@ SRCREV_vendor_zlib = "0a41a7d0a974d0b43afe4afe4b8025c8f144474e" | |||
26 | # SRC_URI = "gitsm://github.com/upx/upx;protocol=https;;name=upx;branch=devel" | 26 | # SRC_URI = "gitsm://github.com/upx/upx;protocol=https;;name=upx;branch=devel" |
27 | SRCREV_FORMAT = "upx" | 27 | SRCREV_FORMAT = "upx" |
28 | SRC_URI = "git://github.com/upx/upx;name=upx;branch=devel;protocol=https \ | 28 | SRC_URI = "git://github.com/upx/upx;name=upx;branch=devel;protocol=https \ |
29 | git://github.com/upx/upx-vendor-doctest;name=vendor_doctest;subdir=git/vendor/doctest;branch=upx-vendor;protocol=https \ | 29 | git://github.com/upx/upx-vendor-doctest;name=vendor_doctest;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/vendor/doctest;branch=upx-vendor;protocol=https \ |
30 | git://github.com/upx/upx-vendor-lzma-sdk;name=vendor_lzma_sdk;subdir=git/vendor/lzma-sdk;branch=upx-vendor;protocol=https \ | 30 | git://github.com/upx/upx-vendor-lzma-sdk;name=vendor_lzma_sdk;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/vendor/lzma-sdk;branch=upx-vendor;protocol=https \ |
31 | git://github.com/upx/upx-vendor-ucl;name=vendor_ucl;subdir=git/vendor/ucl;branch=upx-vendor;protocol=https \ | 31 | git://github.com/upx/upx-vendor-ucl;name=vendor_ucl;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/vendor/ucl;branch=upx-vendor;protocol=https \ |
32 | git://github.com/upx/upx-vendor-zlib;name=vendor_zlib;subdir=git/vendor/zlib;branch=upx-vendor;protocol=https \ | 32 | git://github.com/upx/upx-vendor-zlib;name=vendor_zlib;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/vendor/zlib;branch=upx-vendor;protocol=https \ |
33 | git://github.com/upx/upx-vendor-valgrind;name=vendor_valgrind;subdir=git/vendor/valgrind;branch=upx-vendor;protocol=https \ | 33 | git://github.com/upx/upx-vendor-valgrind;name=vendor_valgrind;subdir=${BB_GIT_DEFAULT_DESTSUFFIX}/vendor/valgrind;branch=upx-vendor;protocol=https \ |
34 | " | 34 | " |
35 | 35 | ||
36 | S = "${WORKDIR}/git" | ||
37 | |||
38 | inherit pkgconfig cmake | 36 | inherit pkgconfig cmake |
39 | 37 | ||
40 | BBCLASSEXTEND = "native" | 38 | BBCLASSEXTEND = "native" |