[oe-commits] [bitbake] branch master-next updated (08f35c0 -> f6458af)

git at git.openembedded.org git at git.openembedded.org
Sat Jan 11 23:52:47 UTC 2020


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a change to branch master-next
in repository bitbake.

    from 08f35c0  knotty: Be consistent when creating/updating progress bars
     new f5daef6  runqueue: Use a set for the setscene tasks list
     new a7db5b9  runqueue: Possible tid handling optimisation
     new f2856ae  tests/fetch: Allow wget upgrade tests to run against a local server
     new ce162b6  bitbake: runqueue: Reorder task migration changes
     new cdb4cfb  bitbake: siggen: Optimise get_unihash handling [fixme commit msg]
     new 04b3a9e  bitbake: siggen: Cache unihash values to avoid cache lookup
     new f6458af  fix2

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lib/bb/runqueue.py                                 |   72 +-
 lib/bb/siggen.py                                   |   66 +-
 lib/bb/tests/fetch-testdata/apple/cups/releases    | 2400 ++++++++++++++++++++
 .../debian/pool/main/d/db5.3/index.html            |  509 +++++
 .../downloads/enchant/1.6.0/index.html             |   15 +
 lib/bb/tests/fetch-testdata/files/v2.8/index.html  |  774 +++++++
 lib/bb/tests/fetch-testdata/files/v3.0/index.html  |  209 ++
 lib/bb/tests/fetch-testdata/files/v3.1/index.html  |  156 ++
 lib/bb/tests/fetch-testdata/files/v3.10/index.html |  131 ++
 lib/bb/tests/fetch-testdata/files/v3.11/index.html |  131 ++
 lib/bb/tests/fetch-testdata/files/v3.12/index.html |  118 +
 lib/bb/tests/fetch-testdata/files/v3.13/index.html |  131 ++
 lib/bb/tests/fetch-testdata/files/v3.14/index.html |  170 ++
 lib/bb/tests/fetch-testdata/files/v3.15/index.html |  157 ++
 lib/bb/tests/fetch-testdata/files/v3.16/index.html |   86 +
 lib/bb/tests/fetch-testdata/files/v3.2/index.html  |  132 ++
 lib/bb/tests/fetch-testdata/files/v3.3/index.html  |  163 ++
 lib/bb/tests/fetch-testdata/files/v3.4/index.html  |  127 ++
 lib/bb/tests/fetch-testdata/files/v3.5/index.html  |  111 +
 lib/bb/tests/fetch-testdata/files/v3.6/index.html  |  159 ++
 lib/bb/tests/fetch-testdata/files/v3.7/index.html  |   92 +
 lib/bb/tests/fetch-testdata/files/v3.8/index.html  |  105 +
 lib/bb/tests/fetch-testdata/files/v3.9/index.html  |  183 ++
 .../pub/linux/utils/util-linux/v2.23/index.html    |   45 +
 .../pub/linux/utils/util-linux/v2.24/index.html    |   43 +
 .../pub/linux/utils/util-linux/v2.25/index.html    |   46 +
 .../pub/linux/utils/util-linux/v2.26/index.html    |   42 +
 .../pub/linux/utils/util-linux/v2.27/index.html    |   35 +
 .../pub/linux/utils/util-linux/v2.28/index.html    |   42 +
 .../pub/linux/utils/util-linux/v2.29/index.html    |   42 +
 .../pub/linux/utils/util-linux/v2.30/index.html    |   42 +
 .../pub/linux/utils/util-linux/v2.31/index.html    |   35 +
 .../pub/linux/utils/util-linux/v2.32/index.html    |   35 +
 .../pub/linux/utils/util-linux/v2.33/index.html    |   42 +
 .../pub/linux/utils/util-linux/v2.34/index.html    |   28 +
 .../pub/linux/utils/util-linux/v2.35/index.html    |   18 +
 .../fetch-testdata/releases/eglibc/index.html      |   21 +
 .../fetch-testdata/releases/gnu-config/index.html  |    9 +
 .../releases/individual/xserver/index.html         |  609 +++++
 .../software/pulseaudio/releases/index.html        |  383 ++++
 lib/bb/tests/fetch.py                              |   70 +-
 lib/bb/tests/support/httpserver.py                 |   65 +
 42 files changed, 7787 insertions(+), 62 deletions(-)
 create mode 100644 lib/bb/tests/fetch-testdata/apple/cups/releases
 create mode 100644 lib/bb/tests/fetch-testdata/debian/pool/main/d/db5.3/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/downloads/enchant/1.6.0/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v2.8/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.0/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.1/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.10/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.11/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.12/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.13/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.14/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.15/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.16/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.2/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.3/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.4/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.5/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.6/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.7/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.8/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/files/v3.9/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.23/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.24/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.25/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.26/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.27/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.28/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.29/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.30/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.31/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.32/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.33/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.34/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/pub/linux/utils/util-linux/v2.35/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/releases/eglibc/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/releases/gnu-config/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/releases/individual/xserver/index.html
 create mode 100644 lib/bb/tests/fetch-testdata/software/pulseaudio/releases/index.html
 create mode 100644 lib/bb/tests/support/httpserver.py

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list