All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] uicmoc-native_2.3.10.bb: converted to new style staging
@ 2010-09-06 12:48 Fahad Usman
  2010-09-07  5:55 ` Fahad
  2010-09-07  6:05 ` Khem Raj
  0 siblings, 2 replies; 4+ messages in thread
From: Fahad Usman @ 2010-09-06 12:48 UTC (permalink / raw)
  To: openembedded-devel

* Converted do_stage to do_install.
* Bumped PR
* Added NATIVE_INSTALL_WORKS = "1"

Signed-off-by: Fahad Usman <fahad_usman@mentor.com>
---
 recipes/uicmoc/uicmoc-native_2.3.10.bb |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/recipes/uicmoc/uicmoc-native_2.3.10.bb b/recipes/uicmoc/uicmoc-native_2.3.10.bb
index c161571..8c69bef 100644
--- a/recipes/uicmoc/uicmoc-native_2.3.10.bb
+++ b/recipes/uicmoc/uicmoc-native_2.3.10.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.trolltech.com"
 SECTION = "devel"
 PRIORITY = "optional"
 LICENSE = "GPL QPL"
-PR = "r4"
+PR = "r5"
 
 SRC_URI = "ftp://ftp.trolltech.com/pub/qt/source/qt-embedded-${PV}-free.tar.gz \
            file://fix-makefile.patch \
@@ -43,11 +43,14 @@ do_compile() {
     oe_runmake -C tools/makeqpf       || die "Building makeqpf failed"
 }
 
-do_stage() {
-    install -m 0755 bin/moc ${STAGING_BINDIR}
-    install -m 0755 bin/uic ${STAGING_BINDIR}
-    install -m 0755 tools/makeqpf/makeqpf ${STAGING_BINDIR}
+do_install() {
+    install -d ${D}${bindir}
+    install -m 0755 bin/moc ${D}${bindir}
+    install -m 0755 bin/uic ${D}${bindir}
+    install -m 0755 tools/makeqpf/makeqpf ${D}${bindir}
 }
 
 SRC_URI[md5sum] = "1f7ad30113afc500cab7f5b2f4dec0d7"
 SRC_URI[sha256sum] = "883363eb0c94de3d1e36f3ab9e09a8f127418d497213cc1a0ed1a1588ecd66b8"
+
+NATIVE_INSTALL_WORKS = "1" 
-- 
1.6.3.3




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] uicmoc-native_2.3.10.bb: converted to new style staging
  2010-09-06 12:48 [PATCH] uicmoc-native_2.3.10.bb: converted to new style staging Fahad Usman
@ 2010-09-07  5:55 ` Fahad
  2010-09-07  6:05 ` Khem Raj
  1 sibling, 0 replies; 4+ messages in thread
From: Fahad @ 2010-09-07  5:55 UTC (permalink / raw)
  To: openembedded-devel

On Mon, 2010-09-06 at 17:48 +0500, Fahad Usman wrote:
> * Converted do_stage to do_install.
> * Bumped PR
> * Added NATIVE_INSTALL_WORKS = "1"
> 
> Signed-off-by: Fahad Usman <fahad_usman@mentor.com>
> ---
>  recipes/uicmoc/uicmoc-native_2.3.10.bb |   13 ++++++++-----
>  1 files changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/recipes/uicmoc/uicmoc-native_2.3.10.bb b/recipes/uicmoc/uicmoc-native_2.3.10.bb
> index c161571..8c69bef 100644
> --- a/recipes/uicmoc/uicmoc-native_2.3.10.bb
> +++ b/recipes/uicmoc/uicmoc-native_2.3.10.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.trolltech.com"
>  SECTION = "devel"
>  PRIORITY = "optional"
>  LICENSE = "GPL QPL"
> -PR = "r4"
> +PR = "r5"
>  
>  SRC_URI = "ftp://ftp.trolltech.com/pub/qt/source/qt-embedded-${PV}-free.tar.gz \
>             file://fix-makefile.patch \
> @@ -43,11 +43,14 @@ do_compile() {
>      oe_runmake -C tools/makeqpf       || die "Building makeqpf failed"
>  }
>  
> -do_stage() {
> -    install -m 0755 bin/moc ${STAGING_BINDIR}
> -    install -m 0755 bin/uic ${STAGING_BINDIR}
> -    install -m 0755 tools/makeqpf/makeqpf ${STAGING_BINDIR}
> +do_install() {
> +    install -d ${D}${bindir}
> +    install -m 0755 bin/moc ${D}${bindir}
> +    install -m 0755 bin/uic ${D}${bindir}
> +    install -m 0755 tools/makeqpf/makeqpf ${D}${bindir}
>  }
>  
>  SRC_URI[md5sum] = "1f7ad30113afc500cab7f5b2f4dec0d7"
>  SRC_URI[sha256sum] = "883363eb0c94de3d1e36f3ab9e09a8f127418d497213cc1a0ed1a1588ecd66b8"
> +
> +NATIVE_INSTALL_WORKS = "1" 

This patch was already sent by Noor Ahsan on September 2,
http://patchwork.openembedded.org/patch/2852/
I have changed the status of my patch to "Not Applicable" in patchwork

Regards,
Fahad



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] uicmoc-native_2.3.10.bb: converted to new style staging
  2010-09-06 12:48 [PATCH] uicmoc-native_2.3.10.bb: converted to new style staging Fahad Usman
  2010-09-07  5:55 ` Fahad
@ 2010-09-07  6:05 ` Khem Raj
  2010-09-07  6:49   ` Frans Meulenbroeks
  1 sibling, 1 reply; 4+ messages in thread
From: Khem Raj @ 2010-09-07  6:05 UTC (permalink / raw)
  To: openembedded-devel

On Mon, Sep 6, 2010 at 5:48 AM, Fahad Usman <fahad_usman@mentor.com> wrote:
> * Converted do_stage to do_install.
> * Bumped PR
> * Added NATIVE_INSTALL_WORKS = "1"
>
> Signed-off-by: Fahad Usman <fahad_usman@mentor.com>

looks ok
> ---
>  recipes/uicmoc/uicmoc-native_2.3.10.bb |   13 ++++++++-----
>  1 files changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/recipes/uicmoc/uicmoc-native_2.3.10.bb b/recipes/uicmoc/uicmoc-native_2.3.10.bb
> index c161571..8c69bef 100644
> --- a/recipes/uicmoc/uicmoc-native_2.3.10.bb
> +++ b/recipes/uicmoc/uicmoc-native_2.3.10.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.trolltech.com"
>  SECTION = "devel"
>  PRIORITY = "optional"
>  LICENSE = "GPL QPL"
> -PR = "r4"
> +PR = "r5"
>
>  SRC_URI = "ftp://ftp.trolltech.com/pub/qt/source/qt-embedded-${PV}-free.tar.gz \
>            file://fix-makefile.patch \
> @@ -43,11 +43,14 @@ do_compile() {
>     oe_runmake -C tools/makeqpf       || die "Building makeqpf failed"
>  }
>
> -do_stage() {
> -    install -m 0755 bin/moc ${STAGING_BINDIR}
> -    install -m 0755 bin/uic ${STAGING_BINDIR}
> -    install -m 0755 tools/makeqpf/makeqpf ${STAGING_BINDIR}
> +do_install() {
> +    install -d ${D}${bindir}
> +    install -m 0755 bin/moc ${D}${bindir}
> +    install -m 0755 bin/uic ${D}${bindir}
> +    install -m 0755 tools/makeqpf/makeqpf ${D}${bindir}
>  }
>
>  SRC_URI[md5sum] = "1f7ad30113afc500cab7f5b2f4dec0d7"
>  SRC_URI[sha256sum] = "883363eb0c94de3d1e36f3ab9e09a8f127418d497213cc1a0ed1a1588ecd66b8"
> +
> +NATIVE_INSTALL_WORKS = "1"
> --
> 1.6.3.3
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] uicmoc-native_2.3.10.bb: converted to new style staging
  2010-09-07  6:05 ` Khem Raj
@ 2010-09-07  6:49   ` Frans Meulenbroeks
  0 siblings, 0 replies; 4+ messages in thread
From: Frans Meulenbroeks @ 2010-09-07  6:49 UTC (permalink / raw)
  To: openembedded-devel

2010/9/7 Khem Raj <raj.khem@gmail.com>:
> On Mon, Sep 6, 2010 at 5:48 AM, Fahad Usman <fahad_usman@mentor.com> wrote:
>> * Converted do_stage to do_install.
>> * Bumped PR
>> * Added NATIVE_INSTALL_WORKS = "1"
>>
>> Signed-off-by: Fahad Usman <fahad_usman@mentor.com>
>
> looks ok

looks ok to me too, not sure whether I tested it and not sure if that
uicmoc stuff is still relelvant
See also: http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=0ba9d6f94caea026c282d9d87704e4ada62babf0
I've asked about whether it was relevant, but (obviously) did not get a reply.

Frans
>> ---
>>  recipes/uicmoc/uicmoc-native_2.3.10.bb |   13 ++++++++-----
>>  1 files changed, 8 insertions(+), 5 deletions(-)
>>
>> diff --git a/recipes/uicmoc/uicmoc-native_2.3.10.bb b/recipes/uicmoc/uicmoc-native_2.3.10.bb
>> index c161571..8c69bef 100644
>> --- a/recipes/uicmoc/uicmoc-native_2.3.10.bb
>> +++ b/recipes/uicmoc/uicmoc-native_2.3.10.bb
>> @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.trolltech.com"
>>  SECTION = "devel"
>>  PRIORITY = "optional"
>>  LICENSE = "GPL QPL"
>> -PR = "r4"
>> +PR = "r5"
>>
>>  SRC_URI = "ftp://ftp.trolltech.com/pub/qt/source/qt-embedded-${PV}-free.tar.gz \
>>            file://fix-makefile.patch \
>> @@ -43,11 +43,14 @@ do_compile() {
>>     oe_runmake -C tools/makeqpf       || die "Building makeqpf failed"
>>  }
>>
>> -do_stage() {
>> -    install -m 0755 bin/moc ${STAGING_BINDIR}
>> -    install -m 0755 bin/uic ${STAGING_BINDIR}
>> -    install -m 0755 tools/makeqpf/makeqpf ${STAGING_BINDIR}
>> +do_install() {
>> +    install -d ${D}${bindir}
>> +    install -m 0755 bin/moc ${D}${bindir}
>> +    install -m 0755 bin/uic ${D}${bindir}
>> +    install -m 0755 tools/makeqpf/makeqpf ${D}${bindir}
>>  }
>>
>>  SRC_URI[md5sum] = "1f7ad30113afc500cab7f5b2f4dec0d7"
>>  SRC_URI[sha256sum] = "883363eb0c94de3d1e36f3ab9e09a8f127418d497213cc1a0ed1a1588ecd66b8"
>> +
>> +NATIVE_INSTALL_WORKS = "1"
>> --
>> 1.6.3.3
>>
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-09-07  6:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-06 12:48 [PATCH] uicmoc-native_2.3.10.bb: converted to new style staging Fahad Usman
2010-09-07  5:55 ` Fahad
2010-09-07  6:05 ` Khem Raj
2010-09-07  6:49   ` Frans Meulenbroeks

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.