summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libssh/libssh_0.10.6.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-01-02 15:02:33 +0800
committerArmin Kuster <akuster808@gmail.com>2024-01-16 19:29:51 -0500
commitda9063bdfbe130f424ba487f167da68e0ce90e7d (patch)
treeaaafd6f0631407a8d5f27fe3ea427c3f274a478a /meta-oe/recipes-support/libssh/libssh_0.10.6.bb
parenta1b8c2ac48a5c9d267b11536673076778967ced9 (diff)
downloadmeta-openembedded-nanbield.tar.gz
libssh: upgrade 0.10.5 -> 0.10.6nanbield
0001-libgcrypt.c-Fix-prototype-of-des3_encrypt-des3_decry.patch 0001-tests-CMakeLists.txt-do-not-search-ssh-sshd-commands.patch refreshed for 0.10.6 Changelog: ========== * Fix CVE-2023-6004: Command injection using proxycommand * Fix CVE-2023-48795: Potential downgrade attack using strict kex * Fix CVE-2023-6918: Missing checks for return values of MD functions * Fix ssh_send_issue_banner() for CMD(PowerShell) * Avoid passing other events to callbacks when poll is called recursively (#202) * Allow @ in usernames when parsing from URI composes Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 1bea2e8c3053e7ecffb04adaaded54555f2afa0b) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libssh/libssh_0.10.6.bb')
-rw-r--r--meta-oe/recipes-support/libssh/libssh_0.10.6.bb48
1 files changed, 48 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libssh/libssh_0.10.6.bb b/meta-oe/recipes-support/libssh/libssh_0.10.6.bb
new file mode 100644
index 0000000000..31f29c1b7d
--- /dev/null
+++ b/meta-oe/recipes-support/libssh/libssh_0.10.6.bb
@@ -0,0 +1,48 @@
1SUMMARY = "Multiplatform C library implementing the SSHv2 and SSHv1 protocol"
2HOMEPAGE = "http://www.libssh.org"
3SECTION = "libs"
4LICENSE = "LGPL-2.1-only"
5LIC_FILES_CHKSUM = "file://COPYING;md5=dabb4958b830e5df11d2b0ed8ea255a0"
6
7DEPENDS = "zlib openssl"
8
9SRC_URI = "git://git.libssh.org/projects/libssh.git;protocol=https;branch=stable-0.10 \
10 file://0001-tests-CMakeLists.txt-do-not-search-ssh-sshd-commands.patch \
11 file://0001-libgcrypt.c-Fix-prototype-of-des3_encrypt-des3_decry.patch \
12 file://run-ptest \
13 "
14SRCREV = "10e09e273f69e149389b3e0e5d44b8c221c2e7f6"
15
16S = "${WORKDIR}/git"
17
18inherit cmake ptest
19
20PACKAGECONFIG ??= "gcrypt ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
21PACKAGECONFIG[gssapi] = "-DWITH_GSSAPI=1, -DWITH_GSSAPI=0, krb5, "
22PACKAGECONFIG[gcrypt] = "-DWITH_GCRYPT=1, -DWITH_GCRYPT=0, libgcrypt, "
23PACKAGECONFIG[tests] = "-DUNIT_TESTING=1, -DUNIT_TESTING=0, cmocka"
24
25ARM_INSTRUCTION_SET:armv5 = "arm"
26
27EXTRA_OECMAKE = " \
28 -DWITH_PCAP=1 \
29 -DWITH_SFTP=1 \
30 -DWITH_ZLIB=1 \
31 -DWITH_EXAMPLES=0 \
32 "
33
34do_compile:prepend () {
35 if [ ${PTEST_ENABLED} = "1" ]; then
36 sed -i -e 's|${B}|${PTEST_PATH}|g' ${B}/config.h
37 sed -i -e 's|${S}|${PTEST_PATH}|g' ${B}/config.h
38 fi
39}
40
41do_install_ptest () {
42 install -d ${D}${PTEST_PATH}/tests
43 cp -f ${B}/tests/unittests/torture_* ${D}${PTEST_PATH}/tests/
44 install -d ${D}${PTEST_PATH}/tests/unittests
45 cp -f ${S}/tests/unittests/hello*.sh ${D}${PTEST_PATH}/tests/unittests/
46}
47
48BBCLASSEXTEND = "native nativesdk"