Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH v2] scripts/combo-layer: a simple way to script the combo-layer conf
@ 2011-08-10  5:09 Leandro Dorileo
  2011-08-10  8:29 ` Yu Ke
  2011-08-11 21:29 ` Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Leandro Dorileo @ 2011-08-10  5:09 UTC (permalink / raw)
  To: openembedded-core; +Cc: Leandro Dorileo

This small patch introduces a a very simple and basic way to script
the combo-layer conf file. With that a combo can be shared with no
need to change its config - associated to the use of environment
variables for example.

*Similar* to bitbake it considers every value starting with @ to be
a python script. So local_repo could be easily configured as:

[bitbake]
local_repo = @os.getenv("LOCAL_REPO_DIR") + "/bitbake"

or any more sophisticated python syntax.

This version updates the config file description so users can be
aware of.

Signed-off-by: Leandro Dorileo <ldorileo@gmail.com>
---
 scripts/combo-layer |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/scripts/combo-layer b/scripts/combo-layer
index d129175..07b3382 100755
--- a/scripts/combo-layer
+++ b/scripts/combo-layer
@@ -79,6 +79,14 @@ local_repo_dir = ~/src/oecore
 dest_dir = .
 last_revision =
 
+# it's also possible to embed python code in the config values. Similar
+# to bitbake it considers every value starting with @ to be a python script. 
+# So local_repo could be easily configured using an environment variable as:
+#
+# [bitbake]
+# local_repo = @os.getenv("LOCAL_REPO_DIR") + "/bitbake"
+#
+
 # more components ...
 
     """
@@ -91,7 +99,10 @@ last_revision =
         for repo in self.parser.sections():
             self.repos[repo] = {}
             for (name, value) in self.parser.items(repo):
-                self.repos[repo][name] = value
+                if value.startswith("@"):
+                    self.repos[repo][name] = eval(value.strip("@"))
+                else:
+                    self.repos[repo][name] = value
 
     def update(self, repo, option, value):
         self.parser.set(repo, option, value)
-- 
1.7.4.4




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

* Re: [PATCH v2] scripts/combo-layer: a simple way to script the combo-layer conf
  2011-08-10  5:09 [PATCH v2] scripts/combo-layer: a simple way to script the combo-layer conf Leandro Dorileo
@ 2011-08-10  8:29 ` Yu Ke
  2011-08-11 21:29 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Yu Ke @ 2011-08-10  8:29 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Leandro Dorileo

Acked-by: Yu Ke <ke.yu@intel.com>

on 2011-8-10 13:09, Leandro Dorileo wrote:
> This small patch introduces a a very simple and basic way to script
> the combo-layer conf file. With that a combo can be shared with no
> need to change its config - associated to the use of environment
> variables for example.
>
> *Similar* to bitbake it considers every value starting with @ to be
> a python script. So local_repo could be easily configured as:
>
> [bitbake]
> local_repo = @os.getenv("LOCAL_REPO_DIR") + "/bitbake"
>
> or any more sophisticated python syntax.
>
> This version updates the config file description so users can be
> aware of.
>
> Signed-off-by: Leandro Dorileo<ldorileo@gmail.com>
> ---
>   scripts/combo-layer |   13 ++++++++++++-
>   1 files changed, 12 insertions(+), 1 deletions(-)
>
> diff --git a/scripts/combo-layer b/scripts/combo-layer
> index d129175..07b3382 100755
> --- a/scripts/combo-layer
> +++ b/scripts/combo-layer
> @@ -79,6 +79,14 @@ local_repo_dir = ~/src/oecore
>   dest_dir = .
>   last_revision =
>
> +# it's also possible to embed python code in the config values. Similar
> +# to bitbake it considers every value starting with @ to be a python script.
> +# So local_repo could be easily configured using an environment variable as:
> +#
> +# [bitbake]
> +# local_repo = @os.getenv("LOCAL_REPO_DIR") + "/bitbake"
> +#
> +
>   # more components ...
>
>       """
> @@ -91,7 +99,10 @@ last_revision =
>           for repo in self.parser.sections():
>               self.repos[repo] = {}
>               for (name, value) in self.parser.items(repo):
> -                self.repos[repo][name] = value
> +                if value.startswith("@"):
> +                    self.repos[repo][name] = eval(value.strip("@"))
> +                else:
> +                    self.repos[repo][name] = value
>
>       def update(self, repo, option, value):
>           self.parser.set(repo, option, value)




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

* Re: [PATCH v2] scripts/combo-layer: a simple way to script the combo-layer conf
  2011-08-10  5:09 [PATCH v2] scripts/combo-layer: a simple way to script the combo-layer conf Leandro Dorileo
  2011-08-10  8:29 ` Yu Ke
@ 2011-08-11 21:29 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2011-08-11 21:29 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Leandro Dorileo

On 08/09/2011 10:09 PM, Leandro Dorileo wrote:
> This small patch introduces a a very simple and basic way to script
> the combo-layer conf file. With that a combo can be shared with no
> need to change its config - associated to the use of environment
> variables for example.
>
> *Similar* to bitbake it considers every value starting with @ to be
> a python script. So local_repo could be easily configured as:
>
> [bitbake]
> local_repo = @os.getenv("LOCAL_REPO_DIR") + "/bitbake"
>
> or any more sophisticated python syntax.
>
> This version updates the config file description so users can be
> aware of.
>
> Signed-off-by: Leandro Dorileo<ldorileo@gmail.com>
> ---
>   scripts/combo-layer |   13 ++++++++++++-
>   1 files changed, 12 insertions(+), 1 deletions(-)
>
> diff --git a/scripts/combo-layer b/scripts/combo-layer
> index d129175..07b3382 100755
> --- a/scripts/combo-layer
> +++ b/scripts/combo-layer
> @@ -79,6 +79,14 @@ local_repo_dir = ~/src/oecore
>   dest_dir = .
>   last_revision =
>
> +# it's also possible to embed python code in the config values. Similar
> +# to bitbake it considers every value starting with @ to be a python script.
> +# So local_repo could be easily configured using an environment variable as:
> +#
> +# [bitbake]
> +# local_repo = @os.getenv("LOCAL_REPO_DIR") + "/bitbake"
> +#
> +
>   # more components ...
>
>       """
> @@ -91,7 +99,10 @@ last_revision =
>           for repo in self.parser.sections():
>               self.repos[repo] = {}
>               for (name, value) in self.parser.items(repo):
> -                self.repos[repo][name] = value
> +                if value.startswith("@"):
> +                    self.repos[repo][name] = eval(value.strip("@"))
> +                else:
> +                    self.repos[repo][name] = value
>
>       def update(self, repo, option, value):
>           self.parser.set(repo, option, value)

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2011-08-11 21:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-10  5:09 [PATCH v2] scripts/combo-layer: a simple way to script the combo-layer conf Leandro Dorileo
2011-08-10  8:29 ` Yu Ke
2011-08-11 21:29 ` Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox