* [thud/master][PATCH] point-cloud-viewer: add RDEPENDS on libxkbcommon
@ 2019-06-12 17:30 Denys Dmytriyenko
2019-06-14 17:58 ` [EXTERNAL] " Jacob Stiffler
0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2019-06-12 17:30 UTC (permalink / raw)
To: meta-arago
Fixes following QA error:
ERROR: point-cloud-viewer-2.1-r1 do_package_qa: QA Issue: /usr/bin/point_cloud_viewer contained in package point-cloud-viewer requires libxkbcommon.so.0, but no providers found in RDEPENDS_point-cloud-viewer? [file-rdeps]
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
.../recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
index 9ee4ff0..067ead9 100644
--- a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
+++ b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
@@ -17,7 +17,7 @@ PV = "2.1"
S = "${WORKDIR}/git"
-RDEPENDS_${PN} = "glfw opencv libstdc++"
+RDEPENDS_${PN} = "glfw opencv libxkbcommon"
do_install() {
install -d ${D}${bindir}
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [EXTERNAL] [thud/master][PATCH] point-cloud-viewer: add RDEPENDS on libxkbcommon
2019-06-12 17:30 [thud/master][PATCH] point-cloud-viewer: add RDEPENDS on libxkbcommon Denys Dmytriyenko
@ 2019-06-14 17:58 ` Jacob Stiffler
2019-06-14 18:17 ` Denys Dmytriyenko
0 siblings, 1 reply; 4+ messages in thread
From: Jacob Stiffler @ 2019-06-14 17:58 UTC (permalink / raw)
To: Denys Dmytriyenko, meta-arago
Denys,
Can you backport this to ti2019.01?
Thank you,
Jake
On 6/12/2019 1:30 PM, Denys Dmytriyenko wrote:
> Fixes following QA error:
> ERROR: point-cloud-viewer-2.1-r1 do_package_qa: QA Issue: /usr/bin/point_cloud_viewer contained in package point-cloud-viewer requires libxkbcommon.so.0, but no providers found in RDEPENDS_point-cloud-viewer? [file-rdeps]
>
> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> ---
> .../recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> index 9ee4ff0..067ead9 100644
> --- a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> +++ b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> @@ -17,7 +17,7 @@ PV = "2.1"
>
> S = "${WORKDIR}/git"
>
> -RDEPENDS_${PN} = "glfw opencv libstdc++"
> +RDEPENDS_${PN} = "glfw opencv libxkbcommon"
>
> do_install() {
> install -d ${D}${bindir}
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [EXTERNAL] [thud/master][PATCH] point-cloud-viewer: add RDEPENDS on libxkbcommon
2019-06-14 17:58 ` [EXTERNAL] " Jacob Stiffler
@ 2019-06-14 18:17 ` Denys Dmytriyenko
2019-06-14 18:19 ` Denys Dmytriyenko
0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2019-06-14 18:17 UTC (permalink / raw)
To: Jacob Stiffler; +Cc: meta-arago
Still running it throught the next build, but it worked for am57 locally.
On Fri, Jun 14, 2019 at 01:58:10PM -0400, Jacob Stiffler wrote:
> Denys,
>
> Can you backport this to ti2019.01?
>
>
> Thank you,
>
> Jake
>
>
> On 6/12/2019 1:30 PM, Denys Dmytriyenko wrote:
> >Fixes following QA error:
> >ERROR: point-cloud-viewer-2.1-r1 do_package_qa: QA Issue: /usr/bin/point_cloud_viewer contained in package point-cloud-viewer requires libxkbcommon.so.0, but no providers found in RDEPENDS_point-cloud-viewer? [file-rdeps]
> >
> >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> >---
> > .../recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> >diff --git a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> >index 9ee4ff0..067ead9 100644
> >--- a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> >+++ b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> >@@ -17,7 +17,7 @@ PV = "2.1"
> > S = "${WORKDIR}/git"
> >-RDEPENDS_${PN} = "glfw opencv libstdc++"
> >+RDEPENDS_${PN} = "glfw opencv libxkbcommon"
> > do_install() {
> > install -d ${D}${bindir}
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [EXTERNAL] [thud/master][PATCH] point-cloud-viewer: add RDEPENDS on libxkbcommon
2019-06-14 18:17 ` Denys Dmytriyenko
@ 2019-06-14 18:19 ` Denys Dmytriyenko
0 siblings, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2019-06-14 18:19 UTC (permalink / raw)
To: Jacob Stiffler; +Cc: meta-arago
On Fri, Jun 14, 2019 at 02:17:39PM -0400, Denys Dmytriyenko wrote:
> Still running it throught the next build, but it worked for am57 locally.
Ah, sorry, not this one, this was already tested. I was referring to glfw fix.
> On Fri, Jun 14, 2019 at 01:58:10PM -0400, Jacob Stiffler wrote:
> > Denys,
> >
> > Can you backport this to ti2019.01?
> >
> >
> > Thank you,
> >
> > Jake
> >
> >
> > On 6/12/2019 1:30 PM, Denys Dmytriyenko wrote:
> > >Fixes following QA error:
> > >ERROR: point-cloud-viewer-2.1-r1 do_package_qa: QA Issue: /usr/bin/point_cloud_viewer contained in package point-cloud-viewer requires libxkbcommon.so.0, but no providers found in RDEPENDS_point-cloud-viewer? [file-rdeps]
> > >
> > >Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> > >---
> > > .../recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > >diff --git a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> > >index 9ee4ff0..067ead9 100644
> > >--- a/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> > >+++ b/meta-arago-extras/recipes-apps/point-cloud-viewer/point-cloud-viewer_git.bb
> > >@@ -17,7 +17,7 @@ PV = "2.1"
> > > S = "${WORKDIR}/git"
> > >-RDEPENDS_${PN} = "glfw opencv libstdc++"
> > >+RDEPENDS_${PN} = "glfw opencv libxkbcommon"
> > > do_install() {
> > > install -d ${D}${bindir}
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-06-14 18:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-12 17:30 [thud/master][PATCH] point-cloud-viewer: add RDEPENDS on libxkbcommon Denys Dmytriyenko
2019-06-14 17:58 ` [EXTERNAL] " Jacob Stiffler
2019-06-14 18:17 ` Denys Dmytriyenko
2019-06-14 18:19 ` Denys Dmytriyenko
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.