All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES
@ 2013-01-21 23:17 Khem Raj
  2013-01-21 23:17 ` [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment Khem Raj
  2013-02-27 17:04 ` [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES Autif Khan
  0 siblings, 2 replies; 5+ messages in thread
From: Khem Raj @ 2013-01-21 23:17 UTC (permalink / raw)
  To: yocto, autif.mlist

Fixes parsing errors which is appearing after this commit to
meta-openembedded

http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f

This triggers
exception NameError: name 'base_contains' is not defined
without this change

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 conf/layer.conf |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/layer.conf b/conf/layer.conf
index 6bcf70e..d8cc797 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -1,8 +1,8 @@
 # We have a conf and classes directory, add to BBPATH
-BBPATH := "${BBPATH}:${LAYERDIR}"
+BBPATH .= ":${LAYERDIR}"
 
 # We have a recipes directory, add to BBFILES
-BBFILES := "${BBFILES} ${LAYERDIR}/recipes-mono/*/*.bb \
+BBFILES += "${LAYERDIR}/recipes-mono/*/*.bb \
             ${LAYERDIR}/recipes-mono/*/*.bbappend"
 
 BBFILE_COLLECTIONS += "mono"
-- 
1.7.9.5



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

* [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment
  2013-01-21 23:17 [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES Khem Raj
@ 2013-01-21 23:17 ` Khem Raj
  2013-02-27 17:05   ` Autif Khan
  2013-02-27 17:04 ` [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES Autif Khan
  1 sibling, 1 reply; 5+ messages in thread
From: Khem Raj @ 2013-01-21 23:17 UTC (permalink / raw)
  To: yocto, autif.mlist

bitbake/master does not like it anymore

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../monotools-server/monotools-server_2.0.bb       |    2 --
 1 file changed, 2 deletions(-)

diff --git a/recipes-mono/monotools-server/monotools-server_2.0.bb b/recipes-mono/monotools-server/monotools-server_2.0.bb
index 551c586..ef738da 100644
--- a/recipes-mono/monotools-server/monotools-server_2.0.bb
+++ b/recipes-mono/monotools-server/monotools-server_2.0.bb
@@ -22,8 +22,6 @@ SRC_URI += " \
 	file://fix-pkglib_SCRIPTS.patch \
 	"
 
-#	file://Makefile-pkglib.patch \
-
 DEPENDS = "mono-xsp gtk-sharp"
 
 S = "${WORKDIR}/${PN}"
-- 
1.7.9.5



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

* Re: [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES
  2013-01-21 23:17 [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES Khem Raj
  2013-01-21 23:17 ` [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment Khem Raj
@ 2013-02-27 17:04 ` Autif Khan
  1 sibling, 0 replies; 5+ messages in thread
From: Autif Khan @ 2013-02-27 17:04 UTC (permalink / raw)
  To: Khem Raj; +Cc: yocto

On Mon, Jan 21, 2013 at 6:17 PM, Khem Raj <raj.khem@gmail.com> wrote:
> Fixes parsing errors which is appearing after this commit to
> meta-openembedded
>
> http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648f
>
> This triggers
> exception NameError: name 'base_contains' is not defined
> without this change
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  conf/layer.conf |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/conf/layer.conf b/conf/layer.conf
> index 6bcf70e..d8cc797 100644
> --- a/conf/layer.conf
> +++ b/conf/layer.conf
> @@ -1,8 +1,8 @@
>  # We have a conf and classes directory, add to BBPATH
> -BBPATH := "${BBPATH}:${LAYERDIR}"
> +BBPATH .= ":${LAYERDIR}"
>
>  # We have a recipes directory, add to BBFILES
> -BBFILES := "${BBFILES} ${LAYERDIR}/recipes-mono/*/*.bb \
> +BBFILES += "${LAYERDIR}/recipes-mono/*/*.bb \
>              ${LAYERDIR}/recipes-mono/*/*.bbappend"
>
>  BBFILE_COLLECTIONS += "mono"
> --
> 1.7.9.5
>

Merged into master

Apologies for late merge - somehow this got lost because of bad email
filtering on my part.


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

* Re: [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment
  2013-01-21 23:17 ` [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment Khem Raj
@ 2013-02-27 17:05   ` Autif Khan
  2013-02-27 18:44     ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Autif Khan @ 2013-02-27 17:05 UTC (permalink / raw)
  To: Khem Raj; +Cc: yocto

On Mon, Jan 21, 2013 at 6:17 PM, Khem Raj <raj.khem@gmail.com> wrote:
> bitbake/master does not like it anymore
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  .../monotools-server/monotools-server_2.0.bb       |    2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/recipes-mono/monotools-server/monotools-server_2.0.bb b/recipes-mono/monotools-server/monotools-server_2.0.bb
> index 551c586..ef738da 100644
> --- a/recipes-mono/monotools-server/monotools-server_2.0.bb
> +++ b/recipes-mono/monotools-server/monotools-server_2.0.bb
> @@ -22,8 +22,6 @@ SRC_URI += " \
>         file://fix-pkglib_SCRIPTS.patch \
>         "
>
> -#      file://Makefile-pkglib.patch \
> -
>  DEPENDS = "mono-xsp gtk-sharp"
>
>  S = "${WORKDIR}/${PN}"
> --
> 1.7.9.5
>

Merged into master

Apologies for late merge - somehow this got lost because of bad email
filtering on my part.


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

* Re: [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment
  2013-02-27 17:05   ` Autif Khan
@ 2013-02-27 18:44     ` Khem Raj
  0 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2013-02-27 18:44 UTC (permalink / raw)
  To: Autif Khan; +Cc: yocto

On Wed, Feb 27, 2013 at 9:05 AM, Autif Khan <autif.mlist@gmail.com> wrote:
> On Mon, Jan 21, 2013 at 6:17 PM, Khem Raj <raj.khem@gmail.com> wrote:
>> bitbake/master does not like it anymore
>>
>> Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> ---
>>  .../monotools-server/monotools-server_2.0.bb       |    2 --
>>  1 file changed, 2 deletions(-)
>>
>> diff --git a/recipes-mono/monotools-server/monotools-server_2.0.bb b/recipes-mono/monotools-server/monotools-server_2.0.bb
>> index 551c586..ef738da 100644
>> --- a/recipes-mono/monotools-server/monotools-server_2.0.bb
>> +++ b/recipes-mono/monotools-server/monotools-server_2.0.bb
>> @@ -22,8 +22,6 @@ SRC_URI += " \
>>         file://fix-pkglib_SCRIPTS.patch \
>>         "
>>
>> -#      file://Makefile-pkglib.patch \
>> -
>>  DEPENDS = "mono-xsp gtk-sharp"
>>
>>  S = "${WORKDIR}/${PN}"
>> --
>> 1.7.9.5
>>
>
> Merged into master
>
> Apologies for late merge - somehow this got lost because of bad email
> filtering on my part.

you need to update your maintainer email in README. Secondly we have a policy
for marking layers maintained in ecosystem if maintainers dont respond
in timely fashion its hard to keep layers marked as maintained.


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

end of thread, other threads:[~2013-02-27 18:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-21 23:17 [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES Khem Raj
2013-01-21 23:17 ` [meta-mono][PATCH 2/2] monotools-server: Remove multiline comment Khem Raj
2013-02-27 17:05   ` Autif Khan
2013-02-27 18:44     ` Khem Raj
2013-02-27 17:04 ` [meta-mono][PATCH 1/2] layer.conf: Use .= for adding to BBPATH and += to BBFILES Autif Khan

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.