* [PATCH 1/2] gstreamer1.0-omx: allow to more easily select different libomxil provider @ 2020-01-20 22:01 Martin Jansa 2020-01-20 22:02 ` [PATCH 2/2] gstreamer1.0-plugins-base: add PACKAGECONFIG for dispmanx and set OPENGL_WINSYS based on enabled PACKAGECONFIGs Martin Jansa 2020-01-20 22:32 ` ✗ patchtest: failure for "gstreamer1.0-omx: allow to mor..." and 1 more Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Martin Jansa @ 2020-01-20 22:01 UTC (permalink / raw) To: openembedded-core * for rpi it's provided by userland recipe and this will make the bbappend in meta-raspberrypi a bit smaller Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> --- meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.1.bb | 5 +++-- meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.1.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.1.bb index 89e13937ea..dfe4b691d1 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.1.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.1.bb @@ -14,7 +14,7 @@ SRC_URI[sha256sum] = "cbf54121a2cba575d460833e8132265781252ce32cf5b8f9fa8753e42a S = "${WORKDIR}/gst-omx-${PV}" -DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad" +DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad virtual/libomxil" inherit meson pkgconfig upstream-version-is-even @@ -43,4 +43,5 @@ do_install[postfuncs] += " set_omx_core_name " FILES_${PN} += "${libdir}/gstreamer-1.0/*.so" FILES_${PN}-staticdev += "${libdir}/gstreamer-1.0/*.a" -RDEPENDS_${PN} = "libomxil" +VIRTUAL-RUNTIME_libomxil ?= "libomxil" +RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_libomxil}" diff --git a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb index d83eb45701..271c2a30a3 100644 --- a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb +++ b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb @@ -24,6 +24,8 @@ inherit autotools EXTRA_OECONF += "--disable-doc --disable-Werror" +PROVIDES += "virtual/libomxil" + # # The .so files under ${libdir}/bellagio are not intended to be versioned and symlinked. # Make sure they get packaged in the main package. -- 2.20.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] gstreamer1.0-plugins-base: add PACKAGECONFIG for dispmanx and set OPENGL_WINSYS based on enabled PACKAGECONFIGs 2020-01-20 22:01 [PATCH 1/2] gstreamer1.0-omx: allow to more easily select different libomxil provider Martin Jansa @ 2020-01-20 22:02 ` Martin Jansa 2020-01-20 22:32 ` ✗ patchtest: failure for "gstreamer1.0-omx: allow to mor..." and 1 more Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Martin Jansa @ 2020-01-20 22:02 UTC (permalink / raw) To: openembedded-core Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> --- .../gstreamer/gstreamer1.0-plugins-base_1.16.1.bb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.1.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.1.bb index 7ce9238c4a..cf12ceba61 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.1.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.1.bb @@ -38,7 +38,6 @@ PACKAGECONFIG ??= " \ OPENGL_APIS = 'opengl gles2' OPENGL_PLATFORMS = 'egl' -OPENGL_WINSYS = 'x11 wayland gbm' X11DEPENDS = "virtual/libx11 libsm libxrender libxv" X11ENABLEOPTS = "-Dx11=enabled -Dxvideo=enabled -Dxshm=enabled" @@ -67,6 +66,12 @@ PACKAGECONFIG[egl] = ",,virtual/egl" # OpenGL window systems (except for X11) PACKAGECONFIG[gbm] = ",,virtual/libgbm libgudev libdrm" PACKAGECONFIG[wayland] = ",,wayland-native wayland wayland-protocols libdrm" +PACKAGECONFIG[dispmanx] = ",,virtual/libomxil" + +OPENGL_WINSYS_append = "${@bb.utils.contains('PACKAGECONFIG', 'x11', ' x11', '', d)}" +OPENGL_WINSYS_append = "${@bb.utils.contains('PACKAGECONFIG', 'gbm', ' gbm', '', d)}" +OPENGL_WINSYS_append = "${@bb.utils.contains('PACKAGECONFIG', 'wayland', ' wayland', '', d)}" +OPENGL_WINSYS_append = "${@bb.utils.contains('PACKAGECONFIG', 'dispmanx', ' dispmanx', '', d)}" EXTRA_OEMESON += " \ -Dgl-graphene=disabled \ -- 2.20.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* ✗ patchtest: failure for "gstreamer1.0-omx: allow to mor..." and 1 more 2020-01-20 22:01 [PATCH 1/2] gstreamer1.0-omx: allow to more easily select different libomxil provider Martin Jansa 2020-01-20 22:02 ` [PATCH 2/2] gstreamer1.0-plugins-base: add PACKAGECONFIG for dispmanx and set OPENGL_WINSYS based on enabled PACKAGECONFIGs Martin Jansa @ 2020-01-20 22:32 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2020-01-20 22:32 UTC (permalink / raw) To: Martin Jansa; +Cc: openembedded-core == Series Details == Series: "gstreamer1.0-omx: allow to mor..." and 1 more Revision: 1 URL : https://patchwork.openembedded.org/series/22173/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the proposed series by patchtest resulting in the following failures: * Patch [2/2] gstreamer1.0-plugins-base: add PACKAGECONFIG for dispmanx and set OPENGL_WINSYS based on enabled PACKAGECONFIGs Issue Commit shortlog is too long [test_shortlog_length] Suggested fix Edit shortlog so that it is 90 characters or less (currently 111 characters) If you believe any of these test results are incorrect, please reply to the mailing list (openembedded-core@lists.openembedded.org) raising your concerns. Otherwise we would appreciate you correcting the issues and submitting a new version of the patchset if applicable. Please ensure you add/increment the version number when sending the new version (i.e. [PATCH] -> [PATCH v2] -> [PATCH v3] -> ...). --- Guidelines: https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-01-20 22:32 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-01-20 22:01 [PATCH 1/2] gstreamer1.0-omx: allow to more easily select different libomxil provider Martin Jansa 2020-01-20 22:02 ` [PATCH 2/2] gstreamer1.0-plugins-base: add PACKAGECONFIG for dispmanx and set OPENGL_WINSYS based on enabled PACKAGECONFIGs Martin Jansa 2020-01-20 22:32 ` ✗ patchtest: failure for "gstreamer1.0-omx: allow to mor..." and 1 more Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.