* [PATCH 1/2] packagegroup-arago-console: Change condition for including tslib packages.
@ 2015-03-13 12:05 Jacob Stiffler
2015-03-13 12:05 ` [PATCH 2/2] packagegroup-arago-tisdk-matrix: Change conditions for including ts-calibrate-init Jacob Stiffler
0 siblings, 1 reply; 3+ messages in thread
From: Jacob Stiffler @ 2015-03-13 12:05 UTC (permalink / raw)
To: meta-arago
* Include if wayland is not a DISTRO_FEATURE.
Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
.../packagegroups/packagegroup-arago-console.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-console.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-console.bb
index a7b9f33..e67a9d6 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-console.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-console.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Extended task to get more basic and console apps"
LICENSE = "MIT"
-PR = "r7"
+PR = "r8"
PACKAGE_ARCH = "${MACHINE_ARCH}"
@@ -67,7 +67,7 @@ ARAGO_SDK_PREREQ = "\
ARAGO_CONSOLE = "\
${@base_contains('MACHINE_FEATURES', 'alsa', '${ARAGO_ALSA_EXTRA}', '',d)} \
- ${@base_conditional('QT_PROVIDER', 'qt5', '', '${ARAGO_TSLIB}', d)} \
+ ${@base_contains('DISTRO_FEATURES', 'wayland', '', '${ARAGO_TSLIB}', d)} \
${ARAGO_NCURSES} \
${ARAGO_FSTOOLS} \
${ARAGO_UTILS} \
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] packagegroup-arago-tisdk-matrix: Change conditions for including ts-calibrate-init.
2015-03-13 12:05 [PATCH 1/2] packagegroup-arago-console: Change condition for including tslib packages Jacob Stiffler
@ 2015-03-13 12:05 ` Jacob Stiffler
2015-03-16 14:58 ` Denys Dmytriyenko
0 siblings, 1 reply; 3+ messages in thread
From: Jacob Stiffler @ 2015-03-13 12:05 UTC (permalink / raw)
To: meta-arago
* Include if wayland not a DISTRO_FEATURE.
Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
.../packagegroup-arago-tisdk-matrix.bb | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
index d8386f5..094d93a 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to include Matrix v2"
LICENSE = "MIT"
-PR = "r36"
+PR = "r37"
inherit packagegroup
@@ -49,7 +49,7 @@ MATRIX_APPS_append_omap3 = " \
matrix-multimedia-demo-h264dec \
matrix-multimedia-demo-mpeg4aacdec \
matrix-multimedia-demo-mpeg4dec \
- ${@base_conditional('QT_PROVIDER', 'qt5', '', 'ts-calibrate-init', d)} \
+ ${@base_contains('DISTRO_FEATURES', 'wayland', '', 'ts-calibrate-init', d)} \
"
MATRIX_APPS_append_ti33x = " \
@@ -66,7 +66,7 @@ MATRIX_APPS_append_ti33x = " \
matrix-gui-clocks \
matrix-gui-pm-demos-governor \
\
- ${@base_conditional('QT_PROVIDER', 'qt5', '', 'ts-calibrate-init', d)} \
+ ${@base_conditional('WAYLAND_SUPPORT', '1', '', 'ts-calibrate-init', d)} \
"
MATRIX_APPS_append_ti43x = " \
@@ -84,7 +84,7 @@ MATRIX_APPS_append_ti43x = " \
matrix-gui-pm-demos-governor \
matrix-gui-apps-dual-camera \
matrix-gui-apps-image-gallery \
- ${@base_conditional('QT_PROVIDER', 'qt5', '', 'ts-calibrate-init', d)} \
+ ${@base_conditional('WAYLAND_SUPPORT', '1', '', 'ts-calibrate-init', d)} \
"
MATRIX_APPS_append_omap-a15 = " \
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 2/2] packagegroup-arago-tisdk-matrix: Change conditions for including ts-calibrate-init.
2015-03-13 12:05 ` [PATCH 2/2] packagegroup-arago-tisdk-matrix: Change conditions for including ts-calibrate-init Jacob Stiffler
@ 2015-03-16 14:58 ` Denys Dmytriyenko
0 siblings, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2015-03-16 14:58 UTC (permalink / raw)
To: Jacob Stiffler; +Cc: meta-arago
On Fri, Mar 13, 2015 at 08:05:13AM -0400, Jacob Stiffler wrote:
> * Include if wayland not a DISTRO_FEATURE.
NAK, see below
> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> ---
> .../packagegroup-arago-tisdk-matrix.bb | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> index d8386f5..094d93a 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> @@ -1,6 +1,6 @@
> DESCRIPTION = "Task to include Matrix v2"
> LICENSE = "MIT"
> -PR = "r36"
> +PR = "r37"
>
> inherit packagegroup
>
> @@ -49,7 +49,7 @@ MATRIX_APPS_append_omap3 = " \
> matrix-multimedia-demo-h264dec \
> matrix-multimedia-demo-mpeg4aacdec \
> matrix-multimedia-demo-mpeg4dec \
> - ${@base_conditional('QT_PROVIDER', 'qt5', '', 'ts-calibrate-init', d)} \
> + ${@base_contains('DISTRO_FEATURES', 'wayland', '', 'ts-calibrate-init', d)} \
> "
>
> MATRIX_APPS_append_ti33x = " \
> @@ -66,7 +66,7 @@ MATRIX_APPS_append_ti33x = " \
> matrix-gui-clocks \
> matrix-gui-pm-demos-governor \
> \
> - ${@base_conditional('QT_PROVIDER', 'qt5', '', 'ts-calibrate-init', d)} \
> + ${@base_conditional('WAYLAND_SUPPORT', '1', '', 'ts-calibrate-init', d)} \
^^^
> "
>
> MATRIX_APPS_append_ti43x = " \
> @@ -84,7 +84,7 @@ MATRIX_APPS_append_ti43x = " \
> matrix-gui-pm-demos-governor \
> matrix-gui-apps-dual-camera \
> matrix-gui-apps-image-gallery \
> - ${@base_conditional('QT_PROVIDER', 'qt5', '', 'ts-calibrate-init', d)} \
> + ${@base_conditional('WAYLAND_SUPPORT', '1', '', 'ts-calibrate-init', d)} \
^^^
> "
>
> MATRIX_APPS_append_omap-a15 = " \
> --
> 1.7.9.5
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-16 14:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-13 12:05 [PATCH 1/2] packagegroup-arago-console: Change condition for including tslib packages Jacob Stiffler
2015-03-13 12:05 ` [PATCH 2/2] packagegroup-arago-tisdk-matrix: Change conditions for including ts-calibrate-init Jacob Stiffler
2015-03-16 14:58 ` 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.