public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Uladzimir Bely <ubely@ilbers.de>
To: isar-users@googlegroups.com
Subject: [PATCH 0/1] Update bitbake to version 1.50.4
Date: Tue,  1 Feb 2022 12:42:17 +0100	[thread overview]
Message-ID: <20220201114218.24817-1-ubely@ilbers.de> (raw)

Bitbake in Isar didn't get updates for almost 1.5 years. At the same time
the version we use have at least one annoying bug, when messages in log
files got duplicated if "--verbose" option is used and error happens.

This was fixed in upstream revision 69c622b744d9, few commits before the
tag 1.50.4.

Also, there is 1.52 branch exists (latest tag 1.52.1), but it seems to be
incompatible with Isar.

Uladzimir Bely (1):
  bitbake: Update to 1.50.4 release

 bitbake/.gitignore                            |    1 +
 bitbake/README                                |    2 +-
 bitbake/bin/bitbake                           |    2 +-
 bitbake/bin/bitbake-hashclient                |    3 -
 bitbake/bin/bitbake-hashserv                  |   10 +-
 bitbake/bin/bitbake-layers                    |    2 -
 bitbake/bin/bitbake-selftest                  |    2 +
 bitbake/bin/bitbake-server                    |   54 +
 bitbake/bin/bitbake-worker                    |   44 +-
 bitbake/bin/bitdoc                            |  519 ---
 bitbake/contrib/bbparse-torture.py            |   89 +
 bitbake/contrib/hashserv/Dockerfile           |   19 +
 bitbake/contrib/vim/LICENSE.txt               |   18 +
 bitbake/contrib/vim/ftdetect/bitbake.vim      |    4 +-
 bitbake/contrib/vim/ftplugin/bitbake.vim      |   15 +-
 bitbake/contrib/vim/plugin/newbb.vim          |   14 +-
 bitbake/contrib/vim/plugin/newbbappend.vim    |   46 +
 bitbake/contrib/vim/syntax/bitbake.vim        |   16 +-
 bitbake/doc/.gitignore                        |    1 +
 bitbake/doc/Makefile                          |  108 +-
 bitbake/doc/README                            |   50 +-
 bitbake/doc/_templates/breadcrumbs.html       |   14 +
 bitbake/doc/_templates/layout.html            |    7 +
 .../bitbake-user-manual-customization.xsl     |   29 -
 .../bitbake-user-manual-execution.rst         |  734 +++++
 .../bitbake-user-manual-execution.xml         | 1029 ------
 .../bitbake-user-manual-fetching.rst          |  689 ++++
 .../bitbake-user-manual-fetching.xml          |  868 -----
 .../bitbake-user-manual-hello.rst             |  415 +++
 .../bitbake-user-manual-hello.xml             |  513 ---
 .../bitbake-user-manual-intro.rst             |  651 ++++
 .../bitbake-user-manual-intro.xml             |  891 -----
 .../bitbake-user-manual-metadata.rst          | 1980 ++++++++++++
 .../bitbake-user-manual-metadata.xml          | 2862 -----------------
 .../bitbake-user-manual-ref-variables.rst     | 1405 ++++++++
 .../bitbake-user-manual-ref-variables.xml     | 2476 --------------
 .../bitbake-user-manual-style.css             |  984 ------
 .../bitbake-user-manual.xml                   |   88 -
 bitbake/doc/bitbake-user-manual/html.css      |  281 --
 bitbake/doc/conf.py                           |  101 +
 bitbake/doc/genindex.rst                      |    3 +
 bitbake/doc/index.rst                         |   38 +
 bitbake/doc/poky.ent                          |   51 -
 bitbake/doc/releases.rst                      |  130 +
 bitbake/doc/sphinx-static/switchers.js        |  233 ++
 bitbake/doc/sphinx-static/theme_overrides.css |  162 +
 bitbake/doc/template/Vera.xml                 |    1 -
 bitbake/doc/template/VeraMoBd.xml             |    1 -
 bitbake/doc/template/VeraMono.xml             |    1 -
 bitbake/doc/template/component.title.xsl      |   39 -
 bitbake/doc/template/db-pdf.xsl               |   64 -
 bitbake/doc/template/division.title.xsl       |   25 -
 bitbake/doc/template/fop-config.xml           |   58 -
 .../doc/template/formal.object.heading.xsl    |   21 -
 bitbake/doc/template/gloss-permalinks.xsl     |   14 -
 bitbake/doc/template/permalinks.xsl           |   25 -
 bitbake/doc/template/section.title.xsl        |   55 -
 bitbake/doc/template/titlepage.templates.xml  | 1259 --------
 bitbake/doc/tools/docbook-to-pdf              |   51 -
 bitbake/lib/bb/COW.py                         |  150 +-
 bitbake/lib/bb/__init__.py                    |   71 +-
 bitbake/lib/bb/build.py                       |  174 +-
 bitbake/lib/bb/cache.py                       |  249 +-
 bitbake/lib/bb/codeparser.py                  |    6 +-
 bitbake/lib/bb/command.py                     |   71 +-
 bitbake/lib/bb/compat.py                      |   10 -
 bitbake/lib/bb/cooker.py                      |  433 ++-
 bitbake/lib/bb/cookerdata.py                  |   74 +-
 bitbake/lib/bb/daemonize.py                   |    2 +
 bitbake/lib/bb/data.py                        |    6 +
 bitbake/lib/bb/data_smart.py                  |   20 +-
 bitbake/lib/bb/event.py                       |   61 +-
 bitbake/lib/bb/fetch2/__init__.py             |   99 +-
 bitbake/lib/bb/fetch2/az.py                   |   93 +
 bitbake/lib/bb/fetch2/bzr.py                  |    8 +-
 bitbake/lib/bb/fetch2/clearcase.py            |    2 +-
 bitbake/lib/bb/fetch2/cvs.py                  |   24 +-
 bitbake/lib/bb/fetch2/git.py                  |  106 +-
 bitbake/lib/bb/fetch2/gitsm.py                |   68 +-
 bitbake/lib/bb/fetch2/hg.py                   |   16 +-
 bitbake/lib/bb/fetch2/local.py                |   19 +-
 bitbake/lib/bb/fetch2/npmsw.py                |    4 +
 bitbake/lib/bb/fetch2/osc.py                  |    9 +-
 bitbake/lib/bb/fetch2/perforce.py             |   94 +-
 bitbake/lib/bb/fetch2/repo.py                 |    2 +-
 bitbake/lib/bb/fetch2/ssh.py                  |    7 +-
 bitbake/lib/bb/fetch2/svn.py                  |    8 +-
 bitbake/lib/bb/fetch2/wget.py                 |   32 +-
 bitbake/lib/bb/main.py                        |  355 +-
 bitbake/lib/bb/monitordisk.py                 |    4 +-
 bitbake/lib/bb/msg.py                         |    9 +-
 bitbake/lib/bb/namedtuple_with_abc.py         |   14 +-
 bitbake/lib/bb/parse/__init__.py              |    2 +-
 bitbake/lib/bb/parse/ast.py                   |   21 +-
 bitbake/lib/bb/parse/parse_py/BBHandler.py    |   15 +-
 bitbake/lib/bb/parse/parse_py/ConfHandler.py  |    4 +-
 bitbake/lib/bb/persist_data.py                |   10 +-
 bitbake/lib/bb/process.py                     |    7 +-
 bitbake/lib/bb/progress.py                    |   60 +-
 bitbake/lib/bb/providers.py                   |  108 +-
 bitbake/lib/bb/runqueue.py                    |  337 +-
 bitbake/lib/bb/server/process.py              |  273 +-
 bitbake/lib/bb/siggen.py                      |  125 +-
 bitbake/lib/bb/taskdata.py                    |   51 +-
 bitbake/lib/bb/tests/codeparser.py            |    4 +-
 bitbake/lib/bb/tests/color.py                 |   95 +
 bitbake/lib/bb/tests/cooker.py                |    2 +-
 bitbake/lib/bb/tests/cow.py                   |  218 +-
 bitbake/lib/bb/tests/data.py                  |    1 +
 bitbake/lib/bb/tests/event.py                 |   17 +-
 .../linux/utils/util-linux/v2.23/index.html   |   90 +-
 .../linux/utils/util-linux/v2.24/index.html   |   86 +-
 .../linux/utils/util-linux/v2.25/index.html   |   92 +-
 .../linux/utils/util-linux/v2.26/index.html   |   84 +-
 .../linux/utils/util-linux/v2.27/index.html   |   70 +-
 .../linux/utils/util-linux/v2.28/index.html   |   84 +-
 .../linux/utils/util-linux/v2.29/index.html   |   84 +-
 .../linux/utils/util-linux/v2.30/index.html   |   84 +-
 .../linux/utils/util-linux/v2.31/index.html   |   70 +-
 .../linux/utils/util-linux/v2.32/index.html   |   70 +-
 .../linux/utils/util-linux/v2.33/index.html   |   84 +-
 .../linux/utils/util-linux/v2.34/index.html   |   56 +-
 .../linux/utils/util-linux/v2.35/index.html   |   36 +-
 .../fetch-testdata/releases/eglibc/index.html |   42 +-
 .../releases/gnu-config/index.html            |   18 +-
 bitbake/lib/bb/tests/fetch.py                 |  237 +-
 bitbake/lib/bb/tests/parse.py                 |    6 +-
 .../bb/tests/runqueue-tests/conf/bitbake.conf |    3 +-
 .../runqueue-tests/conf/multiconfig/mc-1.conf |    2 +
 .../runqueue-tests/conf/multiconfig/mc1.conf  |    1 -
 .../runqueue-tests/conf/multiconfig/mc2.conf  |    1 -
 .../runqueue-tests/conf/multiconfig/mc_2.conf |    2 +
 .../lib/bb/tests/runqueue-tests/recipes/f1.bb |    1 +
 .../recipes/fails-mc/fails-mc1.bb             |    5 +
 .../recipes/fails-mc/fails-mc2.bb             |    4 +
 bitbake/lib/bb/tests/runqueue.py              |   59 +-
 bitbake/lib/bb/tests/siggen.py                |   91 +
 bitbake/lib/bb/tinfoil.py                     |   75 +-
 bitbake/lib/bb/ui/buildinfohelper.py          |   10 +-
 bitbake/lib/bb/ui/knotty.py                   |   27 +-
 bitbake/lib/bb/ui/ncurses.py                  |    2 +
 bitbake/lib/bb/ui/taskexp.py                  |    7 +-
 bitbake/lib/bb/ui/toasterui.py                |    6 +-
 bitbake/lib/bb/ui/uievent.py                  |    6 +-
 bitbake/lib/bb/ui/uihelper.py                 |    4 +-
 bitbake/lib/bb/utils.py                       |  118 +-
 bitbake/lib/bblayers/action.py                |   26 +-
 bitbake/lib/bblayers/layerindex.py            |    2 +-
 bitbake/lib/bblayers/query.py                 |   18 +-
 bitbake/lib/bs4/testing.py                    |    6 +-
 bitbake/lib/hashserv/__init__.py              |   52 +-
 bitbake/lib/hashserv/client.py                |  258 +-
 bitbake/lib/hashserv/server.py                |  232 +-
 bitbake/lib/hashserv/tests.py                 |  223 +-
 bitbake/lib/layerindexlib/__init__.py         |   61 +-
 bitbake/lib/layerindexlib/cooker.py           |   11 +-
 bitbake/lib/layerindexlib/restapi.py          |   38 +-
 bitbake/lib/layerindexlib/tests/cooker.py     |    4 +-
 bitbake/lib/layerindexlib/tests/restapi.py    |   20 +-
 bitbake/lib/ply/lex.py                        |    6 +-
 bitbake/lib/ply/yacc.py                       |    2 +-
 bitbake/lib/toaster/orm/fixtures/oe-core.xml  |   12 +-
 bitbake/lib/toaster/orm/fixtures/poky.xml     |   18 +-
 .../orm/management/commands/lsupdates.py      |    2 +-
 .../tests/functional/functional_helpers.py    |    8 +-
 .../toaster/toastergui/templates/base.html    |    2 +-
 .../toastergui/templates/configvars.html      |    2 +-
 .../toaster/toastergui/templates/landing.html |    8 +-
 .../templates/landing_not_managed.html        |    2 +-
 .../toaster/toastergui/templates/project.html |    2 +-
 .../templates/project_specific.html           |    2 +-
 .../toastergui/templates/projectconf.html     |    8 +-
 .../toastermain/management/commands/perf.py   |   68 +-
 173 files changed, 11143 insertions(+), 14584 deletions(-)
 create mode 100755 bitbake/bin/bitbake-server
 delete mode 100755 bitbake/bin/bitdoc
 create mode 100755 bitbake/contrib/bbparse-torture.py
 create mode 100644 bitbake/contrib/hashserv/Dockerfile
 create mode 100644 bitbake/contrib/vim/LICENSE.txt
 mode change 100755 => 100644 bitbake/contrib/vim/plugin/newbb.vim
 create mode 100644 bitbake/contrib/vim/plugin/newbbappend.vim
 create mode 100644 bitbake/doc/.gitignore
 create mode 100644 bitbake/doc/_templates/breadcrumbs.html
 create mode 100644 bitbake/doc/_templates/layout.html
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-customization.xsl
 create mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.rst
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-execution.xml
 create mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.xml
 create mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.xml
 create mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.rst
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-intro.xml
 create mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml
 create mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.xml
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual-style.css
 delete mode 100644 bitbake/doc/bitbake-user-manual/bitbake-user-manual.xml
 delete mode 100644 bitbake/doc/bitbake-user-manual/html.css
 create mode 100644 bitbake/doc/conf.py
 create mode 100644 bitbake/doc/genindex.rst
 create mode 100644 bitbake/doc/index.rst
 delete mode 100644 bitbake/doc/poky.ent
 create mode 100644 bitbake/doc/releases.rst
 create mode 100644 bitbake/doc/sphinx-static/switchers.js
 create mode 100644 bitbake/doc/sphinx-static/theme_overrides.css
 delete mode 100644 bitbake/doc/template/Vera.xml
 delete mode 100644 bitbake/doc/template/VeraMoBd.xml
 delete mode 100644 bitbake/doc/template/VeraMono.xml
 delete mode 100644 bitbake/doc/template/component.title.xsl
 delete mode 100644 bitbake/doc/template/db-pdf.xsl
 delete mode 100644 bitbake/doc/template/division.title.xsl
 delete mode 100644 bitbake/doc/template/fop-config.xml
 delete mode 100644 bitbake/doc/template/formal.object.heading.xsl
 delete mode 100644 bitbake/doc/template/gloss-permalinks.xsl
 delete mode 100644 bitbake/doc/template/permalinks.xsl
 delete mode 100644 bitbake/doc/template/section.title.xsl
 delete mode 100644 bitbake/doc/template/titlepage.templates.xml
 delete mode 100755 bitbake/doc/tools/docbook-to-pdf
 delete mode 100644 bitbake/lib/bb/compat.py
 create mode 100644 bitbake/lib/bb/fetch2/az.py
 create mode 100644 bitbake/lib/bb/tests/color.py
 create mode 100644 bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc-1.conf
 delete mode 100644 bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc1.conf
 delete mode 100644 bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc2.conf
 create mode 100644 bitbake/lib/bb/tests/runqueue-tests/conf/multiconfig/mc_2.conf
 create mode 100644 bitbake/lib/bb/tests/runqueue-tests/recipes/f1.bb
 create mode 100644 bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc1.bb
 create mode 100644 bitbake/lib/bb/tests/runqueue-tests/recipes/fails-mc/fails-mc2.bb
 create mode 100644 bitbake/lib/bb/tests/siggen.py

-- 
2.20.1


             reply	other threads:[~2022-02-01 11:42 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-01 11:42 Uladzimir Bely [this message]
2022-02-01 11:42 ` [PATCH 1/1] bitbake: Update to 1.50.4 release Uladzimir Bely
2022-02-02  6:25 ` [PATCH 0/1] Update bitbake to version 1.50.4 Schmidt, Adriaan
2022-02-02  6:52   ` Jan Kiszka
2022-03-28  8:44     ` Henning Schild
2022-03-25  6:31 ` Anton Mikanovich
2022-04-19 12:41   ` Bezdeka, Florian
2022-04-19 12:51     ` Henning Schild
2022-04-19 14:02       ` Bezdeka, Florian
2022-04-19 14:26         ` Baurzhan Ismagulov
2022-04-19 14:35         ` Henning Schild

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220201114218.24817-1-ubely@ilbers.de \
    --to=ubely@ilbers.de \
    --cc=isar-users@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox