All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scriptutils: fix style to be more PEP8 compliant
@ 2022-04-14 11:40 Marius Kriegerowski
  2022-04-14 15:08 ` [bitbake-devel] " Luca Ceresoli
  0 siblings, 1 reply; 8+ messages in thread
From: Marius Kriegerowski @ 2022-04-14 11:40 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Marius Kriegerowski

Signed-off-by: Marius Kriegerowski <marius.kriegerowski@gmail.com>
---
 scripts/lib/scriptutils.py | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py
index adf81476f0..b265b5c838 100644
--- a/scripts/lib/scriptutils.py
+++ b/scripts/lib/scriptutils.py
@@ -5,7 +5,6 @@
 # SPDX-License-Identifier: GPL-2.0-only
 #
 
-import argparse
 import glob
 import logging
 import os
@@ -21,11 +20,12 @@ import importlib
 import importlib.machinery
 import importlib.util
 
+
 class KeepAliveStreamHandler(logging.StreamHandler):
     def __init__(self, keepalive=True, **kwargs):
         super().__init__(**kwargs)
         if keepalive is True:
-            keepalive = 5000 # default timeout
+            keepalive = 5000  # default timeout
         self._timeout = threading.Condition()
         self._stop = False
 
@@ -36,9 +36,9 @@ class KeepAliveStreamHandler(logging.StreamHandler):
                 with self._timeout:
                     if not self._timeout.wait(keepalive):
                         self.emit(logging.LogRecord("keepalive", logging.INFO,
-                            None, None, "Keepalive message", None, None))
+                                                    None, None, "Keepalive message", None, None))
 
-        self._thread = threading.Thread(target = thread, daemon = True)
+        self._thread = threading.Thread(target=thread, daemon=True)
         self._thread.start()
 
     def close(self):
@@ -56,6 +56,7 @@ class KeepAliveStreamHandler(logging.StreamHandler):
         with self._timeout:
             self._timeout.notify()
 
+
 def logger_create(name, stream=None, keepalive=None):
     logger = logging.getLogger(name)
     if keepalive is not None:
@@ -67,21 +68,21 @@ def logger_create(name, stream=None, keepalive=None):
     logger.setLevel(logging.INFO)
     return logger
 
+
 def logger_setup_color(logger, color='auto'):
     from bb.msg import BBLogFormatter
 
     for handler in logger.handlers:
         if (isinstance(handler, logging.StreamHandler) and
-            isinstance(handler.formatter, BBLogFormatter)):
+                isinstance(handler.formatter, BBLogFormatter)):
             if color == 'always' or (color == 'auto' and handler.stream.isatty()):
                 handler.formatter.enable_color()
 
 
 def load_plugins(logger, plugins, pluginpath):
-
     def load_plugin(name):
         logger.debug('Loading plugin %s' % name)
-        spec = importlib.machinery.PathFinder.find_spec(name, path=[pluginpath] )
+        spec = importlib.machinery.PathFinder.find_spec(name, path=[pluginpath])
         if spec:
             mod = importlib.util.module_from_spec(spec)
             spec.loader.exec_module(mod)
@@ -112,6 +113,7 @@ def git_convert_standalone_clone(repodir):
             bb.process.run('git repack -a', cwd=repodir)
             os.remove(alternatesfile)
 
+
 def _get_temp_recipe_dir(d):
     # This is a little bit hacky but we need to find a place where we can put
     # the recipe so that bitbake can find it. We're going to delete it at the
@@ -128,12 +130,15 @@ def _get_temp_recipe_dir(d):
                     break
     return fetchrecipedir
 
+
 class FetchUrlFailure(Exception):
     def __init__(self, url):
         self.url = url
+
     def __str__(self):
         return "Failed to fetch URL %s" % self.url
 
+
 def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False, mirrors=False):
     """
     Fetch the specified URL using normal do_fetch and do_unpack tasks, i.e.
@@ -254,12 +259,13 @@ def run_editor(fn, logger=None):
 
     editor = os.getenv('VISUAL', os.getenv('EDITOR', 'vi'))
     try:
-        #print(shlex.split(editor) + files)
+        # print(shlex.split(editor) + files)
         return subprocess.check_call(shlex.split(editor) + files)
     except subprocess.CalledProcessError as exc:
         logger.error("Execution of '%s' failed: %s" % (editor, exc))
         return 1
 
+
 def is_src_url(param):
     """
     Check if a parameter is a URL and return True if so
@@ -273,6 +279,7 @@ def is_src_url(param):
         return True
     return False
 
+
 def filter_src_subdirs(pth):
     """
     Filter out subdirectories of initial unpacked source trees that we do not care about.
-- 
2.32.0 (Apple Git-132)



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

* Re: [bitbake-devel] [PATCH] scriptutils: fix style to be more PEP8 compliant
  2022-04-14 11:40 [PATCH] scriptutils: fix style to be more PEP8 compliant Marius Kriegerowski
@ 2022-04-14 15:08 ` Luca Ceresoli
  2022-04-14 18:21   ` Marius Kriegerowski
  0 siblings, 1 reply; 8+ messages in thread
From: Luca Ceresoli @ 2022-04-14 15:08 UTC (permalink / raw)
  To: Marius Kriegerowski; +Cc: bitbake-devel

Hi Marius,

Il giorno Thu, 14 Apr 2022 13:40:09 +0200
"Marius Kriegerowski" <marius.kriegerowski@gmail.com> ha scritto:

> Signed-off-by: Marius Kriegerowski <marius.kriegerowski@gmail.com>
> ---
>  scripts/lib/scriptutils.py | 23 +++++++++++++++--------

This file does not exist in bitbake. This is why it does not apply.

I think this patch is against oe-core, so you should send it to
openembedded-core@lists.openembedded.org instead.

Best regards
-- 
Luca Ceresoli, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

* Re: [bitbake-devel] [PATCH] scriptutils: fix style to be more PEP8 compliant
  2022-04-14 15:08 ` [bitbake-devel] " Luca Ceresoli
@ 2022-04-14 18:21   ` Marius Kriegerowski
  2022-04-15  5:00     ` Mittal, Anuj
  0 siblings, 1 reply; 8+ messages in thread
From: Marius Kriegerowski @ 2022-04-14 18:21 UTC (permalink / raw)
  To: Luca Ceresoli; +Cc: bitbake-devel

[-- Attachment #1: Type: text/plain, Size: 1347 bytes --]

Dear Lica,

Thanks for the clarification! Phew, if only there was a repository where I could open a merge request just as I’m used to… ;)

Anyway, so just for me to get this right in the future: There is one repository named poky (https://git.yoctoproject.org/poky <https://git.yoctoproject.org/poky>). If I patch something in the bitbake subdirectory, I send that patch to bitbake-devel. If I patch something in the any other subdirectory I send a patch to openembedded-core?
Is there a place where all that info is aggregated like a table with left column repo/directory and right column mailing list?

Thanks for your hints in advance!

Marius





> On 14. Apr 2022, at 17:08, Luca Ceresoli <luca.ceresoli@bootlin.com> wrote:
> 
> Hi Marius,
> 
> Il giorno Thu, 14 Apr 2022 13:40:09 +0200
> "Marius Kriegerowski" <marius.kriegerowski@gmail.com> ha scritto:
> 
>> Signed-off-by: Marius Kriegerowski <marius.kriegerowski@gmail.com>
>> ---
>> scripts/lib/scriptutils.py | 23 +++++++++++++++--------
> 
> This file does not exist in bitbake. This is why it does not apply.
> 
> I think this patch is against oe-core, so you should send it to
> openembedded-core@lists.openembedded.org instead.
> 
> Best regards
> -- 
> Luca Ceresoli, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com


[-- Attachment #2: Type: text/html, Size: 2619 bytes --]

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

* Re: [bitbake-devel] [PATCH] scriptutils: fix style to be more PEP8 compliant
  2022-04-14 18:21   ` Marius Kriegerowski
@ 2022-04-15  5:00     ` Mittal, Anuj
  2022-04-15 11:41       ` Marius Kriegerowski
  0 siblings, 1 reply; 8+ messages in thread
From: Mittal, Anuj @ 2022-04-15  5:00 UTC (permalink / raw)
  To: luca.ceresoli, marius.kriegerowski; +Cc: bitbake-devel

On Thu, 2022-04-14 at 20:21 +0200, Marius Kriegerowski wrote:
> 
> Thanks for the clarification! Phew, if only there was a repository
> where I could open a merge request just as I’m used to… ;)
> 
> Anyway, so just for me to get this right in the future: There is one
> repository named poky (https://git.yoctoproject.org/poky). If I patch
> something in the bitbake subdirectory, I send that patch to bitbake-
> devel. If I patch something in the any other subdirectory I send a
> patch to openembedded-core?
> Is there a place where all that info is aggregated like a table with
> left column repo/directory and right column mailing list?

Its explained here:

https://git.yoctoproject.org/poky/tree/meta-poky/README.poky.md

Thanks,

Anuj


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

* Re: [bitbake-devel] [PATCH] scriptutils: fix style to be more PEP8 compliant
  2022-04-15  5:00     ` Mittal, Anuj
@ 2022-04-15 11:41       ` Marius Kriegerowski
  0 siblings, 0 replies; 8+ messages in thread
From: Marius Kriegerowski @ 2022-04-15 11:41 UTC (permalink / raw)
  To: Mittal, Anuj; +Cc: luca.ceresoli, bitbake-devel

[-- Attachment #1: Type: text/plain, Size: 1539 bytes --]

Dear Anuj,

Thanks! That helped. I went through this document https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded <https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded>

But I think the document you sent, especially the “Where to Send Patches” is way more explicit and straight forward to follow than the “Subscribe to the mailing list” section. I think it would be helpful especially for first committers to either have that linked or integrated into the “How to submit a patch to OpenEmbedded” document.

Best regards

Marius


PS.: @Luca, sorry for the typo in your name in my last email :)

> On 15. Apr 2022, at 07:00, Mittal, Anuj <anuj.mittal@intel.com> wrote:
> 
> On Thu, 2022-04-14 at 20:21 +0200, Marius Kriegerowski wrote:
>> 
>> Thanks for the clarification! Phew, if only there was a repository
>> where I could open a merge request just as I’m used to… ;)
>> 
>> Anyway, so just for me to get this right in the future: There is one
>> repository named poky (https://git.yoctoproject.org/poky). If I patch
>> something in the bitbake subdirectory, I send that patch to bitbake-
>> devel. If I patch something in the any other subdirectory I send a
>> patch to openembedded-core?
>> Is there a place where all that info is aggregated like a table with
>> left column repo/directory and right column mailing list?
> 
> Its explained here:
> 
> https://git.yoctoproject.org/poky/tree/meta-poky/README.poky.md
> 
> Thanks,
> 
> Anuj
> 


[-- Attachment #2: Type: text/html, Size: 2652 bytes --]

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

* Re: [bitbake-devel] [PATCH] scriptutils: fix style to be more PEP8 compliant
  2022-04-14 11:43   ` Marius Kriegerowski
@ 2022-04-14 12:29     ` Quentin Schulz
  0 siblings, 0 replies; 8+ messages in thread
From: Quentin Schulz @ 2022-04-14 12:29 UTC (permalink / raw)
  To: Marius Kriegerowski, Alexandre Belloni; +Cc: bitbake-devel

Hi Marius,

On 4/14/22 13:43, Marius Kriegerowski wrote:
> Hi,
> Thanks for the reply. I rebased on master and just resent the patch. I think this procedure created a new email thread and didn’t attach to this one.
> Not sure if this is the way it’s supposed to be.

That's how it's supposed to be :) However you should have added v2 in 
the patch series (git format-patch -v 2 or git send-email -v2 I think?). 
I'll let maintainers decide but there may not be a need to resend a v2 
for this one here (it'd be "spamming" the mailing list).

Cheers,
Quentin


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

* Re: [bitbake-devel] [PATCH] scriptutils: fix style to be more PEP8 compliant
  2022-04-14  9:12 ` [bitbake-devel] " Alexandre Belloni
@ 2022-04-14 11:43   ` Marius Kriegerowski
  2022-04-14 12:29     ` Quentin Schulz
  0 siblings, 1 reply; 8+ messages in thread
From: Marius Kriegerowski @ 2022-04-14 11:43 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: bitbake-devel

Hi,
Thanks for the reply. I rebased on master and just resent the patch. I think this procedure created a new email thread and didn’t attach to this one.
Not sure if this is the way it’s supposed to be.
Sorry for the inconvenience
Best

Marius

 

> On 14. Apr 2022, at 11:12, Alexandre Belloni <alexandre.belloni@bootlin.com> wrote:
> 
> Hello,
> 
> This doesn't apply on master, can you rebase?
> 
> Thanks!
> 
> On 13/04/2022 16:19:22+0200, Marius Kriegerowski wrote:
>> Signed-off-by: Marius Kriegerowski <marius.kriegerowski@gmail.com>
>> ---
>> scripts/lib/scriptutils.py | 23 +++++++++++++++--------
>> 1 file changed, 15 insertions(+), 8 deletions(-)
>> 
>> diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py
>> index adf81476f0..b265b5c838 100644
>> --- a/scripts/lib/scriptutils.py
>> +++ b/scripts/lib/scriptutils.py
>> @@ -5,7 +5,6 @@
>> # SPDX-License-Identifier: GPL-2.0-only
>> #
>> 
>> -import argparse
>> import glob
>> import logging
>> import os
>> @@ -21,11 +20,12 @@ import importlib
>> import importlib.machinery
>> import importlib.util
>> 
>> +
>> class KeepAliveStreamHandler(logging.StreamHandler):
>>     def __init__(self, keepalive=True, **kwargs):
>>         super().__init__(**kwargs)
>>         if keepalive is True:
>> -            keepalive = 5000 # default timeout
>> +            keepalive = 5000  # default timeout
>>         self._timeout = threading.Condition()
>>         self._stop = False
>> 
>> @@ -36,9 +36,9 @@ class KeepAliveStreamHandler(logging.StreamHandler):
>>                 with self._timeout:
>>                     if not self._timeout.wait(keepalive):
>>                         self.emit(logging.LogRecord("keepalive", logging.INFO,
>> -                            None, None, "Keepalive message", None, None))
>> +                                                    None, None, "Keepalive message", None, None))
>> 
>> -        self._thread = threading.Thread(target = thread, daemon = True)
>> +        self._thread = threading.Thread(target=thread, daemon=True)
>>         self._thread.start()
>> 
>>     def close(self):
>> @@ -56,6 +56,7 @@ class KeepAliveStreamHandler(logging.StreamHandler):
>>         with self._timeout:
>>             self._timeout.notify()
>> 
>> +
>> def logger_create(name, stream=None, keepalive=None):
>>     logger = logging.getLogger(name)
>>     if keepalive is not None:
>> @@ -67,21 +68,21 @@ def logger_create(name, stream=None, keepalive=None):
>>     logger.setLevel(logging.INFO)
>>     return logger
>> 
>> +
>> def logger_setup_color(logger, color='auto'):
>>     from bb.msg import BBLogFormatter
>> 
>>     for handler in logger.handlers:
>>         if (isinstance(handler, logging.StreamHandler) and
>> -            isinstance(handler.formatter, BBLogFormatter)):
>> +                isinstance(handler.formatter, BBLogFormatter)):
>>             if color == 'always' or (color == 'auto' and handler.stream.isatty()):
>>                 handler.formatter.enable_color()
>> 
>> 
>> def load_plugins(logger, plugins, pluginpath):
>> -
>>     def load_plugin(name):
>>         logger.debug('Loading plugin %s' % name)
>> -        spec = importlib.machinery.PathFinder.find_spec(name, path=[pluginpath] )
>> +        spec = importlib.machinery.PathFinder.find_spec(name, path=[pluginpath])
>>         if spec:
>>             mod = importlib.util.module_from_spec(spec)
>>             spec.loader.exec_module(mod)
>> @@ -112,6 +113,7 @@ def git_convert_standalone_clone(repodir):
>>             bb.process.run('git repack -a', cwd=repodir)
>>             os.remove(alternatesfile)
>> 
>> +
>> def _get_temp_recipe_dir(d):
>>     # This is a little bit hacky but we need to find a place where we can put
>>     # the recipe so that bitbake can find it. We're going to delete it at the
>> @@ -128,12 +130,15 @@ def _get_temp_recipe_dir(d):
>>                     break
>>     return fetchrecipedir
>> 
>> +
>> class FetchUrlFailure(Exception):
>>     def __init__(self, url):
>>         self.url = url
>> +
>>     def __str__(self):
>>         return "Failed to fetch URL %s" % self.url
>> 
>> +
>> def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False, mirrors=False):
>>     """
>>     Fetch the specified URL using normal do_fetch and do_unpack tasks, i.e.
>> @@ -254,12 +259,13 @@ def run_editor(fn, logger=None):
>> 
>>     editor = os.getenv('VISUAL', os.getenv('EDITOR', 'vi'))
>>     try:
>> -        #print(shlex.split(editor) + files)
>> +        # print(shlex.split(editor) + files)
>>         return subprocess.check_call(shlex.split(editor) + files)
>>     except subprocess.CalledProcessError as exc:
>>         logger.error("Execution of '%s' failed: %s" % (editor, exc))
>>         return 1
>> 
>> +
>> def is_src_url(param):
>>     """
>>     Check if a parameter is a URL and return True if so
>> @@ -273,6 +279,7 @@ def is_src_url(param):
>>         return True
>>     return False
>> 
>> +
>> def filter_src_subdirs(pth):
>>     """
>>     Filter out subdirectories of initial unpacked source trees that we do not care about.
>> -- 
>> 2.32.0 (Apple Git-132)
>> 
> 
>> 
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#13613): https://lists.openembedded.org/g/bitbake-devel/message/13613
>> Mute This Topic: https://lists.openembedded.org/mt/90441542/3617179
>> Group Owner: bitbake-devel+owner@lists.openembedded.org
>> Unsubscribe: https://lists.openembedded.org/g/bitbake-devel/unsub [alexandre.belloni@bootlin.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>> 
> 
> 
> -- 
> Alexandre Belloni, co-owner and COO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com



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

* Re: [bitbake-devel] [PATCH] scriptutils: fix style to be more PEP8 compliant
  2022-04-13 14:19 Marius Kriegerowski
@ 2022-04-14  9:12 ` Alexandre Belloni
  2022-04-14 11:43   ` Marius Kriegerowski
  0 siblings, 1 reply; 8+ messages in thread
From: Alexandre Belloni @ 2022-04-14  9:12 UTC (permalink / raw)
  To: Marius Kriegerowski; +Cc: bitbake-devel

Hello,

This doesn't apply on master, can you rebase?

Thanks!

On 13/04/2022 16:19:22+0200, Marius Kriegerowski wrote:
> Signed-off-by: Marius Kriegerowski <marius.kriegerowski@gmail.com>
> ---
>  scripts/lib/scriptutils.py | 23 +++++++++++++++--------
>  1 file changed, 15 insertions(+), 8 deletions(-)
> 
> diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py
> index adf81476f0..b265b5c838 100644
> --- a/scripts/lib/scriptutils.py
> +++ b/scripts/lib/scriptutils.py
> @@ -5,7 +5,6 @@
>  # SPDX-License-Identifier: GPL-2.0-only
>  #
>  
> -import argparse
>  import glob
>  import logging
>  import os
> @@ -21,11 +20,12 @@ import importlib
>  import importlib.machinery
>  import importlib.util
>  
> +
>  class KeepAliveStreamHandler(logging.StreamHandler):
>      def __init__(self, keepalive=True, **kwargs):
>          super().__init__(**kwargs)
>          if keepalive is True:
> -            keepalive = 5000 # default timeout
> +            keepalive = 5000  # default timeout
>          self._timeout = threading.Condition()
>          self._stop = False
>  
> @@ -36,9 +36,9 @@ class KeepAliveStreamHandler(logging.StreamHandler):
>                  with self._timeout:
>                      if not self._timeout.wait(keepalive):
>                          self.emit(logging.LogRecord("keepalive", logging.INFO,
> -                            None, None, "Keepalive message", None, None))
> +                                                    None, None, "Keepalive message", None, None))
>  
> -        self._thread = threading.Thread(target = thread, daemon = True)
> +        self._thread = threading.Thread(target=thread, daemon=True)
>          self._thread.start()
>  
>      def close(self):
> @@ -56,6 +56,7 @@ class KeepAliveStreamHandler(logging.StreamHandler):
>          with self._timeout:
>              self._timeout.notify()
>  
> +
>  def logger_create(name, stream=None, keepalive=None):
>      logger = logging.getLogger(name)
>      if keepalive is not None:
> @@ -67,21 +68,21 @@ def logger_create(name, stream=None, keepalive=None):
>      logger.setLevel(logging.INFO)
>      return logger
>  
> +
>  def logger_setup_color(logger, color='auto'):
>      from bb.msg import BBLogFormatter
>  
>      for handler in logger.handlers:
>          if (isinstance(handler, logging.StreamHandler) and
> -            isinstance(handler.formatter, BBLogFormatter)):
> +                isinstance(handler.formatter, BBLogFormatter)):
>              if color == 'always' or (color == 'auto' and handler.stream.isatty()):
>                  handler.formatter.enable_color()
>  
>  
>  def load_plugins(logger, plugins, pluginpath):
> -
>      def load_plugin(name):
>          logger.debug('Loading plugin %s' % name)
> -        spec = importlib.machinery.PathFinder.find_spec(name, path=[pluginpath] )
> +        spec = importlib.machinery.PathFinder.find_spec(name, path=[pluginpath])
>          if spec:
>              mod = importlib.util.module_from_spec(spec)
>              spec.loader.exec_module(mod)
> @@ -112,6 +113,7 @@ def git_convert_standalone_clone(repodir):
>              bb.process.run('git repack -a', cwd=repodir)
>              os.remove(alternatesfile)
>  
> +
>  def _get_temp_recipe_dir(d):
>      # This is a little bit hacky but we need to find a place where we can put
>      # the recipe so that bitbake can find it. We're going to delete it at the
> @@ -128,12 +130,15 @@ def _get_temp_recipe_dir(d):
>                      break
>      return fetchrecipedir
>  
> +
>  class FetchUrlFailure(Exception):
>      def __init__(self, url):
>          self.url = url
> +
>      def __str__(self):
>          return "Failed to fetch URL %s" % self.url
>  
> +
>  def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False, mirrors=False):
>      """
>      Fetch the specified URL using normal do_fetch and do_unpack tasks, i.e.
> @@ -254,12 +259,13 @@ def run_editor(fn, logger=None):
>  
>      editor = os.getenv('VISUAL', os.getenv('EDITOR', 'vi'))
>      try:
> -        #print(shlex.split(editor) + files)
> +        # print(shlex.split(editor) + files)
>          return subprocess.check_call(shlex.split(editor) + files)
>      except subprocess.CalledProcessError as exc:
>          logger.error("Execution of '%s' failed: %s" % (editor, exc))
>          return 1
>  
> +
>  def is_src_url(param):
>      """
>      Check if a parameter is a URL and return True if so
> @@ -273,6 +279,7 @@ def is_src_url(param):
>          return True
>      return False
>  
> +
>  def filter_src_subdirs(pth):
>      """
>      Filter out subdirectories of initial unpacked source trees that we do not care about.
> -- 
> 2.32.0 (Apple Git-132)
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#13613): https://lists.openembedded.org/g/bitbake-devel/message/13613
> Mute This Topic: https://lists.openembedded.org/mt/90441542/3617179
> Group Owner: bitbake-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/bitbake-devel/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

end of thread, other threads:[~2022-04-18 14:26 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-14 11:40 [PATCH] scriptutils: fix style to be more PEP8 compliant Marius Kriegerowski
2022-04-14 15:08 ` [bitbake-devel] " Luca Ceresoli
2022-04-14 18:21   ` Marius Kriegerowski
2022-04-15  5:00     ` Mittal, Anuj
2022-04-15 11:41       ` Marius Kriegerowski
  -- strict thread matches above, loose matches on Subject: below --
2022-04-13 14:19 Marius Kriegerowski
2022-04-14  9:12 ` [bitbake-devel] " Alexandre Belloni
2022-04-14 11:43   ` Marius Kriegerowski
2022-04-14 12:29     ` Quentin Schulz

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.