mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
Added missing commits for complete CVE fix Ref: https://github.com/libsndfile/libsndfile/issues/833 https://ubuntu.com/security/CVE-2022-33065 (From OE-Core rev: fc34dde58e8be19d703479c8e025e27294cdb579) Signed-off-by: Vijay Anusuri <vanusuri@mvista.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
49 lines
1.8 KiB
BlitzBasic
49 lines
1.8 KiB
BlitzBasic
SUMMARY = "Audio format Conversion library"
|
|
DESCRIPTION = "Library for reading and writing files containing sampled \
|
|
sound (such as MS Windows WAV and the Apple/SGI AIFF format) through \
|
|
one standard library interface."
|
|
HOMEPAGE = "https://libsndfile.github.io/libsndfile/"
|
|
AUTHOR = "Erik de Castro Lopo"
|
|
DEPENDS = "flac libogg libvorbis"
|
|
SECTION = "libs/multimedia"
|
|
LICENSE = "LGPL-2.1-only"
|
|
|
|
SRC_URI = "https://github.com/libsndfile/libsndfile/releases/download/${PV}/libsndfile-${PV}.tar.bz2 \
|
|
file://noopus.patch \
|
|
file://0001-flac-Fix-improper-buffer-reusing-732.patch \
|
|
file://CVE-2022-33065-1.patch \
|
|
file://CVE-2022-33065-2.patch \
|
|
file://CVE-2022-33065-3.patch \
|
|
file://CVE-2022-33065-4.patch \
|
|
file://CVE-2022-33065-5.patch \
|
|
file://CVE-2022-33065-6.patch \
|
|
file://CVE-2022-33065-7.patch \
|
|
file://CVE-2022-33065-8.patch \
|
|
file://CVE-2022-33065-9.patch \
|
|
file://CVE-2022-33065-10.patch \
|
|
file://CVE-2022-33065-11.patch \
|
|
file://CVE-2022-33065-12.patch \
|
|
file://CVE-2022-33065-13.patch \
|
|
file://CVE-2024-50612.patch \
|
|
"
|
|
UPSTREAM_CHECK_URI = "https://github.com/libsndfile/libsndfile/releases/"
|
|
|
|
SRC_URI[md5sum] = "3f3b2a86a032f064ef922a2c8c191f7b"
|
|
SRC_URI[sha256sum] = "a8cfb1c09ea6e90eff4ca87322d4168cdbe5035cb48717b40bf77e751cc02163"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=e77fe93202736b47c07035910f47974a"
|
|
|
|
CVE_PRODUCT = "libsndfile"
|
|
|
|
S = "${WORKDIR}/libsndfile-${PV}"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'alsa', d)}"
|
|
PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib"
|
|
PACKAGECONFIG[regtest] = "--enable-sqlite,--disable-sqlite,sqlite3"
|
|
|
|
inherit autotools lib_package pkgconfig multilib_header
|
|
|
|
do_install:append() {
|
|
oe_multilib_header sndfile.h
|
|
}
|