mirror of
https://git.yoctoproject.org/poky
synced 2026-03-08 08:19:40 +01:00
This release only contains bugfixes. Highlighted bugfixes in 1.20.7: Security fixes for flacparse, dvdspu, and subparse, and the RealMedia demuxer h265parse: Fix framerate handling filesink: Fix buffered mode writing of buffer lists and buffers with multiple memories asfmux, rtpbin_buffer_list test: fix possible unaligned write/read on 32-bit ARM ptp clock: Work around bug in ptpd in default configuration qtdemux: fix reverse playback regression with edit lists rtspsrc: various control path handling server compatibility improvements avviddec: fix potential deadlock on seeking with FFmpeg 6.x cerbero: Fix pango crash on 32bit Windows; move libass into non-GPL codecs Miscellaneous bug fixes, memory leak fixes, and other stability and reliability improvements https://nvd.nist.gov/vuln/detail/CVE-2023-37327 https://nvd.nist.gov/vuln/detail/CVE-2023-37328 https://nvd.nist.gov/vuln/detail/CVE-2023-37329 https://gstreamer.freedesktop.org/releases/1.20/#1.20.7 (From OE-Core rev: c6b7492406540aca60dfd8c9913c7ac14fcc750f) Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
31 lines
1.0 KiB
BlitzBasic
31 lines
1.0 KiB
BlitzBasic
SUMMARY = "Python bindings for GStreamer 1.0"
|
|
DESCRIPTION = "GStreamer Python binding overrides (complementing the bindings \
|
|
provided by python-gi) "
|
|
HOMEPAGE = "http://cgit.freedesktop.org/gstreamer/gst-python/"
|
|
SECTION = "multimedia"
|
|
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
|
|
|
|
SRC_URI = "https://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
|
|
SRC_URI[sha256sum] = "a63db0cb502308446db3d3b0a23772f1966f9f2b98fddc22fca49560a0575adc"
|
|
|
|
DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base python3-pygobject"
|
|
RDEPENDS:${PN} += "gstreamer1.0 gstreamer1.0-plugins-base python3-pygobject"
|
|
|
|
PNREAL = "gst-python"
|
|
|
|
S = "${WORKDIR}/${PNREAL}-${PV}"
|
|
|
|
EXTRA_OEMESON += "\
|
|
-Dtests=disabled \
|
|
-Dplugin=enabled \
|
|
-Dlibpython-dir=${libdir} \
|
|
"
|
|
|
|
# gobject-introspection is mandatory and cannot be configured
|
|
REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
|
|
GIR_MESON_OPTION = ""
|
|
|
|
inherit meson pkgconfig setuptools3-base upstream-version-is-even gobject-introspection features_check
|