mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-13 17:39:57 +00:00
015b974b6b
Backport patches [1] and [2] as mentioned in [3] [1] https://git.libssh.org/projects/libssh.git/commit/?id=796d85f786dff62bd4bcc4408d9b7bbc855841e9 [2] https://git.libssh.org/projects/libssh.git/commit/?id=212121971fb26e1e00b72bd5402c0454a4d84c03 [3] https://security-tracker.debian.org/tracker/CVE-2026-0968 Certain functions from sftp.c were moved to a new file sftp_common.c in version 0.11.0 by following commit: https://git.libssh.org/projects/libssh.git/commit/src/sftp_common.c?id=c3e03ab4651e4f3382e3a51c0273ade894f0c48a This is the backport of the changes using the original file sftp.c Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
69 lines
2.3 KiB
BlitzBasic
69 lines
2.3 KiB
BlitzBasic
SUMMARY = "Multiplatform C library implementing the SSHv2 and SSHv1 protocol"
|
|
HOMEPAGE = "http://www.libssh.org"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=dabb4958b830e5df11d2b0ed8ea255a0"
|
|
|
|
DEPENDS = "zlib openssl"
|
|
|
|
SRC_URI = "git://git.libssh.org/projects/libssh.git;protocol=https;branch=stable-0.10 \
|
|
file://0001-tests-CMakeLists.txt-do-not-search-ssh-sshd-commands.patch \
|
|
file://0001-libgcrypt.c-Fix-prototype-of-des3_encrypt-des3_decry.patch \
|
|
file://run-ptest \
|
|
file://CVE-2025-5318.patch \
|
|
file://CVE-2025-5351.patch \
|
|
file://CVE-2025-5372.patch \
|
|
file://CVE-2025-4877.patch \
|
|
file://CVE-2025-4878-0001.patch \
|
|
file://CVE-2025-4878-0002.patch \
|
|
file://CVE-2025-5987.patch \
|
|
file://CVE-2025-8114.patch \
|
|
file://CVE-2025-8277-1.patch \
|
|
file://CVE-2025-8277-2.patch \
|
|
file://CVE-2025-8277-3.patch \
|
|
file://CVE-2025-8277-4.patch \
|
|
file://CVE-2026-3731-1.patch \
|
|
file://CVE-2026-3731-2.patch \
|
|
file://CVE-2026-0964.patch \
|
|
file://CVE-2026-0966-1.patch \
|
|
file://CVE-2026-0966-2.patch \
|
|
file://CVE-2026-0966-3.patch \
|
|
file://CVE-2026-0968-1.patch \
|
|
file://CVE-2026-0968-2.patch \
|
|
"
|
|
SRCREV = "10e09e273f69e149389b3e0e5d44b8c221c2e7f6"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake ptest
|
|
|
|
PACKAGECONFIG ??= "gcrypt ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
|
|
PACKAGECONFIG[gssapi] = "-DWITH_GSSAPI=1, -DWITH_GSSAPI=0, krb5, "
|
|
PACKAGECONFIG[gcrypt] = "-DWITH_GCRYPT=1, -DWITH_GCRYPT=0, libgcrypt, "
|
|
PACKAGECONFIG[tests] = "-DUNIT_TESTING=1, -DUNIT_TESTING=0, cmocka"
|
|
|
|
ARM_INSTRUCTION_SET:armv5 = "arm"
|
|
|
|
EXTRA_OECMAKE = " \
|
|
-DWITH_PCAP=1 \
|
|
-DWITH_SFTP=1 \
|
|
-DWITH_ZLIB=1 \
|
|
-DWITH_EXAMPLES=0 \
|
|
"
|
|
|
|
do_compile:prepend () {
|
|
if [ ${PTEST_ENABLED} = "1" ]; then
|
|
sed -i -e 's|${B}|${PTEST_PATH}|g' ${B}/config.h
|
|
sed -i -e 's|${S}|${PTEST_PATH}|g' ${B}/config.h
|
|
fi
|
|
}
|
|
|
|
do_install_ptest () {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -f ${B}/tests/unittests/torture_* ${D}${PTEST_PATH}/tests/
|
|
install -d ${D}${PTEST_PATH}/tests/unittests
|
|
cp -f ${S}/tests/unittests/hello*.sh ${D}${PTEST_PATH}/tests/unittests/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|