diff options
| author | Gijs Peskens <gijs.peskens@munisense.com> | 2026-03-11 10:10:51 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-03-17 13:25:23 -0700 |
| commit | 99e9d4aba13ae466a6e6fe5c56276917d295cf0b (patch) | |
| tree | f02e8d4036ceb66942fe381dd4c278255e8f4f17 /meta-oe/recipes-support/libssh/libssh_0.11.4.bb | |
| parent | 70e27af4fcb479f264a93c699051d77c519ee546 (diff) | |
| download | meta-openembedded-99e9d4aba13ae466a6e6fe5c56276917d295cf0b.tar.gz | |
libssh: upgrade 0.11.3 -> 0.11.4
Signed-off-by: Gijs Peskens <gijs.peskens@munisense.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libssh/libssh_0.11.4.bb')
| -rw-r--r-- | meta-oe/recipes-support/libssh/libssh_0.11.4.bb | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libssh/libssh_0.11.4.bb b/meta-oe/recipes-support/libssh/libssh_0.11.4.bb new file mode 100644 index 0000000000..fb131c3490 --- /dev/null +++ b/meta-oe/recipes-support/libssh/libssh_0.11.4.bb | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | SUMMARY = "Multiplatform C library implementing the SSHv2 and SSHv1 protocol" | ||
| 2 | HOMEPAGE = "http://www.libssh.org" | ||
| 3 | SECTION = "libs" | ||
| 4 | LICENSE = "LGPL-2.1-only" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=dabb4958b830e5df11d2b0ed8ea255a0" | ||
| 6 | |||
| 7 | DEPENDS = "zlib openssl" | ||
| 8 | |||
| 9 | SRC_URI = "git://git.libssh.org/projects/libssh.git;protocol=https;branch=stable-0.11;tag=${BPN}-${PV} \ | ||
| 10 | file://0001-tests-CMakeLists.txt-do-not-search-ssh-sshd-commands.patch \ | ||
| 11 | file://run-ptest \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI:append:toolchain-clang = " file://0001-CompilerChecks.cmake-drop-Wunused-variable-flag.patch" | ||
| 15 | |||
| 16 | SRCREV = "ca9c055d7c78ce357346ac7c2b14047568d47aa1" | ||
| 17 | |||
| 18 | |||
| 19 | inherit cmake ptest | ||
| 20 | |||
| 21 | PACKAGECONFIG ??= "gcrypt ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}" | ||
| 22 | PACKAGECONFIG[gssapi] = "-DWITH_GSSAPI=1, -DWITH_GSSAPI=0, krb5, " | ||
| 23 | PACKAGECONFIG[gcrypt] = "-DWITH_GCRYPT=1, -DWITH_GCRYPT=0, libgcrypt, " | ||
| 24 | PACKAGECONFIG[tests] = "-DUNIT_TESTING=1, -DUNIT_TESTING=0, cmocka" | ||
| 25 | |||
| 26 | ARM_INSTRUCTION_SET:armv5 = "arm" | ||
| 27 | |||
| 28 | EXTRA_OECMAKE = " \ | ||
| 29 | -DWITH_PCAP=1 \ | ||
| 30 | -DWITH_SFTP=1 \ | ||
| 31 | -DWITH_ZLIB=1 \ | ||
| 32 | -DWITH_EXAMPLES=0 \ | ||
| 33 | " | ||
| 34 | |||
| 35 | do_compile:prepend () { | ||
| 36 | if [ ${PTEST_ENABLED} = "1" ]; then | ||
| 37 | sed -i -e 's|${B}|${PTEST_PATH}|g' ${B}/config.h | ||
| 38 | sed -i -e 's|${S}|${PTEST_PATH}|g' ${B}/config.h | ||
| 39 | fi | ||
| 40 | } | ||
| 41 | |||
| 42 | do_install_ptest () { | ||
| 43 | install -d ${D}${PTEST_PATH}/tests | ||
| 44 | cp -f ${B}/tests/unittests/torture_* ${D}${PTEST_PATH}/tests/ | ||
| 45 | install -d ${D}${PTEST_PATH}/tests/unittests | ||
| 46 | cp -f ${S}/tests/unittests/hello*.sh ${D}${PTEST_PATH}/tests/unittests/ | ||
| 47 | } | ||
| 48 | |||
| 49 | BBCLASSEXTEND = "native nativesdk" | ||
| 50 | |||
| 51 | CVE_STATUS[CVE-2025-5987] = "fixed-version: The vulnerability was fixed in 0.11.2" | ||
| 52 | CVE_STATUS[CVE-2025-5318] = "fixed-version: The vulnerability was fixed in 0.11.2" | ||
