* [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries
@ 2010-10-13 14:01 Chase Maupin
2010-10-13 14:01 ` [PATCH 2/5] matrix-gui-common: use INC_PR in versioned recipes Chase Maupin
` (5 more replies)
0 siblings, 6 replies; 13+ messages in thread
From: Chase Maupin @ 2010-10-13 14:01 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
* Skip the QA check on the prebuilt binaries used for dm365
devices.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
recipes/ti/matrix-gui-common.inc | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/recipes/ti/matrix-gui-common.inc b/recipes/ti/matrix-gui-common.inc
index 096c321..46c0bd6 100644
--- a/recipes/ti/matrix-gui-common.inc
+++ b/recipes/ti/matrix-gui-common.inc
@@ -32,4 +32,7 @@ do_install() {
}
+# Skip the QA for pre-built binaries
+INSANE_SKIP_${PN}_dm365 = "True"
+
FILES_${PN} += "${datadir}/matrix/*"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 2/5] matrix-gui-common: use INC_PR in versioned recipes
2010-10-13 14:01 [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Chase Maupin
@ 2010-10-13 14:01 ` Chase Maupin
2010-10-13 16:59 ` Denys Dmytriyenko
2010-10-13 14:01 ` [PATCH 3/5] matrix-gui-e: " Chase Maupin
` (4 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Chase Maupin @ 2010-10-13 14:01 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
* Added an INC_PR to the matrix-gui-common.inc file to be used
by the individual version recipes.
* Modified the version recipes to use INC_PR in their PR setting.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
recipes/ti/matrix-gui-common.inc | 2 ++
recipes/ti/matrix-gui-common_1.1.bb | 2 +-
recipes/ti/matrix-gui-common_1.2.bb | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/recipes/ti/matrix-gui-common.inc b/recipes/ti/matrix-gui-common.inc
index 46c0bd6..896da47 100644
--- a/recipes/ti/matrix-gui-common.inc
+++ b/recipes/ti/matrix-gui-common.inc
@@ -4,6 +4,8 @@ LICENSE = "BSD"
SECTION = "multimedia"
PRIORITY = "optional"
+INC_PR = "r5"
+
COMPATIBLE_MACHINE = "(dm365|omapl138|omap3|ti816x)"
PLATFORM_dm365 = "dm365"
diff --git a/recipes/ti/matrix-gui-common_1.1.bb b/recipes/ti/matrix-gui-common_1.1.bb
index 2b921af..b0f84bc 100644
--- a/recipes/ti/matrix-gui-common_1.1.bb
+++ b/recipes/ti/matrix-gui-common_1.1.bb
@@ -4,4 +4,4 @@ COMPATIBLE_MACHINE = "(dm365|omapl138|omap3)"
SRCREV = "136"
PV = "1.1"
-PR = "r4"
+PR = "${INC_PR}.0"
diff --git a/recipes/ti/matrix-gui-common_1.2.bb b/recipes/ti/matrix-gui-common_1.2.bb
index a3da400..6ea4d3d 100644
--- a/recipes/ti/matrix-gui-common_1.2.bb
+++ b/recipes/ti/matrix-gui-common_1.2.bb
@@ -2,4 +2,4 @@ require matrix-gui-common.inc
SRCREV = "146"
PV = "1.2"
-PR = "r0"
+PR = "${INC_PR}.0"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 3/5] matrix-gui-e: use INC_PR in versioned recipes
2010-10-13 14:01 [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Chase Maupin
2010-10-13 14:01 ` [PATCH 2/5] matrix-gui-common: use INC_PR in versioned recipes Chase Maupin
@ 2010-10-13 14:01 ` Chase Maupin
2010-10-13 16:59 ` Denys Dmytriyenko
2010-10-13 14:01 ` [PATCH 4/5] matrix-gui: " Chase Maupin
` (3 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Chase Maupin @ 2010-10-13 14:01 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
* Added an INC_PR to the matrix-gui-e.inc file to be used
by the individual version recipes.
* Modified the version recipes to use INC_PR in their PR setting.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
recipes/ti/matrix-gui-e.inc | 2 ++
recipes/ti/matrix-gui-e_1.1.bb | 2 +-
recipes/ti/matrix-gui-e_1.2.bb | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/recipes/ti/matrix-gui-e.inc b/recipes/ti/matrix-gui-e.inc
index 0d0b4bf..86f08b1 100644
--- a/recipes/ti/matrix-gui-e.inc
+++ b/recipes/ti/matrix-gui-e.inc
@@ -4,6 +4,8 @@ LICENSE = "BSD"
SECTION = "multimedia"
PRIORITY = "optional"
+INC_PR = "r20"
+
COMPATIBLE_MACHINE = "(dm365|omapl138|omap3|ti816x)"
PLATFORM_dm365 = "dm365"
diff --git a/recipes/ti/matrix-gui-e_1.1.bb b/recipes/ti/matrix-gui-e_1.1.bb
index d6a674f..2b6bd76 100644
--- a/recipes/ti/matrix-gui-e_1.1.bb
+++ b/recipes/ti/matrix-gui-e_1.1.bb
@@ -4,5 +4,5 @@ COMPATIBLE_MACHINE = "(dm365|omapl138|omap3)"
SRCREV = "136"
PV = "1.1"
-PR = "r19"
+PR = "${INC_PR}.0"
diff --git a/recipes/ti/matrix-gui-e_1.2.bb b/recipes/ti/matrix-gui-e_1.2.bb
index 461fc7e..5ac2a56 100644
--- a/recipes/ti/matrix-gui-e_1.2.bb
+++ b/recipes/ti/matrix-gui-e_1.2.bb
@@ -2,5 +2,5 @@ require matrix-gui-e.inc
SRCREV = "146"
PV = "1.2"
-PR = "r0"
+PR = "${INC_PR}.0"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 4/5] matrix-gui: use INC_PR in versioned recipes
2010-10-13 14:01 [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Chase Maupin
2010-10-13 14:01 ` [PATCH 2/5] matrix-gui-common: use INC_PR in versioned recipes Chase Maupin
2010-10-13 14:01 ` [PATCH 3/5] matrix-gui-e: " Chase Maupin
@ 2010-10-13 14:01 ` Chase Maupin
2010-10-13 16:59 ` Denys Dmytriyenko
2010-10-13 14:01 ` [PATCH 5/5] matrix-tui: use INC_PR in versioned recipe Chase Maupin
` (2 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Chase Maupin @ 2010-10-13 14:01 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
* Added an INC_PR to the matrix-gui.inc file to be used
by the individual version recipes.
* Modified the version recipes to use INC_PR in their PR setting.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
recipes/ti/matrix-gui.inc | 2 ++
recipes/ti/matrix-gui_1.1.bb | 2 +-
recipes/ti/matrix-gui_1.2.bb | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/recipes/ti/matrix-gui.inc b/recipes/ti/matrix-gui.inc
index 871240f..a2a2721 100644
--- a/recipes/ti/matrix-gui.inc
+++ b/recipes/ti/matrix-gui.inc
@@ -4,6 +4,8 @@ LICENSE = "BSD"
SECTION = "multimedia"
PRIORITY = "optional"
+INC_PR = "r18"
+
COMPATIBLE_MACHINE = "(dm365|omapl138|omap3|ti816x)"
PLATFORM_dm365 = "dm365"
diff --git a/recipes/ti/matrix-gui_1.1.bb b/recipes/ti/matrix-gui_1.1.bb
index 22a8b86..f14e207 100644
--- a/recipes/ti/matrix-gui_1.1.bb
+++ b/recipes/ti/matrix-gui_1.1.bb
@@ -4,4 +4,4 @@ COMPATIBLE_MACHINE = "(dm365|omapl138|omap3)"
SRCREV = "136"
PV = "1.1"
-PR = "r17"
+PR = "${INC_PR}.0"
diff --git a/recipes/ti/matrix-gui_1.2.bb b/recipes/ti/matrix-gui_1.2.bb
index 486fd2d..6837605 100644
--- a/recipes/ti/matrix-gui_1.2.bb
+++ b/recipes/ti/matrix-gui_1.2.bb
@@ -2,4 +2,4 @@ require matrix-gui.inc
SRCREV = "146"
PV = "1.2"
-PR = "r0"
+PR = "${INC_PR}.0"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 5/5] matrix-tui: use INC_PR in versioned recipe
2010-10-13 14:01 [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Chase Maupin
` (2 preceding siblings ...)
2010-10-13 14:01 ` [PATCH 4/5] matrix-gui: " Chase Maupin
@ 2010-10-13 14:01 ` Chase Maupin
2010-10-13 16:59 ` Denys Dmytriyenko
2010-10-13 16:29 ` [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Koen Kooi
2010-10-13 16:58 ` Denys Dmytriyenko
5 siblings, 1 reply; 13+ messages in thread
From: Chase Maupin @ 2010-10-13 14:01 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
* Added an INC_PR to the matrix-tui.inc file to be used
by the individual version recipes.
* Modified the version recipe to use INC_PR in its PR setting.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
recipes/ti/matrix-tui.inc | 2 ++
recipes/ti/matrix-tui_1.0.bb | 2 +-
2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/recipes/ti/matrix-tui.inc b/recipes/ti/matrix-tui.inc
index c8fd70d..6983406 100644
--- a/recipes/ti/matrix-tui.inc
+++ b/recipes/ti/matrix-tui.inc
@@ -5,6 +5,8 @@ SECTION = "multimedia"
PRIORITY = "optional"
DEPENDS = "libxml2 zlib ncurses"
+INC_PR = "r5"
+
INSANE_SKIP_${PN} = "True"
SRC_URI = "svn://gforge.ti.com/svn/matrix_tui/;module=trunk;proto=https;user=anonymous;pswd='' \
diff --git a/recipes/ti/matrix-tui_1.0.bb b/recipes/ti/matrix-tui_1.0.bb
index c82dc14..81e622b 100644
--- a/recipes/ti/matrix-tui_1.0.bb
+++ b/recipes/ti/matrix-tui_1.0.bb
@@ -2,4 +2,4 @@ require matrix-tui.inc
SRCREV = "29"
PV = "1.0"
-PR = "r4"
+PR = "${INC_PR}.0"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries
2010-10-13 14:01 [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Chase Maupin
` (3 preceding siblings ...)
2010-10-13 14:01 ` [PATCH 5/5] matrix-tui: use INC_PR in versioned recipe Chase Maupin
@ 2010-10-13 16:29 ` Koen Kooi
2010-10-13 16:58 ` Denys Dmytriyenko
5 siblings, 0 replies; 13+ messages in thread
From: Koen Kooi @ 2010-10-13 16:29 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 13-10-10 16:01, Chase Maupin wrote:
> * Skip the QA check on the prebuilt binaries used for dm365
> devices.
NAK, we should rebuild the binaries in OE, not add hacks.
regards,
Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFMtd5SMkyGM64RGpERAgumAKCzdQo7QlSn/GEI6CjYEHwTbQp2AwCeLshO
X3D/0kWCylovDSmyPwtsGCw=
=RKq8
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries
2010-10-13 14:01 [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Chase Maupin
` (4 preceding siblings ...)
2010-10-13 16:29 ` [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Koen Kooi
@ 2010-10-13 16:58 ` Denys Dmytriyenko
2010-10-13 18:39 ` Maupin, Chase
5 siblings, 1 reply; 13+ messages in thread
From: Denys Dmytriyenko @ 2010-10-13 16:58 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
On Wed, Oct 13, 2010 at 09:01:27AM -0500, Chase Maupin wrote:
> * Skip the QA check on the prebuilt binaries used for dm365
> devices.
And why do we have prebuilt binaries in OE?
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
> recipes/ti/matrix-gui-common.inc | 3 +++
> 1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/recipes/ti/matrix-gui-common.inc b/recipes/ti/matrix-gui-common.inc
> index 096c321..46c0bd6 100644
> --- a/recipes/ti/matrix-gui-common.inc
> +++ b/recipes/ti/matrix-gui-common.inc
> @@ -32,4 +32,7 @@ do_install() {
>
> }
>
> +# Skip the QA for pre-built binaries
> +INSANE_SKIP_${PN}_dm365 = "True"
> +
> FILES_${PN} += "${datadir}/matrix/*"
> --
> 1.7.0.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/5] matrix-gui-common: use INC_PR in versioned recipes
2010-10-13 14:01 ` [PATCH 2/5] matrix-gui-common: use INC_PR in versioned recipes Chase Maupin
@ 2010-10-13 16:59 ` Denys Dmytriyenko
0 siblings, 0 replies; 13+ messages in thread
From: Denys Dmytriyenko @ 2010-10-13 16:59 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
On Wed, Oct 13, 2010 at 09:01:28AM -0500, Chase Maupin wrote:
> * Added an INC_PR to the matrix-gui-common.inc file to be used
> by the individual version recipes.
> * Modified the version recipes to use INC_PR in their PR setting.
>
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Acked-by: Denys Dmytriyenko <denis@denix.org>
> ---
> recipes/ti/matrix-gui-common.inc | 2 ++
> recipes/ti/matrix-gui-common_1.1.bb | 2 +-
> recipes/ti/matrix-gui-common_1.2.bb | 2 +-
> 3 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/recipes/ti/matrix-gui-common.inc b/recipes/ti/matrix-gui-common.inc
> index 46c0bd6..896da47 100644
> --- a/recipes/ti/matrix-gui-common.inc
> +++ b/recipes/ti/matrix-gui-common.inc
> @@ -4,6 +4,8 @@ LICENSE = "BSD"
> SECTION = "multimedia"
> PRIORITY = "optional"
>
> +INC_PR = "r5"
> +
> COMPATIBLE_MACHINE = "(dm365|omapl138|omap3|ti816x)"
>
> PLATFORM_dm365 = "dm365"
> diff --git a/recipes/ti/matrix-gui-common_1.1.bb b/recipes/ti/matrix-gui-common_1.1.bb
> index 2b921af..b0f84bc 100644
> --- a/recipes/ti/matrix-gui-common_1.1.bb
> +++ b/recipes/ti/matrix-gui-common_1.1.bb
> @@ -4,4 +4,4 @@ COMPATIBLE_MACHINE = "(dm365|omapl138|omap3)"
>
> SRCREV = "136"
> PV = "1.1"
> -PR = "r4"
> +PR = "${INC_PR}.0"
> diff --git a/recipes/ti/matrix-gui-common_1.2.bb b/recipes/ti/matrix-gui-common_1.2.bb
> index a3da400..6ea4d3d 100644
> --- a/recipes/ti/matrix-gui-common_1.2.bb
> +++ b/recipes/ti/matrix-gui-common_1.2.bb
> @@ -2,4 +2,4 @@ require matrix-gui-common.inc
>
> SRCREV = "146"
> PV = "1.2"
> -PR = "r0"
> +PR = "${INC_PR}.0"
> --
> 1.7.0.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 3/5] matrix-gui-e: use INC_PR in versioned recipes
2010-10-13 14:01 ` [PATCH 3/5] matrix-gui-e: " Chase Maupin
@ 2010-10-13 16:59 ` Denys Dmytriyenko
0 siblings, 0 replies; 13+ messages in thread
From: Denys Dmytriyenko @ 2010-10-13 16:59 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
On Wed, Oct 13, 2010 at 09:01:29AM -0500, Chase Maupin wrote:
> * Added an INC_PR to the matrix-gui-e.inc file to be used
> by the individual version recipes.
> * Modified the version recipes to use INC_PR in their PR setting.
>
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Acked-by: Denys Dmytriyenko <denis@denix.org>
> ---
> recipes/ti/matrix-gui-e.inc | 2 ++
> recipes/ti/matrix-gui-e_1.1.bb | 2 +-
> recipes/ti/matrix-gui-e_1.2.bb | 2 +-
> 3 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/recipes/ti/matrix-gui-e.inc b/recipes/ti/matrix-gui-e.inc
> index 0d0b4bf..86f08b1 100644
> --- a/recipes/ti/matrix-gui-e.inc
> +++ b/recipes/ti/matrix-gui-e.inc
> @@ -4,6 +4,8 @@ LICENSE = "BSD"
> SECTION = "multimedia"
> PRIORITY = "optional"
>
> +INC_PR = "r20"
> +
> COMPATIBLE_MACHINE = "(dm365|omapl138|omap3|ti816x)"
>
> PLATFORM_dm365 = "dm365"
> diff --git a/recipes/ti/matrix-gui-e_1.1.bb b/recipes/ti/matrix-gui-e_1.1.bb
> index d6a674f..2b6bd76 100644
> --- a/recipes/ti/matrix-gui-e_1.1.bb
> +++ b/recipes/ti/matrix-gui-e_1.1.bb
> @@ -4,5 +4,5 @@ COMPATIBLE_MACHINE = "(dm365|omapl138|omap3)"
>
> SRCREV = "136"
> PV = "1.1"
> -PR = "r19"
> +PR = "${INC_PR}.0"
>
> diff --git a/recipes/ti/matrix-gui-e_1.2.bb b/recipes/ti/matrix-gui-e_1.2.bb
> index 461fc7e..5ac2a56 100644
> --- a/recipes/ti/matrix-gui-e_1.2.bb
> +++ b/recipes/ti/matrix-gui-e_1.2.bb
> @@ -2,5 +2,5 @@ require matrix-gui-e.inc
>
> SRCREV = "146"
> PV = "1.2"
> -PR = "r0"
> +PR = "${INC_PR}.0"
>
> --
> 1.7.0.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 4/5] matrix-gui: use INC_PR in versioned recipes
2010-10-13 14:01 ` [PATCH 4/5] matrix-gui: " Chase Maupin
@ 2010-10-13 16:59 ` Denys Dmytriyenko
0 siblings, 0 replies; 13+ messages in thread
From: Denys Dmytriyenko @ 2010-10-13 16:59 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
On Wed, Oct 13, 2010 at 09:01:30AM -0500, Chase Maupin wrote:
> * Added an INC_PR to the matrix-gui.inc file to be used
> by the individual version recipes.
> * Modified the version recipes to use INC_PR in their PR setting.
>
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Acked-by: Denys Dmytriyenko <denis@denix.org>
> ---
> recipes/ti/matrix-gui.inc | 2 ++
> recipes/ti/matrix-gui_1.1.bb | 2 +-
> recipes/ti/matrix-gui_1.2.bb | 2 +-
> 3 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/recipes/ti/matrix-gui.inc b/recipes/ti/matrix-gui.inc
> index 871240f..a2a2721 100644
> --- a/recipes/ti/matrix-gui.inc
> +++ b/recipes/ti/matrix-gui.inc
> @@ -4,6 +4,8 @@ LICENSE = "BSD"
> SECTION = "multimedia"
> PRIORITY = "optional"
>
> +INC_PR = "r18"
> +
> COMPATIBLE_MACHINE = "(dm365|omapl138|omap3|ti816x)"
>
> PLATFORM_dm365 = "dm365"
> diff --git a/recipes/ti/matrix-gui_1.1.bb b/recipes/ti/matrix-gui_1.1.bb
> index 22a8b86..f14e207 100644
> --- a/recipes/ti/matrix-gui_1.1.bb
> +++ b/recipes/ti/matrix-gui_1.1.bb
> @@ -4,4 +4,4 @@ COMPATIBLE_MACHINE = "(dm365|omapl138|omap3)"
>
> SRCREV = "136"
> PV = "1.1"
> -PR = "r17"
> +PR = "${INC_PR}.0"
> diff --git a/recipes/ti/matrix-gui_1.2.bb b/recipes/ti/matrix-gui_1.2.bb
> index 486fd2d..6837605 100644
> --- a/recipes/ti/matrix-gui_1.2.bb
> +++ b/recipes/ti/matrix-gui_1.2.bb
> @@ -2,4 +2,4 @@ require matrix-gui.inc
>
> SRCREV = "146"
> PV = "1.2"
> -PR = "r0"
> +PR = "${INC_PR}.0"
> --
> 1.7.0.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 5/5] matrix-tui: use INC_PR in versioned recipe
2010-10-13 14:01 ` [PATCH 5/5] matrix-tui: use INC_PR in versioned recipe Chase Maupin
@ 2010-10-13 16:59 ` Denys Dmytriyenko
0 siblings, 0 replies; 13+ messages in thread
From: Denys Dmytriyenko @ 2010-10-13 16:59 UTC (permalink / raw)
To: openembedded-devel; +Cc: Chase Maupin
On Wed, Oct 13, 2010 at 09:01:31AM -0500, Chase Maupin wrote:
> * Added an INC_PR to the matrix-tui.inc file to be used
> by the individual version recipes.
> * Modified the version recipe to use INC_PR in its PR setting.
>
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Acked-by: Denys Dmytriyenko <denis@denix.org>
> ---
> recipes/ti/matrix-tui.inc | 2 ++
> recipes/ti/matrix-tui_1.0.bb | 2 +-
> 2 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/recipes/ti/matrix-tui.inc b/recipes/ti/matrix-tui.inc
> index c8fd70d..6983406 100644
> --- a/recipes/ti/matrix-tui.inc
> +++ b/recipes/ti/matrix-tui.inc
> @@ -5,6 +5,8 @@ SECTION = "multimedia"
> PRIORITY = "optional"
> DEPENDS = "libxml2 zlib ncurses"
>
> +INC_PR = "r5"
> +
> INSANE_SKIP_${PN} = "True"
>
> SRC_URI = "svn://gforge.ti.com/svn/matrix_tui/;module=trunk;proto=https;user=anonymous;pswd='' \
> diff --git a/recipes/ti/matrix-tui_1.0.bb b/recipes/ti/matrix-tui_1.0.bb
> index c82dc14..81e622b 100644
> --- a/recipes/ti/matrix-tui_1.0.bb
> +++ b/recipes/ti/matrix-tui_1.0.bb
> @@ -2,4 +2,4 @@ require matrix-tui.inc
>
> SRCREV = "29"
> PV = "1.0"
> -PR = "r4"
> +PR = "${INC_PR}.0"
> --
> 1.7.0.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries
2010-10-13 16:58 ` Denys Dmytriyenko
@ 2010-10-13 18:39 ` Maupin, Chase
2010-10-13 18:50 ` Denys Dmytriyenko
0 siblings, 1 reply; 13+ messages in thread
From: Maupin, Chase @ 2010-10-13 18:39 UTC (permalink / raw)
To: Denys Dmytriyenko, openembedded-devel@lists.openembedded.org
> -----Original Message-----
> From: Denys Dmytriyenko [mailto:denis@denix.org]
> Sent: Wednesday, October 13, 2010 11:59 AM
> To: openembedded-devel@lists.openembedded.org
> Cc: Maupin, Chase
> Subject: Re: [oe] [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt
> binaries
>
> On Wed, Oct 13, 2010 at 09:01:27AM -0500, Chase Maupin wrote:
> > * Skip the QA check on the prebuilt binaries used for dm365
> > devices.
>
> And why do we have prebuilt binaries in OE?
They are not so much in the OE repository as they are part of the matrix repository. That being said I'm working to get these buildable in OE and I'll make this an RDEPENDS. So go ahead and ignore this patch.
>
> > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > ---
> > recipes/ti/matrix-gui-common.inc | 3 +++
> > 1 files changed, 3 insertions(+), 0 deletions(-)
> >
> > diff --git a/recipes/ti/matrix-gui-common.inc b/recipes/ti/matrix-gui-
> common.inc
> > index 096c321..46c0bd6 100644
> > --- a/recipes/ti/matrix-gui-common.inc
> > +++ b/recipes/ti/matrix-gui-common.inc
> > @@ -32,4 +32,7 @@ do_install() {
> >
> > }
> >
> > +# Skip the QA for pre-built binaries
> > +INSANE_SKIP_${PN}_dm365 = "True"
> > +
> > FILES_${PN} += "${datadir}/matrix/*"
> > --
> > 1.7.0.4
> >
> >
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries
2010-10-13 18:39 ` Maupin, Chase
@ 2010-10-13 18:50 ` Denys Dmytriyenko
0 siblings, 0 replies; 13+ messages in thread
From: Denys Dmytriyenko @ 2010-10-13 18:50 UTC (permalink / raw)
To: Maupin, Chase; +Cc: openembedded-devel@lists.openembedded.org
On Wed, Oct 13, 2010 at 01:39:53PM -0500, Maupin, Chase wrote:
>
>
>
>
> > -----Original Message-----
> > From: Denys Dmytriyenko [mailto:denis@denix.org]
> > Sent: Wednesday, October 13, 2010 11:59 AM
> > To: openembedded-devel@lists.openembedded.org
> > Cc: Maupin, Chase
> > Subject: Re: [oe] [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt
> > binaries
> >
> > On Wed, Oct 13, 2010 at 09:01:27AM -0500, Chase Maupin wrote:
> > > * Skip the QA check on the prebuilt binaries used for dm365
> > > devices.
> >
> > And why do we have prebuilt binaries in OE?
>
> They are not so much in the OE repository as they are part of the matrix
> repository. That being said I'm working to get these buildable in OE and
> I'll make this an RDEPENDS. So go ahead and ignore this patch.
Hmm, when I created the original recipes for the Matrix, the only binary in
the repository was the Qt/E based browser (which I disabled in OE, but enabled
temporarily in Arago) and a bunch of scripts... The rest of it was built from
the sources - has it changed that much lately? Unless there is an issue, like
with am-benchmarks performance using specific toolchain, we should build
everything from sources. Let me know if you need any help changing it.
--
Denys
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2010-10-13 18:51 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-13 14:01 [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Chase Maupin
2010-10-13 14:01 ` [PATCH 2/5] matrix-gui-common: use INC_PR in versioned recipes Chase Maupin
2010-10-13 16:59 ` Denys Dmytriyenko
2010-10-13 14:01 ` [PATCH 3/5] matrix-gui-e: " Chase Maupin
2010-10-13 16:59 ` Denys Dmytriyenko
2010-10-13 14:01 ` [PATCH 4/5] matrix-gui: " Chase Maupin
2010-10-13 16:59 ` Denys Dmytriyenko
2010-10-13 14:01 ` [PATCH 5/5] matrix-tui: use INC_PR in versioned recipe Chase Maupin
2010-10-13 16:59 ` Denys Dmytriyenko
2010-10-13 16:29 ` [PATCH 1/5] matrix-gui-common: skip qa check on prebuilt binaries Koen Kooi
2010-10-13 16:58 ` Denys Dmytriyenko
2010-10-13 18:39 ` Maupin, Chase
2010-10-13 18:50 ` 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.