<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/contrib, branch styhead-next</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=styhead-next</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=styhead-next'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2023-06-05T05:29:46+00:00</updated>
<entry>
<title>contrib: oe-stylize: Use Python3 explicitly</title>
<updated>2023-06-05T05:29:46+00:00</updated>
<author>
<name>Niko Mauno</name>
<email>niko.mauno@vaisala.com</email>
</author>
<published>2023-06-02T13:57:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=d9a96d0dd2c695beab0d3eb80eadc8339e86a3ec'/>
<id>urn:sha1:d9a96d0dd2c695beab0d3eb80eadc8339e86a3ec</id>
<content type='text'>
For instance on Debian based host OS 'python' is not provided by
default, which results is following error when trying to execute
oe-stylize.py script:

  /usr/bin/env: ‘python’: No such file or directory

Update the shebang to explicitly reference 'python3' instead of
'python', which should make the script better out-of-the-box
compatible with larger variety of host OSes on which Yocto based
development work takes place.

Signed-off-by: Niko Mauno &lt;niko.mauno@vaisala.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>contrib: oe-stylize: Fix ambiguous variable names</title>
<updated>2023-06-05T05:29:46+00:00</updated>
<author>
<name>Niko Mauno</name>
<email>niko.mauno@vaisala.com</email>
</author>
<published>2023-06-02T13:57:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=ef36ba48f75269520bd2b167ba117991b68a51ef'/>
<id>urn:sha1:ef36ba48f75269520bd2b167ba117991b68a51ef</id>
<content type='text'>
Fix pycodestyle warnings:

  oe-stylize.py:439:9: E741 ambiguous variable name 'l'
  oe-stylize.py:449:17: E741 ambiguous variable name 'l'

by switching iterator variables to non-ambiguous characters.

Signed-off-by: Niko Mauno &lt;niko.mauno@vaisala.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>pw-am.sh: update to new patcwork system</title>
<updated>2022-02-28T16:39:26+00:00</updated>
<author>
<name>Armin Kuster</name>
<email>akuster808@gmail.com</email>
</author>
<published>2022-02-26T14:01:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=8b8bfbcadf188cd5b234358590764e20d03d7861'/>
<id>urn:sha1:8b8bfbcadf188cd5b234358590764e20d03d7861</id>
<content type='text'>
Point to patchwork.yoctoproject.org

Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>contrib: fix python warnings for oe-stylize</title>
<updated>2021-12-22T02:49:37+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@codeconstruct.com.au</email>
</author>
<published>2021-12-17T02:59:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=60637824d8b4d4a319a4384e29eb0a1344ddc634'/>
<id>urn:sha1:60637824d8b4d4a319a4384e29eb0a1344ddc634</id>
<content type='text'>
I get a couple of python SyntaxWarnings when running oe-stylize:

  [jk@pecola meta-openembedded]$ python3 contrib/oe-stylize.py
  contrib/oe-stylize.py:372: SyntaxWarning: "is not" with a literal. Did you mean "!="?
    if line is not '':
  contrib/oe-stylize.py:389: SyntaxWarning: "is" with a literal. Did you mean "=="?
    if line.isspace() or line is '':

The 'is' operator is for object reference comparison, which is not what
we want here. Change to '==' / '!=' instead.

Signed-off-by: Jeremy Kerr &lt;jk@codeconstruct.com.au&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>contrib: allow override-style syntax for vars &amp; routines</title>
<updated>2021-12-22T02:49:37+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@codeconstruct.com.au</email>
</author>
<published>2021-12-17T02:59:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=022317805b09942790e664cef68e9a1d17838caf'/>
<id>urn:sha1:022317805b09942790e664cef68e9a1d17838caf</id>
<content type='text'>
Currently, the variable and routine regexes don't support the
override-style syntax. This means we may break routine blocks, as we
don't recognise overridden routines with an :append/:prepend/etc.

This change adds the ":" char to the var &amp; routine regexes.

Signed-off-by: Jeremy Kerr &lt;jk@codeconstruct.com.au&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>PEP8 double aggressive W291 ~ W293 and W391</title>
<updated>2021-04-15T16:28:44+00:00</updated>
<author>
<name>persianpros</name>
<email>persianpros@yahoo.com</email>
</author>
<published>2021-04-13T18:48:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=e0b9cd57fab747a84b5dddc52b7efd64afeff6f2'/>
<id>urn:sha1:e0b9cd57fab747a84b5dddc52b7efd64afeff6f2</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>PEP8 double aggressive E301 ~ E306</title>
<updated>2021-04-15T16:28:44+00:00</updated>
<author>
<name>persianpros</name>
<email>persianpros@yahoo.com</email>
</author>
<published>2021-04-13T18:48:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=af6838a62c53dab71941b2cc31f0e32387cd30e0'/>
<id>urn:sha1:af6838a62c53dab71941b2cc31f0e32387cd30e0</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>PEP8 double aggressive E22, E224, E241, E242 and E27</title>
<updated>2021-04-15T16:28:44+00:00</updated>
<author>
<name>persianpros</name>
<email>persianpros@yahoo.com</email>
</author>
<published>2021-04-13T18:48:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=144c107c42be19cedd58e5971b827c7ca91b7b53'/>
<id>urn:sha1:144c107c42be19cedd58e5971b827c7ca91b7b53</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>PEP8 double aggressive E20 and E211</title>
<updated>2021-04-15T16:28:44+00:00</updated>
<author>
<name>persianpros</name>
<email>persianpros@yahoo.com</email>
</author>
<published>2021-04-13T18:48:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=9c8810de37d10573c4220111a2694f73a2260106'/>
<id>urn:sha1:9c8810de37d10573c4220111a2694f73a2260106</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>PEP8 double aggressive E701, E70 and E502</title>
<updated>2021-04-15T16:28:43+00:00</updated>
<author>
<name>persianpros</name>
<email>persianpros@yahoo.com</email>
</author>
<published>2021-04-13T18:48:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=fa4f448fbedfe7b78c69821a0ef5da24002932cc'/>
<id>urn:sha1:fa4f448fbedfe7b78c69821a0ef5da24002932cc</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
</feed>
