All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] package_manager: add help packages based on languages selected in IMAGE_LINGUAS
@ 2019-05-23 12:29 Andreas Müller
  2019-05-23 12:39 ` Burton, Ross
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Müller @ 2019-05-23 12:29 UTC (permalink / raw)
  To: openembedded-core

This is the one-line mentioned in [1].

[1] http://lists.openembedded.org/pipermail/openembedded-devel/2019-May/199769.html

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta/lib/oe/package_manager.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 2835c1ddf8..bd2432f6d3 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -566,6 +566,7 @@ class PackageManager(object, metaclass=ABCMeta):
 
             for lang in split_linguas:
                 globs += " *-locale-%s" % lang
+                globs += " *-help-%s" % lang
 
         if globs is None:
             return
-- 
2.20.1



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

* Re: [PATCH] package_manager: add help packages based on languages selected in IMAGE_LINGUAS
  2019-05-23 12:29 [PATCH] package_manager: add help packages based on languages selected in IMAGE_LINGUAS Andreas Müller
@ 2019-05-23 12:39 ` Burton, Ross
  2019-05-23 12:44   ` Andreas Müller
  2019-05-23 12:58   ` Mark Hatle
  0 siblings, 2 replies; 5+ messages in thread
From: Burton, Ross @ 2019-05-23 12:39 UTC (permalink / raw)
  To: Andreas Müller; +Cc: OE-core

Why -help- and not -doc?

Ross

On Thu, 23 May 2019 at 13:30, Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> This is the one-line mentioned in [1].
>
> [1] http://lists.openembedded.org/pipermail/openembedded-devel/2019-May/199769.html
>
> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> ---
>  meta/lib/oe/package_manager.py | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
> index 2835c1ddf8..bd2432f6d3 100644
> --- a/meta/lib/oe/package_manager.py
> +++ b/meta/lib/oe/package_manager.py
> @@ -566,6 +566,7 @@ class PackageManager(object, metaclass=ABCMeta):
>
>              for lang in split_linguas:
>                  globs += " *-locale-%s" % lang
> +                globs += " *-help-%s" % lang
>
>          if globs is None:
>              return
> --
> 2.20.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH] package_manager: add help packages based on languages selected in IMAGE_LINGUAS
  2019-05-23 12:39 ` Burton, Ross
@ 2019-05-23 12:44   ` Andreas Müller
  2019-05-23 13:41     ` Burton, Ross
  2019-05-23 12:58   ` Mark Hatle
  1 sibling, 1 reply; 5+ messages in thread
From: Andreas Müller @ 2019-05-23 12:44 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core

On Thu, May 23, 2019 at 2:39 PM Burton, Ross <ross.burton@intel.com> wrote:
>
> Why -help- and not -doc?
>
Because there are help files installed in 'help' directory and
displayed by a help browser.

Andreas


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

* Re: [PATCH] package_manager: add help packages based on languages selected in IMAGE_LINGUAS
  2019-05-23 12:39 ` Burton, Ross
  2019-05-23 12:44   ` Andreas Müller
@ 2019-05-23 12:58   ` Mark Hatle
  1 sibling, 0 replies; 5+ messages in thread
From: Mark Hatle @ 2019-05-23 12:58 UTC (permalink / raw)
  To: Burton, Ross, Andreas Müller; +Cc: OE-core

On 5/23/19 2:39 PM, Burton, Ross wrote:
> Why -help- and not -doc?

I was thinking it may make better sense to have a variable that DEFAULTS to
"*-locale-%s", but can be extended to have other locale based files.. Such as a
*-doc-%s, or *-man-%s, etc...

(We will -never- get all of the possible ones, unless they all have 'locale' in
the names or similar.)

--Mark

> Ross
> 
> On Thu, 23 May 2019 at 13:30, Andreas Müller <schnitzeltony@gmail.com> wrote:
>>
>> This is the one-line mentioned in [1].
>>
>> [1] http://lists.openembedded.org/pipermail/openembedded-devel/2019-May/199769.html
>>
>> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
>> ---
>>  meta/lib/oe/package_manager.py | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
>> index 2835c1ddf8..bd2432f6d3 100644
>> --- a/meta/lib/oe/package_manager.py
>> +++ b/meta/lib/oe/package_manager.py
>> @@ -566,6 +566,7 @@ class PackageManager(object, metaclass=ABCMeta):
>>
>>              for lang in split_linguas:
>>                  globs += " *-locale-%s" % lang
>> +                globs += " *-help-%s" % lang
>>
>>          if globs is None:
>>              return
>> --
>> 2.20.1
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core



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

* Re: [PATCH] package_manager: add help packages based on languages selected in IMAGE_LINGUAS
  2019-05-23 12:44   ` Andreas Müller
@ 2019-05-23 13:41     ` Burton, Ross
  0 siblings, 0 replies; 5+ messages in thread
From: Burton, Ross @ 2019-05-23 13:41 UTC (permalink / raw)
  To: Andreas Müller; +Cc: OE-core

On Thu, 23 May 2019 at 13:44, Andreas Müller <schnitzeltony@gmail.com> wrote:
> > Why -help- and not -doc?
> >
> Because there are help files installed in 'help' directory and
> displayed by a help browser.

Sounds a lot like documentation to me...


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

end of thread, other threads:[~2019-05-23 13:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-23 12:29 [PATCH] package_manager: add help packages based on languages selected in IMAGE_LINGUAS Andreas Müller
2019-05-23 12:39 ` Burton, Ross
2019-05-23 12:44   ` Andreas Müller
2019-05-23 13:41     ` Burton, Ross
2019-05-23 12:58   ` Mark Hatle

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.