* [bitbake][wrynose][2.18][PATCH 0/3] Patch review
@ 2026-05-08 7:13 Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 1/3] doc: Fix description of git shallow mirror tarball creation Yoann Congal
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Yoann Congal @ 2026-05-08 7:13 UTC (permalink / raw)
To: bitbake-devel
Please review this set of changes for wrynose/2.18 and have comments back by
end of day Monday, May 11.
Passed a-full on autobuilder with 3 AB-INT issues:
https://autobuilder.yoctoproject.org/valkyrie/#/builders/29/builds/3795
* qemuarm-tc: 15698 – AB-INT: runqemu.QemuTest.test_qemu_can_shutdown hangs with "Data received serial thread"
Retried in https://autobuilder.yoctoproject.org/valkyrie/#/builders/42/builds/3689
* qemuriscv64-ptest: https://autobuilder.yoctoproject.org/valkyrie/#/builders/56/builds/1562
This is a ptest failure in procps: 'pgrep_match_against_full_process_name'
This particular ptest later passed in https://autobuilder.yoctoproject.org/valkyrie/#/builders/56/builds/1564
(I have yet to properly report this one)
* qemuarmv5: 16217 – AB-INT: boot hang in qemu (amba chip errors?)
Retried in https://autobuilder.yoctoproject.org/valkyrie/#/builders/80/builds/3559
The following changes since commit a2dd9be788274d9c7280be5b1be5eb5c3990cf54:
fetch2/crate: use CDN endpoint for version checking if possible (2026-04-30 10:08:54 +0100)
are available in the Git repository at:
https://git.openembedded.org/bitbake-contrib stable/2.18-nut
https://git.openembedded.org/bitbake-contrib/log/?h=stable/2.18-nut
for you to fetch changes up to 87dcc2935137558ac236676ab7bcbc3cc4883c2c:
lib: Replace codegen with ast.unparse() (2026-05-05 17:36:57 +0200)
----------------------------------------------------------------
Alexander Kanavin (1):
fetch/wget: in upstream version checks, match versioned directories
exactly
Paul Barker (1):
doc: Fix description of git shallow mirror tarball creation
Richard Purdie (1):
lib: Replace codegen with ast.unparse()
.../bitbake-user-manual-ref-variables.rst | 5 +-
lib/bb/codeparser.py | 5 +-
lib/bb/fetch2/wget.py | 2 +-
lib/codegen.py | 564 ------------------
4 files changed, 6 insertions(+), 570 deletions(-)
delete mode 100644 lib/codegen.py
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bitbake][wrynose][2.18][PATCH 1/3] doc: Fix description of git shallow mirror tarball creation
2026-05-08 7:13 [bitbake][wrynose][2.18][PATCH 0/3] Patch review Yoann Congal
@ 2026-05-08 7:13 ` Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 2/3] fetch/wget: in upstream version checks, match versioned directories exactly Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 3/3] lib: Replace codegen with ast.unparse() Yoann Congal
2 siblings, 0 replies; 5+ messages in thread
From: Yoann Congal @ 2026-05-08 7:13 UTC (permalink / raw)
To: bitbake-devel
From: Paul Barker <paul@pbarker.dev>
The method used to create shallow tarballs was changed back in 2024, but
the associated documentation was not updated.
Fixes: a5a569c07522 ("fetch2/git: Use git shallow fetch to implement clone_shallow_local()")
Signed-off-by: Paul Barker <paul@pbarker.dev>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit a7acbfd454c1ce33e32e09a23d4573e06b44e835)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
---
.../bitbake-user-manual-ref-variables.rst | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst b/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
index 8d8e8b8b9..9824b58ef 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
@@ -349,8 +349,9 @@ overview of their function and contents.
:term:`BB_GIT_SHALLOW`
Setting this variable to "1" enables the support for fetching, using and
generating mirror tarballs of `shallow git repositories <https://riptutorial.com/git/example/4584/shallow-clone>`_.
- The external `git-make-shallow <https://git.openembedded.org/bitbake/tree/bin/git-make-shallow>`_
- script is used for shallow mirror tarball creation.
+ A git shallow fetch is used for shallow mirror tarball creation (i.e.
+ ``git fetch --depth <depth> ...`` or
+ ``git fetch --shallow-exclude=<revs> ...``.
When :term:`BB_GIT_SHALLOW` is enabled, bitbake will attempt to fetch a shallow
mirror tarball. If the shallow mirror tarball cannot be fetched, it will
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bitbake][wrynose][2.18][PATCH 2/3] fetch/wget: in upstream version checks, match versioned directories exactly
2026-05-08 7:13 [bitbake][wrynose][2.18][PATCH 0/3] Patch review Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 1/3] doc: Fix description of git shallow mirror tarball creation Yoann Congal
@ 2026-05-08 7:13 ` Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 3/3] lib: Replace codegen with ast.unparse() Yoann Congal
2 siblings, 0 replies; 5+ messages in thread
From: Yoann Congal @ 2026-05-08 7:13 UTC (permalink / raw)
To: bitbake-devel
From: Alexander Kanavin <alex@linutronix.de>
This change is in code that iterates over a html page, picking
out links to versioned subdirectories to check further for new versions.
Without the ^ and $ guards, there would be sub-string matches. This results in
querying the server multiple times for the same directory (for example,
perl check where the page contains multiple references to 5.0/something-unrelated)
or querying the server for directory that doesn't exist (nasm check, where
existence of 3.02rcX directories would result in querying the server for non-existing 3.02).
I have confirmed that the overall oe-core version check returns same results as before, with
less network churn and nasm version check working properly again.
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4af5f6a65a63bd92021d5eaa9d9ecc14f7397823)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
---
lib/bb/fetch2/wget.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/bb/fetch2/wget.py b/lib/bb/fetch2/wget.py
index ca4959ab5..6ac4306c0 100644
--- a/lib/bb/fetch2/wget.py
+++ b/lib/bb/fetch2/wget.py
@@ -539,7 +539,7 @@ class Wget(FetchMethod):
version_dir = ['', '', '']
version = ['', '', '']
- dirver_regex = re.compile(r"(?P<pfx>\D*)(?P<ver>(\d+[\.\-_])*(\d+))")
+ dirver_regex = re.compile(r"^(?P<pfx>\D*)(?P<ver>(\d+[\.\-_])*(\d+))$")
s = dirver_regex.search(dirver)
if s:
version_dir[1] = s.group('ver')
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bitbake][wrynose][2.18][PATCH 3/3] lib: Replace codegen with ast.unparse()
2026-05-08 7:13 [bitbake][wrynose][2.18][PATCH 0/3] Patch review Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 1/3] doc: Fix description of git shallow mirror tarball creation Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 2/3] fetch/wget: in upstream version checks, match versioned directories exactly Yoann Congal
@ 2026-05-08 7:13 ` Yoann Congal
2 siblings, 0 replies; 5+ messages in thread
From: Yoann Congal @ 2026-05-08 7:13 UTC (permalink / raw)
To: bitbake-devel
From: Richard Purdie <richard.purdie@linuxfoundation.org>
Since python 3.9, ast can generate code from an ast. We can therefore
drop codegen.py and use python's internal functionality for this.
[YOCTO #16229]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 76dd6d69c59c1686be2dfb3fc5b72c2a9df34871)
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
---
lib/bb/codeparser.py | 5 +-
lib/codegen.py | 564 -------------------------------------------
2 files changed, 2 insertions(+), 567 deletions(-)
delete mode 100644 lib/codegen.py
diff --git a/lib/bb/codeparser.py b/lib/bb/codeparser.py
index 4f70cf7fe..f906afab4 100644
--- a/lib/bb/codeparser.py
+++ b/lib/bb/codeparser.py
@@ -25,7 +25,6 @@ recipe caches don't trigger "Taskhash mismatch" errors.
import ast
import sys
-import codegen
import logging
import inspect
import bb.pysh as pysh
@@ -263,8 +262,8 @@ class PythonParser():
"""
try:
- funcstr = codegen.to_source(func)
- argstr = codegen.to_source(arg)
+ funcstr = ast.unparse(func)
+ argstr = ast.unparse(arg)
except TypeError:
self.log.debug2('Failed to convert function and argument to source form')
else:
diff --git a/lib/codegen.py b/lib/codegen.py
deleted file mode 100644
index 018b28317..000000000
--- a/lib/codegen.py
+++ /dev/null
@@ -1,564 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
- codegen
- ~~~~~~~
-
- Extension to ast that allow ast -> python code generation.
-
- :copyright: Copyright 2008 by Armin Ronacher.
- :license: BSD.
-"""
-from ast import *
-
-BOOLOP_SYMBOLS = {
- And: 'and',
- Or: 'or'
-}
-
-BINOP_SYMBOLS = {
- Add: '+',
- Sub: '-',
- Mult: '*',
- Div: '/',
- FloorDiv: '//',
- Mod: '%',
- LShift: '<<',
- RShift: '>>',
- BitOr: '|',
- BitAnd: '&',
- BitXor: '^'
-}
-
-CMPOP_SYMBOLS = {
- Eq: '==',
- Gt: '>',
- GtE: '>=',
- In: 'in',
- Is: 'is',
- IsNot: 'is not',
- Lt: '<',
- LtE: '<=',
- NotEq: '!=',
- NotIn: 'not in'
-}
-
-UNARYOP_SYMBOLS = {
- Invert: '~',
- Not: 'not',
- UAdd: '+',
- USub: '-'
-}
-
-ALL_SYMBOLS = {}
-ALL_SYMBOLS.update(BOOLOP_SYMBOLS)
-ALL_SYMBOLS.update(BINOP_SYMBOLS)
-ALL_SYMBOLS.update(CMPOP_SYMBOLS)
-ALL_SYMBOLS.update(UNARYOP_SYMBOLS)
-
-def to_source(node, indent_with=' ' * 4, add_line_information=False):
- """This function can convert a node tree back into python sourcecode.
- This is useful for debugging purposes, especially if you're dealing with
- custom asts not generated by python itself.
-
- It could be that the sourcecode is evaluable when the AST itself is not
- compilable / evaluable. The reason for this is that the AST contains some
- more data than regular sourcecode does, which is dropped during
- conversion.
-
- Each level of indentation is replaced with `indent_with`. Per default this
- parameter is equal to four spaces as suggested by PEP 8, but it might be
- adjusted to match the application's styleguide.
-
- If `add_line_information` is set to `True` comments for the line numbers
- of the nodes are added to the output. This can be used to spot wrong line
- number information of statement nodes.
- """
- generator = SourceGenerator(indent_with, add_line_information)
- generator.visit(node)
- return ''.join(generator.result)
-
-
-class SourceGenerator(NodeVisitor):
- """This visitor is able to transform a well formed syntax tree into python
- sourcecode. For more details have a look at the docstring of the
- `node_to_source` function.
- """
-
- def __init__(self, indent_with, add_line_information=False):
- self.result = []
- self.indent_with = indent_with
- self.add_line_information = add_line_information
- self.indentation = 0
- self.new_lines = 0
-
- def write(self, x):
- if self.new_lines:
- if self.result:
- self.result.append('\n' * self.new_lines)
- self.result.append(self.indent_with * self.indentation)
- self.new_lines = 0
- self.result.append(x)
-
- def newline(self, node=None, extra=0):
- self.new_lines = max(self.new_lines, 1 + extra)
- if node is not None and self.add_line_information:
- self.write('# line: %s' % node.lineno)
- self.new_lines = 1
-
- def body(self, statements):
- self.new_line = True
- self.indentation += 1
- for stmt in statements:
- self.visit(stmt)
- self.indentation -= 1
-
- def body_or_else(self, node):
- self.body(node.body)
- if node.orelse:
- self.newline()
- self.write('else:')
- self.body(node.orelse)
-
- def signature(self, node):
- want_comma = []
- def write_comma():
- if want_comma:
- self.write(', ')
- else:
- want_comma.append(True)
-
- padding = [None] * (len(node.args) - len(node.defaults))
- for arg, default in zip(node.args, padding + node.defaults):
- write_comma()
- self.visit(arg)
- if default is not None:
- self.write('=')
- self.visit(default)
- if node.vararg is not None:
- write_comma()
- self.write('*' + node.vararg)
- if node.kwarg is not None:
- write_comma()
- self.write('**' + node.kwarg)
-
- def decorators(self, node):
- for decorator in node.decorator_list:
- self.newline(decorator)
- self.write('@')
- self.visit(decorator)
-
- # Statements
-
- def visit_Assign(self, node):
- self.newline(node)
- for idx, target in enumerate(node.targets):
- if idx:
- self.write(', ')
- self.visit(target)
- self.write(' = ')
- self.visit(node.value)
-
- def visit_AugAssign(self, node):
- self.newline(node)
- self.visit(node.target)
- self.write(BINOP_SYMBOLS[type(node.op)] + '=')
- self.visit(node.value)
-
- def visit_ImportFrom(self, node):
- self.newline(node)
- self.write('from %s%s import ' % ('.' * node.level, node.module))
- for idx, item in enumerate(node.names):
- if idx:
- self.write(', ')
- self.write(item)
-
- def visit_Import(self, node):
- self.newline(node)
- for item in node.names:
- self.write('import ')
- self.visit(item)
-
- def visit_Expr(self, node):
- self.newline(node)
- self.generic_visit(node)
-
- def visit_FunctionDef(self, node):
- self.newline(extra=1)
- self.decorators(node)
- self.newline(node)
- self.write('def %s(' % node.name)
- self.signature(node.args)
- self.write('):')
- self.body(node.body)
-
- def visit_ClassDef(self, node):
- have_args = []
- def paren_or_comma():
- if have_args:
- self.write(', ')
- else:
- have_args.append(True)
- self.write('(')
-
- self.newline(extra=2)
- self.decorators(node)
- self.newline(node)
- self.write('class %s' % node.name)
- for base in node.bases:
- paren_or_comma()
- self.visit(base)
- # XXX: the if here is used to keep this module compatible
- # with python 2.6.
- if hasattr(node, 'keywords'):
- for keyword in node.keywords:
- paren_or_comma()
- self.write(keyword.arg + '=')
- self.visit(keyword.value)
- if hasattr(node, 'starargs') and node.starargs is not None:
- paren_or_comma()
- self.write('*')
- self.visit(node.starargs)
- if hasattr(node, 'kwargs') and node.kwargs is not None:
- paren_or_comma()
- self.write('**')
- self.visit(node.kwargs)
- self.write(have_args and '):' or ':')
- self.body(node.body)
-
- def visit_If(self, node):
- self.newline(node)
- self.write('if ')
- self.visit(node.test)
- self.write(':')
- self.body(node.body)
- while True:
- else_ = node.orelse
- if len(else_) == 1 and isinstance(else_[0], If):
- node = else_[0]
- self.newline()
- self.write('elif ')
- self.visit(node.test)
- self.write(':')
- self.body(node.body)
- else:
- self.newline()
- self.write('else:')
- self.body(else_)
- break
-
- def visit_For(self, node):
- self.newline(node)
- self.write('for ')
- self.visit(node.target)
- self.write(' in ')
- self.visit(node.iter)
- self.write(':')
- self.body_or_else(node)
-
- def visit_While(self, node):
- self.newline(node)
- self.write('while ')
- self.visit(node.test)
- self.write(':')
- self.body_or_else(node)
-
- def visit_With(self, node):
- self.newline(node)
- self.write('with ')
- self.visit(node.context_expr)
- if node.optional_vars is not None:
- self.write(' as ')
- self.visit(node.optional_vars)
- self.write(':')
- self.body(node.body)
-
- def visit_Pass(self, node):
- self.newline(node)
- self.write('pass')
-
- def visit_Print(self, node):
- # XXX: python 2.6 only
- self.newline(node)
- self.write('print ')
- want_comma = False
- if node.dest is not None:
- self.write(' >> ')
- self.visit(node.dest)
- want_comma = True
- for value in node.values:
- if want_comma:
- self.write(', ')
- self.visit(value)
- want_comma = True
- if not node.nl:
- self.write(',')
-
- def visit_Delete(self, node):
- self.newline(node)
- self.write('del ')
- for idx, target in enumerate(node):
- if idx:
- self.write(', ')
- self.visit(target)
-
- def visit_TryExcept(self, node):
- self.newline(node)
- self.write('try:')
- self.body(node.body)
- for handler in node.handlers:
- self.visit(handler)
-
- def visit_TryFinally(self, node):
- self.newline(node)
- self.write('try:')
- self.body(node.body)
- self.newline(node)
- self.write('finally:')
- self.body(node.finalbody)
-
- def visit_Global(self, node):
- self.newline(node)
- self.write('global ' + ', '.join(node.names))
-
- def visit_Nonlocal(self, node):
- self.newline(node)
- self.write('nonlocal ' + ', '.join(node.names))
-
- def visit_Return(self, node):
- self.newline(node)
- self.write('return ')
- self.visit(node.value)
-
- def visit_Break(self, node):
- self.newline(node)
- self.write('break')
-
- def visit_Continue(self, node):
- self.newline(node)
- self.write('continue')
-
- def visit_Raise(self, node):
- # XXX: Python 2.6 / 3.0 compatibility
- self.newline(node)
- self.write('raise')
- if hasattr(node, 'exc') and node.exc is not None:
- self.write(' ')
- self.visit(node.exc)
- if node.cause is not None:
- self.write(' from ')
- self.visit(node.cause)
- elif hasattr(node, 'type') and node.type is not None:
- self.visit(node.type)
- if node.inst is not None:
- self.write(', ')
- self.visit(node.inst)
- if node.tback is not None:
- self.write(', ')
- self.visit(node.tback)
-
- # Expressions
-
- def visit_Attribute(self, node):
- self.visit(node.value)
- self.write('.' + node.attr)
-
- def visit_Call(self, node):
- want_comma = []
- def write_comma():
- if want_comma:
- self.write(', ')
- else:
- want_comma.append(True)
-
- self.visit(node.func)
- self.write('(')
- for arg in node.args:
- write_comma()
- self.visit(arg)
- for keyword in node.keywords:
- write_comma()
- self.write(keyword.arg + '=')
- self.visit(keyword.value)
- if hasattr(node, 'starargs') and node.starargs is not None:
- write_comma()
- self.write('*')
- self.visit(node.starargs)
- if hasattr(node, 'kwargs') and node.kwargs is not None:
- write_comma()
- self.write('**')
- self.visit(node.kwargs)
- self.write(')')
-
- def visit_Name(self, node):
- self.write(node.id)
-
- def visit_Constant(self, node):
- self.write(repr(node.value))
-
- def visit_Tuple(self, node):
- self.write('(')
- idx = -1
- for idx, item in enumerate(node.elts):
- if idx:
- self.write(', ')
- self.visit(item)
- self.write(idx and ')' or ',)')
-
- def sequence_visit(left, right):
- def visit(self, node):
- self.write(left)
- for idx, item in enumerate(node.elts):
- if idx:
- self.write(', ')
- self.visit(item)
- self.write(right)
- return visit
-
- visit_List = sequence_visit('[', ']')
- visit_Set = sequence_visit('{', '}')
- del sequence_visit
-
- def visit_Dict(self, node):
- self.write('{')
- for idx, (key, value) in enumerate(zip(node.keys, node.values)):
- if idx:
- self.write(', ')
- self.visit(key)
- self.write(': ')
- self.visit(value)
- self.write('}')
-
- def visit_BinOp(self, node):
- self.visit(node.left)
- self.write(' %s ' % BINOP_SYMBOLS[type(node.op)])
- self.visit(node.right)
-
- def visit_BoolOp(self, node):
- self.write('(')
- for idx, value in enumerate(node.values):
- if idx:
- self.write(' %s ' % BOOLOP_SYMBOLS[type(node.op)])
- self.visit(value)
- self.write(')')
-
- def visit_Compare(self, node):
- self.write('(')
- self.write(node.left)
- for op, right in zip(node.ops, node.comparators):
- self.write(' %s %%' % CMPOP_SYMBOLS[type(op)])
- self.visit(right)
- self.write(')')
-
- def visit_UnaryOp(self, node):
- self.write('(')
- op = UNARYOP_SYMBOLS[type(node.op)]
- self.write(op)
- if op == 'not':
- self.write(' ')
- self.visit(node.operand)
- self.write(')')
-
- def visit_Subscript(self, node):
- self.visit(node.value)
- self.write('[')
- self.visit(node.slice)
- self.write(']')
-
- def visit_Slice(self, node):
- if node.lower is not None:
- self.visit(node.lower)
- self.write(':')
- if node.upper is not None:
- self.visit(node.upper)
- if node.step is not None:
- self.write(':')
- if not (isinstance(node.step, Name) and node.step.id == 'None'):
- self.visit(node.step)
-
- def visit_ExtSlice(self, node):
- for idx, item in node.dims:
- if idx:
- self.write(', ')
- self.visit(item)
-
- def visit_Yield(self, node):
- self.write('yield ')
- self.visit(node.value)
-
- def visit_Lambda(self, node):
- self.write('lambda ')
- self.signature(node.args)
- self.write(': ')
- self.visit(node.body)
-
- def visit_Ellipsis(self, node):
- self.write('Ellipsis')
-
- def generator_visit(left, right):
- def visit(self, node):
- self.write(left)
- self.visit(node.elt)
- for comprehension in node.generators:
- self.visit(comprehension)
- self.write(right)
- return visit
-
- visit_ListComp = generator_visit('[', ']')
- visit_GeneratorExp = generator_visit('(', ')')
- visit_SetComp = generator_visit('{', '}')
- del generator_visit
-
- def visit_DictComp(self, node):
- self.write('{')
- self.visit(node.key)
- self.write(': ')
- self.visit(node.value)
- for comprehension in node.generators:
- self.visit(comprehension)
- self.write('}')
-
- def visit_IfExp(self, node):
- self.visit(node.body)
- self.write(' if ')
- self.visit(node.test)
- self.write(' else ')
- self.visit(node.orelse)
-
- def visit_Starred(self, node):
- self.write('*')
- self.visit(node.value)
-
- def visit_Repr(self, node):
- # XXX: python 2.6 only
- self.write('`')
- self.visit(node.value)
- self.write('`')
-
- # Helper Nodes
-
- def visit_alias(self, node):
- self.write(node.name)
- if node.asname is not None:
- self.write(' as ' + node.asname)
-
- def visit_comprehension(self, node):
- self.write(' for ')
- self.visit(node.target)
- self.write(' in ')
- self.visit(node.iter)
- if node.ifs:
- for if_ in node.ifs:
- self.write(' if ')
- self.visit(if_)
-
- def visit_excepthandler(self, node):
- self.newline(node)
- self.write('except')
- if node.type is not None:
- self.write(' ')
- self.visit(node.type)
- if node.name is not None:
- self.write(' as ')
- self.visit(node.name)
- self.write(':')
- self.body(node.body)
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bitbake][wrynose][2.18][PATCH 0/3] Patch review
@ 2026-05-19 23:33 Yoann Congal
0 siblings, 0 replies; 5+ messages in thread
From: Yoann Congal @ 2026-05-19 23:33 UTC (permalink / raw)
To: bitbake-devel
Please review this set of changes for 2.18/wrynose and have comments back by
end of day Thursday, May 21.
Passed a-full on autobuilder with some AB-INT issues:
* https://autobuilder.yoctoproject.org/valkyrie/#/builders/29/builds/3846
* check-layer https://autobuilder.yoctoproject.org/valkyrie/#/builders/27/builds/3851
Failed due to 16285 – AB-INT: check-layer: unexplained changed signatures
retried as https://autobuilder.yoctoproject.org/valkyrie/#/builders/27/builds/3852
* qemux86-64-ptest https://autobuilder.yoctoproject.org/valkyrie/#/builders/73/builds/3688
Failed due to 16279 – AB-INT: groff error: couldn't exec preconv: No such file or directory
retried as https://autobuilder.yoctoproject.org/valkyrie/#/builders/73/builds/3689
* qemuriscv64-ptest https://autobuilder.yoctoproject.org/valkyrie/#/builders/56/builds/1610
Failed due to 16215 – AB-INT PTEST RISCV64: libpng ptest failure
Retried as https://autobuilder.yoctoproject.org/valkyrie/#/builders/56/builds/1611
* oe-selftest-debian https://autobuilder.yoctoproject.org/valkyrie/#/builders/35/builds/3878
retried as https://autobuilder.yoctoproject.org/valkyrie/#/builders/35/builds/3879
git.openembedded.org hung up a HTTP git clone connection
* oe-selftest-fedora https://autobuilder.yoctoproject.org/valkyrie/#/builders/48/builds/3740
retried as https://autobuilder.yoctoproject.org/valkyrie/#/builders/48/builds/3741
git.yoctoproject.org hung up a HTTP git clone connection
I attribute the last 2 to the current situation with bot scrappers.
A new build is running here:
https://autobuilder.yoctoproject.org/valkyrie/#/builders/29/builds/3847
The following changes since commit 0415a00658b59f66bdab22a3558794f238c42973:
fetch/git: Improve temporary directory handling (2026-05-13 17:50:24 +0100)
are available in the Git repository at:
https://git.openembedded.org/bitbake-contrib stable/2.18-nut
https://git.openembedded.org/bitbake-contrib/log/?h=stable/2.18-nut
for you to fetch changes up to 22021758e66737bcf68dfd2b74adc6a0cb1d42d9:
README: Add "2.18" subject-prefix to git-send-email suggestion (2026-05-19 11:08:15 +0200)
----------------------------------------------------------------
Alexander Kanavin (1):
fetch/wget: in upstream version checks, match versioned directories
exactly
Yoann Congal (2):
b4-config: add send-prefixes for 2.18/wrynose
README: Add "2.18" subject-prefix to git-send-email suggestion
.b4-config | 1 +
README | 4 ++--
lib/bb/fetch2/wget.py | 2 +-
3 files changed, 4 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-05-19 23:34 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-08 7:13 [bitbake][wrynose][2.18][PATCH 0/3] Patch review Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 1/3] doc: Fix description of git shallow mirror tarball creation Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 2/3] fetch/wget: in upstream version checks, match versioned directories exactly Yoann Congal
2026-05-08 7:13 ` [bitbake][wrynose][2.18][PATCH 3/3] lib: Replace codegen with ast.unparse() Yoann Congal
-- strict thread matches above, loose matches on Subject: below --
2026-05-19 23:33 [bitbake][wrynose][2.18][PATCH 0/3] Patch review Yoann Congal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox